Dashboard › cli › Distillation
62f8b81d-f1f8-4bbf-81f8-486e0b964267["lore_tm_v1_XA4oJwXfGRC2r24QwxypZg06bIjPYNtH1yHIiISlE_E","lore_tm_v1_pmhm7xCAncTUWkSYUBOOjyvj6b6HeeXM0t14AsUdlJs"]
@stricli/core@1.2.8 runtime function generateCommandHelpLines() in node_modules/.pnpm/@stricli+core@1.2.8_patch_hash=892258f886d48063b409e0ac6141260023c396d1ed4f915231701f6a34edffcc/node_modules/@stricli/core/dist/index.js:2000-2044 renders command help in this order: Usage header; each customUsage entry or the generated parameter usage; built-in flag usage lines; fullDescription ?? brief; optional Aliases section; Flags section; and, when present, Arguments section.generateCommandHelpLines(), string customUsage entries render as ${prefix} ${usage}; object entries render ${usage.input} followed by italicized usage.brief; when customUsage is absent, it falls back to formatUsageLineForParameters(parameters, args).buildCommand() in the patched Stricli runtime at dist/index.js:2093-2129 rejects reserved flags help, helpAll, and help-all, rejects reserved alias h, checks boolean-negation name collisions and invalid variadic separators, supports either direct func or lazy loader, exposes brief and fullDescription getters, and implements formatHelp() by joining generateCommandHelpLines() with newlines plus a final trailing newline.checkForInvalidVariadicSeparators() rejects an empty variadic separator and any separator containing whitespace; checkForNegationCollisions() checks both kebab-style no-${convertCamelCaseToKebabCase(flagName)} and camel-style no${CapitalizedFlagName} generated negation names.generateRouteMapHelpLines() begins at patched Stricli dist/index.js:2133; it reads route-map brief, fullDescription, and hideRoute, omits hidden routes unless args.includeHidden is true, and converts route names from camel case to kebab case when args.config.caseStyle === "convert-camel-to-kebab".Examples:, formatHelpHuman, or fullDescription: packages/cli/test/script/generate-skill-markdown.test.ts:57 contains "**Examples:**"; packages/cli/test/commands/help.test.ts:227-257 contains the formatHelpHuman with suggestions suite and four dynamic imports/calls; and packages/cli/test/lib/introspect.test.ts:212,234 defines and asserts fullDescription: "List all the things.".