skills-atlas-cli 0.10.0 → 0.11.1
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 +3 -1
- package/data.json +2462 -129
- package/package.json +1 -1
- package/src/commands/craft.js +53 -0
- package/src/commands/gap-analyze.js +32 -4
- package/src/commands/gaps.js +26 -10
- package/src/commands/suggest.js +11 -3
- package/src/craft-prompts.js +147 -0
- package/src/gapstate.js +25 -1
package/bin/skills.js
CHANGED
|
@@ -16,6 +16,7 @@ const suggest = require('../src/commands/suggest');
|
|
|
16
16
|
const hook = require('../src/commands/hook');
|
|
17
17
|
const gaps = require('../src/commands/gaps');
|
|
18
18
|
const gapAnalyze = require('../src/commands/gap-analyze');
|
|
19
|
+
const craft = require('../src/commands/craft');
|
|
19
20
|
const prune = require('../src/commands/prune');
|
|
20
21
|
const feedback = require('../src/commands/feedback');
|
|
21
22
|
const update = require('../src/commands/update');
|
|
@@ -25,7 +26,7 @@ const { categories, list } = require('../src/commands/categories');
|
|
|
25
26
|
const VERSION = require('../package.json').version;
|
|
26
27
|
// `use` = install + activate inline (emit the SKILL.md so an agent follows it now).
|
|
27
28
|
const use = argv => install([...argv, '--inline']);
|
|
28
|
-
const commands = { search, info, install, use, kit, sync, installed, upgrade, remove, outdated, doctor, suggest, hook, gaps, 'gap-analyze': gapAnalyze, prune, feedback, update, categories, list, registry, mcp };
|
|
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 };
|
|
29
30
|
|
|
30
31
|
const HELP = `skills-atlas — search, install & manage AI agent skills
|
|
31
32
|
|
|
@@ -49,6 +50,7 @@ manage what you've installed:
|
|
|
49
50
|
autopilot (opt-in):
|
|
50
51
|
hook on|off|status proactively suggest a skill in Claude when your prompt fits one
|
|
51
52
|
gaps kinds of work you keep doing without a skill (run: skills-atlas hook on)
|
|
53
|
+
craft codify a workflow you keep repeating into a new local skill (Claude drafts it)
|
|
52
54
|
prune installed skills you no longer use — Claude suggests removing them
|
|
53
55
|
feedback what the autopilot learned from your installs/removes (sharpens it)
|
|
54
56
|
|