awesome-slash 4.1.0 → 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 (235) hide show
  1. package/.agnix.toml +13 -6
  2. package/.claude-plugin/marketplace.json +21 -14
  3. package/.claude-plugin/plugin.json +1 -1
  4. package/AGENTS.md +57 -10
  5. package/CHANGELOG.md +101 -1459
  6. package/README.md +160 -38
  7. package/adapters/codex/install.sh +4 -0
  8. package/adapters/codex/skills/agnix/SKILL.md +138 -0
  9. package/adapters/codex/skills/audit-project/SKILL.md +334 -0
  10. package/adapters/codex/skills/audit-project-agents/SKILL.md +459 -0
  11. package/adapters/codex/skills/audit-project-github/SKILL.md +146 -0
  12. package/adapters/codex/skills/consult/SKILL.md +245 -0
  13. package/adapters/codex/skills/delivery-approval/SKILL.md +339 -0
  14. package/adapters/codex/skills/deslop/SKILL.md +167 -0
  15. package/adapters/codex/skills/drift-detect/SKILL.md +268 -0
  16. package/adapters/codex/skills/enhance/SKILL.md +177 -0
  17. package/adapters/codex/skills/learn/SKILL.md +188 -0
  18. package/adapters/codex/skills/next-task/SKILL.md +546 -0
  19. package/adapters/codex/skills/perf/SKILL.md +469 -0
  20. package/adapters/codex/skills/repo-map/SKILL.md +132 -0
  21. package/adapters/codex/skills/ship/SKILL.md +491 -0
  22. package/adapters/codex/skills/ship-ci-review-loop/SKILL.md +473 -0
  23. package/adapters/codex/skills/ship-deployment/SKILL.md +336 -0
  24. package/adapters/codex/skills/ship-error-handling/SKILL.md +260 -0
  25. package/adapters/codex/skills/sync-docs/SKILL.md +186 -0
  26. package/adapters/opencode/agents/agent-enhancer.md +65 -0
  27. package/adapters/opencode/agents/agnix-agent.md +56 -0
  28. package/adapters/opencode/agents/ci-fixer.md +104 -0
  29. package/adapters/opencode/agents/ci-monitor.md +127 -0
  30. package/adapters/opencode/agents/claudemd-enhancer.md +66 -0
  31. package/adapters/opencode/agents/consult-agent.md +124 -0
  32. package/adapters/opencode/agents/cross-file-enhancer.md +54 -0
  33. package/adapters/opencode/agents/delivery-validator.md +115 -0
  34. package/adapters/opencode/agents/deslop-agent.md +88 -0
  35. package/adapters/opencode/agents/docs-enhancer.md +65 -0
  36. package/adapters/opencode/agents/exploration-agent.md +143 -0
  37. package/adapters/opencode/agents/hooks-enhancer.md +66 -0
  38. package/adapters/opencode/agents/implementation-agent.md +206 -0
  39. package/adapters/opencode/agents/learn-agent.md +279 -0
  40. package/adapters/opencode/agents/map-validator.md +65 -0
  41. package/adapters/opencode/agents/perf-analyzer.md +40 -0
  42. package/adapters/opencode/agents/perf-code-paths.md +12 -0
  43. package/adapters/opencode/agents/perf-investigation-logger.md +44 -0
  44. package/adapters/opencode/agents/perf-orchestrator.md +147 -0
  45. package/adapters/opencode/agents/perf-theory-gatherer.md +18 -0
  46. package/adapters/opencode/agents/perf-theory-tester.md +43 -0
  47. package/adapters/opencode/agents/plan-synthesizer.md +229 -0
  48. package/adapters/opencode/agents/planning-agent.md +235 -0
  49. package/adapters/opencode/agents/plugin-enhancer.md +64 -0
  50. package/adapters/opencode/agents/prompt-enhancer.md +58 -0
  51. package/adapters/opencode/agents/simple-fixer.md +107 -0
  52. package/adapters/opencode/agents/skills-enhancer.md +66 -0
  53. package/adapters/opencode/agents/sync-docs-agent.md +153 -0
  54. package/adapters/opencode/agents/task-discoverer.md +80 -0
  55. package/adapters/opencode/agents/test-coverage-checker.md +144 -0
  56. package/adapters/opencode/agents/worktree-manager.md +209 -0
  57. package/adapters/opencode/commands/agnix.md +106 -0
  58. package/adapters/opencode/commands/audit-project-agents.md +114 -0
  59. package/adapters/opencode/commands/audit-project-github.md +145 -0
  60. package/adapters/opencode/commands/audit-project.md +268 -0
  61. package/adapters/opencode/commands/consult.md +252 -0
  62. package/adapters/opencode/commands/delivery-approval.md +212 -0
  63. package/adapters/opencode/commands/deslop.md +132 -0
  64. package/adapters/opencode/commands/drift-detect.md +173 -0
  65. package/adapters/opencode/commands/enhance.md +183 -0
  66. package/adapters/opencode/commands/learn.md +116 -0
  67. package/adapters/opencode/commands/next-task.md +393 -0
  68. package/adapters/opencode/commands/perf.md +49 -0
  69. package/adapters/opencode/commands/repo-map.md +69 -0
  70. package/adapters/opencode/commands/ship-ci-review-loop.md +314 -0
  71. package/adapters/opencode/commands/ship-deployment.md +331 -0
  72. package/adapters/opencode/commands/ship-error-handling.md +248 -0
  73. package/adapters/opencode/commands/ship.md +371 -0
  74. package/adapters/opencode/commands/sync-docs.md +108 -0
  75. package/adapters/opencode/install.sh +4 -0
  76. package/adapters/opencode/skills/agnix/SKILL.md +139 -0
  77. package/adapters/opencode/skills/consult/SKILL.md +292 -0
  78. package/adapters/opencode/skills/deslop/SKILL.md +169 -0
  79. package/adapters/opencode/skills/discover-tasks/SKILL.md +102 -0
  80. package/adapters/opencode/skills/drift-analysis/SKILL.md +279 -0
  81. package/adapters/opencode/skills/enhance-agent-prompts/SKILL.md +279 -0
  82. package/adapters/opencode/skills/enhance-claude-memory/SKILL.md +390 -0
  83. package/adapters/opencode/skills/enhance-cross-file/SKILL.md +112 -0
  84. package/adapters/opencode/skills/enhance-docs/SKILL.md +288 -0
  85. package/adapters/opencode/skills/enhance-hooks/SKILL.md +557 -0
  86. package/adapters/opencode/skills/enhance-orchestrator/SKILL.md +114 -0
  87. package/adapters/opencode/skills/enhance-plugins/SKILL.md +314 -0
  88. package/adapters/opencode/skills/enhance-prompts/SKILL.md +341 -0
  89. package/adapters/opencode/skills/enhance-skills/SKILL.md +443 -0
  90. package/adapters/opencode/skills/learn/SKILL.md +352 -0
  91. package/adapters/opencode/skills/orchestrate-review/SKILL.md +95 -0
  92. package/adapters/opencode/skills/perf-analyzer/SKILL.md +38 -0
  93. package/adapters/opencode/skills/perf-baseline-manager/SKILL.md +31 -0
  94. package/adapters/opencode/skills/perf-benchmarker/SKILL.md +49 -0
  95. package/adapters/opencode/skills/perf-code-paths/SKILL.md +33 -0
  96. package/adapters/opencode/skills/perf-investigation-logger/SKILL.md +42 -0
  97. package/adapters/opencode/skills/perf-profiler/SKILL.md +39 -0
  98. package/adapters/opencode/skills/perf-theory-gatherer/SKILL.md +36 -0
  99. package/adapters/opencode/skills/perf-theory-tester/SKILL.md +37 -0
  100. package/adapters/opencode/skills/repo-mapping/SKILL.md +86 -0
  101. package/adapters/opencode/skills/sync-docs/SKILL.md +246 -0
  102. package/adapters/opencode/skills/validate-delivery/SKILL.md +112 -0
  103. package/adapters/opencode-plugin/index.ts +64 -0
  104. package/agent-knowledge/AGENTS.md +62 -0
  105. package/agent-knowledge/ai-cli-advanced-integration-patterns.md +670 -0
  106. package/agent-knowledge/ai-cli-non-interactive-programmatic-usage.md +1394 -0
  107. package/agent-knowledge/resources/ai-cli-non-interactive-programmatic-usage-sources.json +500 -0
  108. package/bin/cli.js +29 -326
  109. package/bin/dev-cli.js +587 -0
  110. package/lib/adapter-transforms.js +278 -0
  111. package/lib/discovery/index.js +352 -0
  112. package/lib/index.js +21 -1
  113. package/lib/package.json +28 -0
  114. package/meta/skills/maintain-cross-platform/SKILL.md +4 -4
  115. package/package.json +35 -16
  116. package/plugins/agnix/.claude-plugin/plugin.json +1 -1
  117. package/plugins/agnix/commands/agnix.md +1 -0
  118. package/plugins/agnix/skills/agnix/SKILL.md +13 -3
  119. package/plugins/audit-project/.claude-plugin/plugin.json +1 -1
  120. package/plugins/audit-project/commands/audit-project-github.md +4 -0
  121. package/plugins/audit-project/commands/audit-project.md +1 -0
  122. package/plugins/audit-project/lib/adapter-transforms.js +278 -0
  123. package/plugins/audit-project/lib/discovery/index.js +352 -0
  124. package/plugins/audit-project/lib/index.js +21 -1
  125. package/plugins/consult/.claude-plugin/plugin.json +24 -0
  126. package/plugins/consult/agents/consult-agent.md +129 -0
  127. package/plugins/consult/commands/consult.md +248 -0
  128. package/plugins/consult/skills/consult/SKILL.md +285 -0
  129. package/plugins/deslop/.claude-plugin/plugin.json +1 -1
  130. package/plugins/deslop/commands/deslop.md +2 -2
  131. package/plugins/deslop/lib/adapter-transforms.js +278 -0
  132. package/plugins/deslop/lib/discovery/index.js +352 -0
  133. package/plugins/deslop/lib/index.js +21 -1
  134. package/plugins/deslop/skills/deslop/SKILL.md +11 -2
  135. package/plugins/drift-detect/.claude-plugin/plugin.json +1 -1
  136. package/plugins/drift-detect/commands/drift-detect.md +8 -7
  137. package/plugins/drift-detect/lib/adapter-transforms.js +278 -0
  138. package/plugins/drift-detect/lib/discovery/index.js +352 -0
  139. package/plugins/drift-detect/lib/index.js +21 -1
  140. package/plugins/drift-detect/skills/drift-analysis/SKILL.md +2 -2
  141. package/plugins/enhance/.claude-plugin/plugin.json +1 -1
  142. package/plugins/enhance/agents/agent-enhancer.md +6 -0
  143. package/plugins/enhance/agents/claudemd-enhancer.md +8 -1
  144. package/plugins/enhance/agents/docs-enhancer.md +4 -0
  145. package/plugins/enhance/agents/hooks-enhancer.md +6 -0
  146. package/plugins/enhance/agents/plugin-enhancer.md +15 -9
  147. package/plugins/enhance/agents/skills-enhancer.md +7 -1
  148. package/plugins/enhance/commands/enhance.md +1 -0
  149. package/plugins/enhance/lib/adapter-transforms.js +278 -0
  150. package/plugins/enhance/lib/discovery/index.js +352 -0
  151. package/plugins/enhance/lib/index.js +21 -1
  152. package/plugins/enhance/skills/enhance-agent-prompts/SKILL.md +10 -1
  153. package/plugins/enhance/skills/enhance-claude-memory/SKILL.md +1 -1
  154. package/plugins/enhance/skills/enhance-cross-file/SKILL.md +8 -1
  155. package/plugins/enhance/skills/enhance-docs/SKILL.md +10 -1
  156. package/plugins/enhance/skills/enhance-hooks/SKILL.md +9 -1
  157. package/plugins/enhance/skills/enhance-orchestrator/SKILL.md +1 -1
  158. package/plugins/enhance/skills/enhance-plugins/SKILL.md +9 -1
  159. package/plugins/enhance/skills/enhance-prompts/SKILL.md +9 -1
  160. package/plugins/enhance/skills/enhance-skills/SKILL.md +2 -2
  161. package/plugins/learn/.claude-plugin/plugin.json +1 -1
  162. package/plugins/learn/commands/learn.md +1 -0
  163. package/plugins/learn/lib/adapter-transforms.js +278 -0
  164. package/plugins/learn/lib/discovery/index.js +352 -0
  165. package/plugins/learn/lib/index.js +21 -1
  166. package/plugins/learn/skills/learn/SKILL.md +9 -1
  167. package/plugins/next-task/.claude-plugin/plugin.json +1 -1
  168. package/plugins/next-task/commands/delivery-approval.md +1 -0
  169. package/plugins/next-task/commands/next-task.md +1 -0
  170. package/plugins/next-task/lib/adapter-transforms.js +278 -0
  171. package/plugins/next-task/lib/discovery/index.js +352 -0
  172. package/plugins/next-task/lib/index.js +21 -1
  173. package/plugins/next-task/skills/discover-tasks/SKILL.md +1 -1
  174. package/plugins/next-task/skills/validate-delivery/SKILL.md +1 -1
  175. package/plugins/perf/.claude-plugin/plugin.json +1 -1
  176. package/plugins/perf/commands/perf.md +1 -0
  177. package/plugins/perf/lib/adapter-transforms.js +278 -0
  178. package/plugins/perf/lib/discovery/index.js +352 -0
  179. package/plugins/perf/lib/index.js +21 -1
  180. package/plugins/perf/skills/perf-analyzer/SKILL.md +1 -1
  181. package/plugins/perf/skills/perf-baseline-manager/SKILL.md +1 -1
  182. package/plugins/perf/skills/perf-benchmarker/SKILL.md +9 -1
  183. package/plugins/perf/skills/perf-code-paths/SKILL.md +1 -1
  184. package/plugins/perf/skills/perf-investigation-logger/SKILL.md +1 -1
  185. package/plugins/perf/skills/perf-profiler/SKILL.md +9 -1
  186. package/plugins/perf/skills/perf-theory-gatherer/SKILL.md +1 -1
  187. package/plugins/perf/skills/perf-theory-tester/SKILL.md +1 -1
  188. package/plugins/repo-map/.claude-plugin/plugin.json +1 -1
  189. package/plugins/repo-map/commands/repo-map.md +1 -0
  190. package/plugins/repo-map/lib/adapter-transforms.js +278 -0
  191. package/plugins/repo-map/lib/discovery/index.js +352 -0
  192. package/plugins/repo-map/lib/index.js +21 -1
  193. package/plugins/repo-map/skills/repo-mapping/SKILL.md +8 -0
  194. package/plugins/ship/.claude-plugin/plugin.json +1 -1
  195. package/plugins/ship/commands/ship-error-handling.md +4 -0
  196. package/plugins/ship/commands/ship.md +1 -0
  197. package/plugins/ship/lib/adapter-transforms.js +278 -0
  198. package/plugins/ship/lib/discovery/index.js +352 -0
  199. package/plugins/ship/lib/index.js +21 -1
  200. package/plugins/sync-docs/.claude-plugin/plugin.json +1 -1
  201. package/plugins/sync-docs/commands/sync-docs.md +1 -0
  202. package/plugins/sync-docs/lib/adapter-transforms.js +278 -0
  203. package/plugins/sync-docs/lib/discovery/index.js +352 -0
  204. package/plugins/sync-docs/lib/index.js +21 -1
  205. package/plugins/sync-docs/skills/sync-docs/SKILL.md +10 -1
  206. package/scripts/bump-version.js +37 -76
  207. package/scripts/dev-install.js +30 -163
  208. package/scripts/expand-templates.js +269 -0
  209. package/scripts/gen-adapters.js +313 -0
  210. package/scripts/generate-docs.js +558 -0
  211. package/scripts/generate-plugin-list.js +20 -0
  212. package/scripts/migrate-opencode.js +5 -1
  213. package/scripts/plugins.txt +12 -0
  214. package/scripts/preflight.js +1264 -0
  215. package/scripts/scaffold.js +490 -0
  216. package/scripts/setup-hooks.js +60 -81
  217. package/scripts/stamp-version.js +180 -0
  218. package/scripts/test-transform.js +68 -56
  219. package/scripts/validate-agent-skill-compliance.js +8 -3
  220. package/scripts/validate-counts.js +8 -35
  221. package/scripts/validate-cross-platform-docs.js +4 -1
  222. package/scripts/validate-opencode-install.js +29 -17
  223. package/site/assets/css/main.css +1525 -0
  224. package/site/assets/css/tokens.css +493 -0
  225. package/site/assets/favicon.svg +23 -0
  226. package/site/assets/js/main.js +801 -0
  227. package/site/assets/logo.png +0 -0
  228. package/site/assets/og-image.html +163 -0
  229. package/site/content.json +446 -0
  230. package/site/index.html +698 -0
  231. package/site/ux-spec.md +683 -0
  232. package/site/version.json +5 -0
  233. package/templates/agent-snippets/enhance-integration-points.md +6 -0
  234. package/templates/agent-snippets/enhance-skill-delegation.md +18 -0
  235. package/templates/agent-snippets/model-choice.md +6 -0
package/.agnix.toml CHANGED
@@ -12,6 +12,7 @@ exclude = [
12
12
  ]
13
13
  target = "ClaudeCode"
14
14
  tools = []
15
+ locale = "en"
15
16
 
16
17
  [rules]
17
18
  skills = true
@@ -22,19 +23,25 @@ plugins = true
22
23
  xml = true
23
24
  mcp = true
24
25
  imports = true
25
- cross_platform = false # Intentional - we document all 3 platform paths
26
+ cross_platform = false # Intentional - we document all 3 platform paths
26
27
  agents_md = true
27
- copilot = false # Not targeting Copilot
28
- cursor = false # Not targeting Cursor
28
+ copilot = false # Not targeting Copilot
29
+ cursor = false # Not targeting Cursor
29
30
  prompt_engineering = true
30
31
  generic_instructions = true
31
32
  frontmatter_validation = true
32
33
  xml_balance = true
33
34
  import_references = true
34
35
  disabled_rules = [
35
- "hardcoded-claude-path", # Intentional - we document platform paths
36
- "hardcoded-opencode-path", # Intentional - we document platform paths
37
- "windows-path-separator", # False positives on regex escape sequences (\n, \s, \d)
36
+ "XP-003", # Intentional - we document all 3 platform paths (.claude/, .opencode/, .codex/)
37
+ "AS-014", # False positives on regex escape sequences (\n, \s, \d)
38
+ "CC-AG-009", # False positive - Skill, AskUserQuestion, LSP are valid Claude Code tools
39
+ "CC-MEM-009", # Intentional - CLAUDE.md uses structured sections, size is necessary
40
+ "AGM-006", # Intentional - root AGENTS.md (instructions) + docs/reference/AGENTS.md (reference)
41
+ "AGM-003", # docs/reference/AGENTS.md is a comprehensive reference doc
42
+ "PE-001", # Reference docs have structured layout; middle placement is intentional
43
+ "AS-012", # enhance-hooks is a comprehensive hook reference (needs >500 lines)
44
+ "CC-SK-009", # enhance-skills contains example injections for teaching purposes
38
45
  ]
39
46
 
40
47
  [tool_versions]
@@ -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.0",
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.0",
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.0",
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.0",
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.0",
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.0",
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.0",
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.0",
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.0",
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.0",
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.0",
92
+ "version": "4.2.0",
93
93
  "category": "productivity"
94
94
  },
95
95
  {
96
96
  "name": "agnix",
97
97
  "source": "./plugins/agnix",
98
- "description": "Lint agent configuration files (SKILL.md, CLAUDE.md, hooks, MCP) against 100 rules",
99
- "version": "4.1.0",
98
+ "description": "Lint agent configuration files (SKILL.md, CLAUDE.md, hooks, MCP) against 155 rules across 10+ AI tools",
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.0",
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
@@ -11,7 +11,7 @@
11
11
  *WHY: Breaking changes affect all plugin users immediately.*
12
12
 
13
13
  2. **Plugin for OTHER projects** - Optimize for plugin users, not internal dev convenience.
14
- *WHY: Every decision should improve the experience for developers using this in their repos.*
14
+ *WHY: Every decision MUST improve the experience for developers using this in their repos.*
15
15
 
16
16
  3. **Use CHANGELOG.md for completion tracking** - MUST use CHANGELOG.md for release notes. NEVER create `*_AUDIT.md`, `*_SUMMARY.md`, `*_COMPLETION.md` files.
17
17
  *WHY: Summary files clutter repos and add no value. Report completion verbally.*
@@ -39,7 +39,7 @@
39
39
  - Run the `/enhance` command on new or modified commands, agents, skills, hooks or prompts
40
40
  - Verify cross-platform compatibility (OpenCode + Codex)
41
41
  - Update `bin/cli.js` mappings if new command/agent added
42
- - Don't mark complete until ALL checklist items are done
42
+ - Only mark complete after ALL checklist items are done
43
43
  *WHY: Checklists exist because we kept missing things. They are the definition of "done".*
44
44
 
45
45
  8. **Use plain text markers** - MUST use `[OK]`, `[ERROR]`, `[WARN]`, `[CRITICAL]` for status. NEVER use emojis or ASCII art boxes.
@@ -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>
@@ -104,9 +121,39 @@ bin/cli.js → npm CLI installer
104
121
 
105
122
  ### Dev Commands
106
123
  ```bash
124
+ npx awesome-slash-dev status # Project health (version, counts, branch)
125
+ npx awesome-slash-dev validate # Run all validators
126
+ npx awesome-slash-dev validate plugins # Run single validator
127
+ npx awesome-slash-dev bump <version> # Bump all version files (e.g., 3.7.3)
128
+ npx awesome-slash-dev sync-lib # Sync lib/ to plugins/
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
139
+ npx awesome-slash-dev --help # Show all commands
140
+
141
+ # Or invoke directly:
142
+ node bin/dev-cli.js <command>
143
+
144
+ # npm aliases still work:
107
145
  npm test # Run tests (do before commits)
108
- npm run bump <version> # Bump all version files (e.g., 3.7.3)
109
- ./scripts/sync-lib.sh # Sync lib/ to plugins/
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
156
+ npm run bump <version> # Bump versions via dev-cli
110
157
  npm pack # Build package
111
158
  awesome-slash # Run installer
112
159
  ```