skills-atlas-cli 0.11.1 → 0.13.0

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.
package/bin/skills.js CHANGED
@@ -18,6 +18,7 @@ const gaps = require('../src/commands/gaps');
18
18
  const gapAnalyze = require('../src/commands/gap-analyze');
19
19
  const craft = require('../src/commands/craft');
20
20
  const prune = require('../src/commands/prune');
21
+ const setup = require('../src/commands/setup');
21
22
  const feedback = require('../src/commands/feedback');
22
23
  const update = require('../src/commands/update');
23
24
  const mcp = require('../src/commands/mcp');
@@ -26,7 +27,7 @@ const { categories, list } = require('../src/commands/categories');
26
27
  const VERSION = require('../package.json').version;
27
28
  // `use` = install + activate inline (emit the SKILL.md so an agent follows it now).
28
29
  const use = argv => install([...argv, '--inline']);
29
- const commands = { search, info, install, use, kit, sync, installed, upgrade, remove, outdated, doctor, suggest, hook, gaps, 'gap-analyze': gapAnalyze, craft, prune, feedback, update, categories, list, registry, mcp };
30
+ const commands = { search, info, install, use, kit, sync, installed, upgrade, remove, outdated, doctor, suggest, hook, gaps, 'gap-analyze': gapAnalyze, craft, prune, feedback, setup, update, categories, list, registry, mcp };
30
31
 
31
32
  const HELP = `skills-atlas — search, install & manage AI agent skills
32
33
 
@@ -47,6 +48,9 @@ manage what you've installed:
47
48
  kit set up the right skills for THIS project (detect + install)
48
49
  sync reproduce a project's kit from skills-atlas.kit.json
49
50
 
51
+ getting started:
52
+ setup what you've got + how to use it (run after installing the plugin)
53
+
50
54
  autopilot (opt-in):
51
55
  hook on|off|status proactively suggest a skill in Claude when your prompt fits one
52
56
  gaps kinds of work you keep doing without a skill (run: skills-atlas hook on)
@@ -80,7 +84,7 @@ async function main() {
80
84
  }
81
85
  // Opportunistic, non-blocking background catalog refresh so new skills appear over
82
86
  // time without a manual `update`. Skipped for `update` itself; fully fail-silent.
83
- if (sub !== 'update' && sub !== 'gap-analyze' && !process.env.SKILLS_ATLAS_SUBCALL) {
87
+ if (sub !== 'update' && sub !== 'gap-analyze' && sub !== 'setup' && !process.env.SKILLS_ATLAS_SUBCALL) {
84
88
  try { require('../src/data').maybeBackgroundRefresh(); } catch { /* ignore */ }
85
89
  }
86
90
  await cmd(rest);