awesome-slash 4.1.1 → 4.2.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.
Files changed (195) hide show
  1. package/.claude-plugin/marketplace.json +20 -13
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/AGENTS.md +41 -6
  4. package/CHANGELOG.md +66 -1462
  5. package/README.md +63 -7
  6. package/adapters/codex/skills/agnix/SKILL.md +138 -0
  7. package/adapters/codex/skills/audit-project/SKILL.md +334 -0
  8. package/adapters/codex/skills/audit-project-agents/SKILL.md +459 -0
  9. package/adapters/codex/skills/audit-project-github/SKILL.md +146 -0
  10. package/adapters/codex/skills/consult/SKILL.md +245 -0
  11. package/adapters/codex/skills/delivery-approval/SKILL.md +339 -0
  12. package/adapters/codex/skills/deslop/SKILL.md +167 -0
  13. package/adapters/codex/skills/drift-detect/SKILL.md +268 -0
  14. package/adapters/codex/skills/enhance/SKILL.md +177 -0
  15. package/adapters/codex/skills/learn/SKILL.md +188 -0
  16. package/adapters/codex/skills/next-task/SKILL.md +546 -0
  17. package/adapters/codex/skills/perf/SKILL.md +469 -0
  18. package/adapters/codex/skills/repo-map/SKILL.md +132 -0
  19. package/adapters/codex/skills/ship/SKILL.md +491 -0
  20. package/adapters/codex/skills/ship-ci-review-loop/SKILL.md +473 -0
  21. package/adapters/codex/skills/ship-deployment/SKILL.md +336 -0
  22. package/adapters/codex/skills/ship-error-handling/SKILL.md +260 -0
  23. package/adapters/codex/skills/sync-docs/SKILL.md +186 -0
  24. package/adapters/opencode/agents/agent-enhancer.md +65 -0
  25. package/adapters/opencode/agents/agnix-agent.md +56 -0
  26. package/adapters/opencode/agents/ci-fixer.md +104 -0
  27. package/adapters/opencode/agents/ci-monitor.md +127 -0
  28. package/adapters/opencode/agents/claudemd-enhancer.md +66 -0
  29. package/adapters/opencode/agents/consult-agent.md +124 -0
  30. package/adapters/opencode/agents/cross-file-enhancer.md +54 -0
  31. package/adapters/opencode/agents/delivery-validator.md +115 -0
  32. package/adapters/opencode/agents/deslop-agent.md +88 -0
  33. package/adapters/opencode/agents/docs-enhancer.md +65 -0
  34. package/adapters/opencode/agents/exploration-agent.md +143 -0
  35. package/adapters/opencode/agents/hooks-enhancer.md +66 -0
  36. package/adapters/opencode/agents/implementation-agent.md +206 -0
  37. package/adapters/opencode/agents/learn-agent.md +279 -0
  38. package/adapters/opencode/agents/map-validator.md +65 -0
  39. package/adapters/opencode/agents/perf-analyzer.md +40 -0
  40. package/adapters/opencode/agents/perf-code-paths.md +12 -0
  41. package/adapters/opencode/agents/perf-investigation-logger.md +44 -0
  42. package/adapters/opencode/agents/perf-orchestrator.md +147 -0
  43. package/adapters/opencode/agents/perf-theory-gatherer.md +18 -0
  44. package/adapters/opencode/agents/perf-theory-tester.md +43 -0
  45. package/adapters/opencode/agents/plan-synthesizer.md +229 -0
  46. package/adapters/opencode/agents/planning-agent.md +235 -0
  47. package/adapters/opencode/agents/plugin-enhancer.md +64 -0
  48. package/adapters/opencode/agents/prompt-enhancer.md +58 -0
  49. package/adapters/opencode/agents/simple-fixer.md +107 -0
  50. package/adapters/opencode/agents/skills-enhancer.md +66 -0
  51. package/adapters/opencode/agents/sync-docs-agent.md +153 -0
  52. package/adapters/opencode/agents/task-discoverer.md +80 -0
  53. package/adapters/opencode/agents/test-coverage-checker.md +144 -0
  54. package/adapters/opencode/agents/worktree-manager.md +209 -0
  55. package/adapters/opencode/commands/agnix.md +106 -0
  56. package/adapters/opencode/commands/audit-project-agents.md +114 -0
  57. package/adapters/opencode/commands/audit-project-github.md +145 -0
  58. package/adapters/opencode/commands/audit-project.md +268 -0
  59. package/adapters/opencode/commands/consult.md +252 -0
  60. package/adapters/opencode/commands/delivery-approval.md +212 -0
  61. package/adapters/opencode/commands/deslop.md +132 -0
  62. package/adapters/opencode/commands/drift-detect.md +173 -0
  63. package/adapters/opencode/commands/enhance.md +183 -0
  64. package/adapters/opencode/commands/learn.md +116 -0
  65. package/adapters/opencode/commands/next-task.md +393 -0
  66. package/adapters/opencode/commands/perf.md +49 -0
  67. package/adapters/opencode/commands/repo-map.md +69 -0
  68. package/adapters/opencode/commands/ship-ci-review-loop.md +314 -0
  69. package/adapters/opencode/commands/ship-deployment.md +331 -0
  70. package/adapters/opencode/commands/ship-error-handling.md +248 -0
  71. package/adapters/opencode/commands/ship.md +371 -0
  72. package/adapters/opencode/commands/sync-docs.md +108 -0
  73. package/adapters/opencode/skills/agnix/SKILL.md +139 -0
  74. package/adapters/opencode/skills/consult/SKILL.md +292 -0
  75. package/adapters/opencode/skills/deslop/SKILL.md +169 -0
  76. package/adapters/opencode/skills/discover-tasks/SKILL.md +102 -0
  77. package/adapters/opencode/skills/drift-analysis/SKILL.md +279 -0
  78. package/adapters/opencode/skills/enhance-agent-prompts/SKILL.md +279 -0
  79. package/adapters/opencode/skills/enhance-claude-memory/SKILL.md +390 -0
  80. package/adapters/opencode/skills/enhance-cross-file/SKILL.md +112 -0
  81. package/adapters/opencode/skills/enhance-docs/SKILL.md +288 -0
  82. package/adapters/opencode/skills/enhance-hooks/SKILL.md +557 -0
  83. package/adapters/opencode/skills/enhance-orchestrator/SKILL.md +114 -0
  84. package/adapters/opencode/skills/enhance-plugins/SKILL.md +314 -0
  85. package/adapters/opencode/skills/enhance-prompts/SKILL.md +341 -0
  86. package/adapters/opencode/skills/enhance-skills/SKILL.md +443 -0
  87. package/adapters/opencode/skills/learn/SKILL.md +352 -0
  88. package/adapters/opencode/skills/orchestrate-review/SKILL.md +95 -0
  89. package/adapters/opencode/skills/perf-analyzer/SKILL.md +38 -0
  90. package/adapters/opencode/skills/perf-baseline-manager/SKILL.md +31 -0
  91. package/adapters/opencode/skills/perf-benchmarker/SKILL.md +49 -0
  92. package/adapters/opencode/skills/perf-code-paths/SKILL.md +33 -0
  93. package/adapters/opencode/skills/perf-investigation-logger/SKILL.md +42 -0
  94. package/adapters/opencode/skills/perf-profiler/SKILL.md +39 -0
  95. package/adapters/opencode/skills/perf-theory-gatherer/SKILL.md +36 -0
  96. package/adapters/opencode/skills/perf-theory-tester/SKILL.md +37 -0
  97. package/adapters/opencode/skills/repo-mapping/SKILL.md +86 -0
  98. package/adapters/opencode/skills/sync-docs/SKILL.md +246 -0
  99. package/adapters/opencode/skills/validate-delivery/SKILL.md +112 -0
  100. package/adapters/opencode-plugin/index.ts +64 -0
  101. package/agent-knowledge/AGENTS.md +62 -0
  102. package/agent-knowledge/ai-cli-advanced-integration-patterns.md +670 -0
  103. package/agent-knowledge/ai-cli-non-interactive-programmatic-usage.md +1394 -0
  104. package/agent-knowledge/resources/ai-cli-non-interactive-programmatic-usage-sources.json +500 -0
  105. package/bin/cli.js +13 -276
  106. package/bin/dev-cli.js +113 -22
  107. package/lib/adapter-transforms.js +278 -0
  108. package/lib/discovery/index.js +55 -9
  109. package/lib/package.json +28 -0
  110. package/package.json +20 -3
  111. package/plugins/agnix/.claude-plugin/plugin.json +1 -1
  112. package/plugins/agnix/skills/agnix/SKILL.md +1 -1
  113. package/plugins/audit-project/.claude-plugin/plugin.json +1 -1
  114. package/plugins/audit-project/commands/audit-project-github.md +4 -0
  115. package/plugins/audit-project/lib/adapter-transforms.js +278 -0
  116. package/plugins/audit-project/lib/discovery/index.js +55 -9
  117. package/plugins/consult/.claude-plugin/plugin.json +24 -0
  118. package/plugins/consult/agents/consult-agent.md +129 -0
  119. package/plugins/consult/commands/consult.md +248 -0
  120. package/plugins/consult/skills/consult/SKILL.md +285 -0
  121. package/plugins/deslop/.claude-plugin/plugin.json +1 -1
  122. package/plugins/deslop/commands/deslop.md +1 -2
  123. package/plugins/deslop/lib/adapter-transforms.js +278 -0
  124. package/plugins/deslop/lib/discovery/index.js +55 -9
  125. package/plugins/deslop/skills/deslop/SKILL.md +2 -2
  126. package/plugins/drift-detect/.claude-plugin/plugin.json +1 -1
  127. package/plugins/drift-detect/commands/drift-detect.md +7 -7
  128. package/plugins/drift-detect/lib/adapter-transforms.js +278 -0
  129. package/plugins/drift-detect/lib/discovery/index.js +55 -9
  130. package/plugins/drift-detect/skills/drift-analysis/SKILL.md +2 -2
  131. package/plugins/enhance/.claude-plugin/plugin.json +1 -1
  132. package/plugins/enhance/agents/agent-enhancer.md +6 -0
  133. package/plugins/enhance/agents/claudemd-enhancer.md +8 -1
  134. package/plugins/enhance/agents/docs-enhancer.md +4 -0
  135. package/plugins/enhance/agents/hooks-enhancer.md +6 -0
  136. package/plugins/enhance/agents/plugin-enhancer.md +15 -9
  137. package/plugins/enhance/agents/skills-enhancer.md +7 -1
  138. package/plugins/enhance/lib/adapter-transforms.js +278 -0
  139. package/plugins/enhance/lib/discovery/index.js +55 -9
  140. package/plugins/enhance/skills/enhance-agent-prompts/SKILL.md +1 -1
  141. package/plugins/enhance/skills/enhance-claude-memory/SKILL.md +1 -1
  142. package/plugins/enhance/skills/enhance-cross-file/SKILL.md +1 -1
  143. package/plugins/enhance/skills/enhance-docs/SKILL.md +1 -1
  144. package/plugins/enhance/skills/enhance-hooks/SKILL.md +1 -1
  145. package/plugins/enhance/skills/enhance-orchestrator/SKILL.md +1 -1
  146. package/plugins/enhance/skills/enhance-plugins/SKILL.md +1 -1
  147. package/plugins/enhance/skills/enhance-prompts/SKILL.md +1 -1
  148. package/plugins/enhance/skills/enhance-skills/SKILL.md +2 -2
  149. package/plugins/learn/.claude-plugin/plugin.json +1 -1
  150. package/plugins/learn/lib/adapter-transforms.js +278 -0
  151. package/plugins/learn/lib/discovery/index.js +55 -9
  152. package/plugins/learn/skills/learn/SKILL.md +1 -1
  153. package/plugins/next-task/.claude-plugin/plugin.json +1 -1
  154. package/plugins/next-task/lib/adapter-transforms.js +278 -0
  155. package/plugins/next-task/lib/discovery/index.js +55 -9
  156. package/plugins/next-task/skills/discover-tasks/SKILL.md +1 -1
  157. package/plugins/next-task/skills/validate-delivery/SKILL.md +1 -1
  158. package/plugins/perf/.claude-plugin/plugin.json +1 -1
  159. package/plugins/perf/lib/adapter-transforms.js +278 -0
  160. package/plugins/perf/lib/discovery/index.js +55 -9
  161. package/plugins/perf/skills/perf-analyzer/SKILL.md +1 -1
  162. package/plugins/perf/skills/perf-baseline-manager/SKILL.md +1 -1
  163. package/plugins/perf/skills/perf-benchmarker/SKILL.md +1 -1
  164. package/plugins/perf/skills/perf-code-paths/SKILL.md +1 -1
  165. package/plugins/perf/skills/perf-investigation-logger/SKILL.md +1 -1
  166. package/plugins/perf/skills/perf-profiler/SKILL.md +1 -1
  167. package/plugins/perf/skills/perf-theory-gatherer/SKILL.md +1 -1
  168. package/plugins/perf/skills/perf-theory-tester/SKILL.md +1 -1
  169. package/plugins/repo-map/.claude-plugin/plugin.json +1 -1
  170. package/plugins/repo-map/lib/adapter-transforms.js +278 -0
  171. package/plugins/repo-map/lib/discovery/index.js +55 -9
  172. package/plugins/ship/.claude-plugin/plugin.json +1 -1
  173. package/plugins/ship/commands/ship-error-handling.md +4 -0
  174. package/plugins/ship/lib/adapter-transforms.js +278 -0
  175. package/plugins/ship/lib/discovery/index.js +55 -9
  176. package/plugins/sync-docs/.claude-plugin/plugin.json +1 -1
  177. package/plugins/sync-docs/lib/adapter-transforms.js +278 -0
  178. package/plugins/sync-docs/lib/discovery/index.js +55 -9
  179. package/plugins/sync-docs/skills/sync-docs/SKILL.md +1 -1
  180. package/scripts/bump-version.js +23 -60
  181. package/scripts/dev-install.js +11 -113
  182. package/scripts/expand-templates.js +269 -0
  183. package/scripts/gen-adapters.js +313 -0
  184. package/scripts/generate-docs.js +558 -0
  185. package/scripts/plugins.txt +1 -0
  186. package/scripts/preflight.js +1264 -0
  187. package/scripts/scaffold.js +490 -0
  188. package/scripts/setup-hooks.js +32 -64
  189. package/scripts/stamp-version.js +180 -0
  190. package/scripts/validate-counts.js +1 -1
  191. package/scripts/validate-cross-platform-docs.js +4 -1
  192. package/site/content.json +194 -39
  193. package/templates/agent-snippets/enhance-integration-points.md +6 -0
  194. package/templates/agent-snippets/enhance-skill-delegation.md +18 -0
  195. package/templates/agent-snippets/model-choice.md +6 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "awesome-slash",
3
- "description": "11 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, repo mapping, perf investigations, topic research, and agent config linting",
4
- "version": "4.1.1",
3
+ "description": "12 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, repo mapping, perf investigations, topic research, agent config linting, and cross-tool AI consultation",
4
+ "version": "4.2.0",
5
5
  "owner": {
6
6
  "name": "Avi Fenesh",
7
7
  "url": "https://github.com/avifenesh"
@@ -26,78 +26,85 @@
26
26
  "name": "next-task",
27
27
  "source": "./plugins/next-task",
28
28
  "description": "Master workflow orchestrator: autonomous workflow with model optimization (opus/sonnet/haiku), two-file state management, workflow enforcement gates, 14 specialist agents",
29
- "version": "4.1.1",
29
+ "version": "4.2.0",
30
30
  "category": "productivity"
31
31
  },
32
32
  {
33
33
  "name": "ship",
34
34
  "source": "./plugins/ship",
35
35
  "description": "Complete PR workflow: commit to production, skips review when called from next-task, removes task from registry on cleanup, automatic rollback",
36
- "version": "4.1.1",
36
+ "version": "4.2.0",
37
37
  "category": "deployment"
38
38
  },
39
39
  {
40
40
  "name": "deslop",
41
41
  "source": "./plugins/deslop",
42
42
  "description": "3-phase AI slop detection: regex patterns (HIGH), multi-pass analyzers (MEDIUM), CLI tools (LOW)",
43
- "version": "4.1.1",
43
+ "version": "4.2.0",
44
44
  "category": "development"
45
45
  },
46
46
  {
47
47
  "name": "audit-project",
48
48
  "source": "./plugins/audit-project",
49
49
  "description": "Multi-agent iterative code review until zero issues remain",
50
- "version": "4.1.1",
50
+ "version": "4.2.0",
51
51
  "category": "development"
52
52
  },
53
53
  {
54
54
  "name": "drift-detect",
55
55
  "source": "./plugins/drift-detect",
56
56
  "description": "Deep repository analysis to realign project plans with code reality - detects drift, gaps, and creates prioritized reconstruction plans",
57
- "version": "4.1.1",
57
+ "version": "4.2.0",
58
58
  "category": "productivity"
59
59
  },
60
60
  {
61
61
  "name": "enhance",
62
62
  "source": "./plugins/enhance",
63
63
  "description": "Master enhancement orchestrator: parallel analyzer execution for plugins, agents, docs, CLAUDE.md, and prompts with unified reporting",
64
- "version": "4.1.1",
64
+ "version": "4.2.0",
65
65
  "category": "development"
66
66
  },
67
67
  {
68
68
  "name": "sync-docs",
69
69
  "source": "./plugins/sync-docs",
70
70
  "description": "Standalone documentation sync: find outdated refs, update CHANGELOG, flag stale examples based on code changes",
71
- "version": "4.1.1",
71
+ "version": "4.2.0",
72
72
  "category": "development"
73
73
  },
74
74
  {
75
75
  "name": "repo-map",
76
76
  "source": "./plugins/repo-map",
77
77
  "description": "AST-based repository map generation using ast-grep with incremental updates for faster drift analysis",
78
- "version": "4.1.1",
78
+ "version": "4.2.0",
79
79
  "category": "development"
80
80
  },
81
81
  {
82
82
  "name": "perf",
83
83
  "source": "./plugins/perf",
84
84
  "description": "Rigorous performance investigation workflow with baselines, profiling, hypotheses, and evidence-backed decisions",
85
- "version": "4.1.1",
85
+ "version": "4.2.0",
86
86
  "category": "development"
87
87
  },
88
88
  {
89
89
  "name": "learn",
90
90
  "source": "./plugins/learn",
91
91
  "description": "Research topics online and create comprehensive learning guides with RAG-optimized indexes",
92
- "version": "4.1.1",
92
+ "version": "4.2.0",
93
93
  "category": "productivity"
94
94
  },
95
95
  {
96
96
  "name": "agnix",
97
97
  "source": "./plugins/agnix",
98
98
  "description": "Lint agent configuration files (SKILL.md, CLAUDE.md, hooks, MCP) against 155 rules across 10+ AI tools",
99
- "version": "4.1.1",
99
+ "version": "4.2.0",
100
100
  "category": "development"
101
+ },
102
+ {
103
+ "name": "consult",
104
+ "source": "./plugins/consult",
105
+ "description": "Cross-tool AI consultation: get second opinions from Gemini CLI, Codex CLI, Claude Code, OpenCode, or Copilot CLI with model and thinking effort control",
106
+ "version": "4.2.0",
107
+ "category": "productivity"
101
108
  }
102
109
  ]
103
110
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awesome-slash",
3
- "version": "4.1.1",
3
+ "version": "4.2.0",
4
4
  "description": "Professional-grade slash commands for Claude Code with cross-platform support",
5
5
  "keywords": [
6
6
  "workflow",
package/AGENTS.md CHANGED
@@ -56,14 +56,27 @@
56
56
  - Hooks catch problems before they reach the repo
57
57
  - Fix the root cause, then retry
58
58
  *WHY: Hooks are safety nets. Bypassing them defeats their purpose.*
59
+
60
+ 11. **Fix all test failures** - NEVER skip or ignore a failing test because it's "out of scope" or "pre-existing". Always fix it.
61
+ - If a test fails during your work, fix it before proceeding
62
+ - No test is someone else's problem
63
+ *WHY: Skipping failures erodes test trust. Every green run must mean everything works.*
64
+
65
+ 12. **Report script failures before manual fallback** - When any project script fails (npm test/run/build, scripts/*, awesome-slash-dev, node bin/dev-cli.js), you MUST:
66
+ - Report the failure with exact error output to the user
67
+ - Diagnose the root cause of the failure
68
+ - Fix the script/tooling issue, not work around it manually
69
+ - NEVER silently fall back to doing the work by hand
70
+ *WHY: Silent fallbacks mask broken tooling. A failed script needs fixing, not bypassing.*
59
71
  </critical-rules>
60
72
 
61
73
  <architecture>
62
74
  ## Architecture
63
75
 
76
+ <!-- GEN:START:claude-architecture -->
64
77
  ```
65
- lib/ → Shared library (canonical source)
66
- plugins/ → 9 plugins, 39 agents (29 file-based + 10 role-based), 25 skills
78
+ lib/ → Shared library (published as @awesome-slash/lib, vendored to plugins)
79
+ plugins/ → 12 plugins, 41 agents (31 file-based + 10 role-based), 27 skills
67
80
  adapters/ → Platform adapters (opencode-plugin/, opencode/, codex/)
68
81
  checklists/ → Action checklists (9 files)
69
82
  bin/cli.js → npm CLI installer
@@ -71,15 +84,19 @@ bin/cli.js → npm CLI installer
71
84
 
72
85
  | Plugin | Agents | Skills | Purpose |
73
86
  |--------|--------|--------|---------|
74
- | next-task | 10 | 3 | Master workflow orchestration |
75
- | enhance | 9 | 9 | Code quality analyzers |
76
- | ship | 0 | 0 | PR creation and deployment |
77
- | perf | 6 | 8 | Performance investigation |
87
+ | agnix | 1 | 1 | Agent config linting |
78
88
  | audit-project | 10 | 0 | Multi-agent code review |
89
+ | consult | 1 | 1 | Cross-tool AI consultation |
79
90
  | deslop | 1 | 1 | AI slop cleanup |
80
91
  | drift-detect | 1 | 1 | Plan drift detection |
92
+ | enhance | 8 | 9 | Code quality analyzers |
93
+ | learn | 1 | 1 | Topic research and learning guides |
94
+ | next-task | 10 | 3 | Master workflow orchestration |
95
+ | perf | 6 | 8 | Performance investigation |
81
96
  | repo-map | 1 | 1 | AST repo mapping |
97
+ | ship | 0 | 0 | PR creation and deployment |
82
98
  | sync-docs | 1 | 1 | Documentation sync |
99
+ <!-- GEN:END:claude-architecture -->
83
100
 
84
101
  **Pattern**: `Command → Agent → Skill` (orchestration → invocation → implementation)
85
102
  </architecture>
@@ -110,6 +127,15 @@ npx awesome-slash-dev validate plugins # Run single validator
110
127
  npx awesome-slash-dev bump <version> # Bump all version files (e.g., 3.7.3)
111
128
  npx awesome-slash-dev sync-lib # Sync lib/ to plugins/
112
129
  npx awesome-slash-dev test # Run test suite
130
+ npx awesome-slash-dev preflight # Change-aware checklist enforcement
131
+ npx awesome-slash-dev preflight --all # Run all checks
132
+ npx awesome-slash-dev preflight --release # All checks + release extras
133
+ npx awesome-slash-dev gen-docs # Auto-generate doc sections
134
+ npx awesome-slash-dev gen-docs --check # Validate docs are fresh (CI)
135
+ npx awesome-slash-dev new plugin <name> # Scaffold new plugin
136
+ npx awesome-slash-dev new agent <name> --plugin=<plugin> # Scaffold new agent
137
+ npx awesome-slash-dev new skill <name> --plugin=<plugin> # Scaffold new skill
138
+ npx awesome-slash-dev new command <name> --plugin=<plugin> # Scaffold new command
113
139
  npx awesome-slash-dev --help # Show all commands
114
140
 
115
141
  # Or invoke directly:
@@ -118,6 +144,15 @@ node bin/dev-cli.js <command>
118
144
  # npm aliases still work:
119
145
  npm test # Run tests (do before commits)
120
146
  npm run validate # All validators via dev-cli
147
+ npm run preflight # Change-aware preflight checks
148
+ npm run preflight:all # All preflight checks
149
+ npm run preflight:release # Release preflight
150
+ npm run gen-docs # Auto-generate documentation
151
+ npm run gen-docs:check # Check if docs are stale
152
+ npm run new:plugin # Scaffold new plugin
153
+ npm run new:agent # Scaffold new agent
154
+ npm run new:skill # Scaffold new skill
155
+ npm run new:command # Scaffold new command
121
156
  npm run bump <version> # Bump versions via dev-cli
122
157
  npm pack # Build package
123
158
  awesome-slash # Run installer