@crouton-kit/crouter 0.2.4 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -81,11 +81,11 @@ export function registerSkillCommands(program) {
81
81
  .command('skill [nameOrVerb] [rest...]')
82
82
  .description('manage and inspect skills')
83
83
  .option('--frontmatter', 'include YAML frontmatter in the printed body')
84
- .addHelpText('after', '\nRun `crtr skill` (no args) for intent-based routing and SKILL.md format reference.\n\n' +
85
- SKILL_IDENTIFIER_HELP)
84
+ .addHelpText('before', '\n' + skillPrompt() + '\n')
85
+ .addHelpText('after', '\n' + SKILL_IDENTIFIER_HELP)
86
86
  .action(async (nameOrVerb, _rest, opts) => {
87
87
  if (nameOrVerb === undefined) {
88
- out(skillPrompt());
88
+ skill.help();
89
89
  return;
90
90
  }
91
91
  if (!KNOWN_VERBS.has(nameOrVerb)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crouton-kit/crouter",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "crtr — fast access to skills, plugins, and marketplaces",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",