@every-env/compound-plugin 0.1.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 (226) hide show
  1. package/.claude-plugin/marketplace.json +37 -0
  2. package/.github/workflows/deploy-docs.yml +39 -0
  3. package/AGENTS.md +48 -0
  4. package/CLAUDE.md +380 -0
  5. package/LICENSE +21 -0
  6. package/README.md +65 -0
  7. package/bun.lock +30 -0
  8. package/docs/css/docs.css +675 -0
  9. package/docs/css/style.css +2886 -0
  10. package/docs/index.html +1046 -0
  11. package/docs/js/main.js +225 -0
  12. package/docs/pages/agents.html +649 -0
  13. package/docs/pages/changelog.html +495 -0
  14. package/docs/pages/commands.html +523 -0
  15. package/docs/pages/getting-started.html +582 -0
  16. package/docs/pages/mcp-servers.html +409 -0
  17. package/docs/pages/skills.html +611 -0
  18. package/docs/solutions/plugin-versioning-requirements.md +77 -0
  19. package/docs/specs/claude-code.md +67 -0
  20. package/docs/specs/codex.md +59 -0
  21. package/docs/specs/opencode.md +57 -0
  22. package/package.json +26 -0
  23. package/plans/grow-your-own-garden-plugin-architecture.md +102 -0
  24. package/plans/landing-page-launchkit-refresh.md +279 -0
  25. package/plugins/coding-tutor/.claude-plugin/plugin.json +9 -0
  26. package/plugins/coding-tutor/README.md +37 -0
  27. package/plugins/coding-tutor/commands/quiz-me.md +1 -0
  28. package/plugins/coding-tutor/commands/sync-tutorials.md +25 -0
  29. package/plugins/coding-tutor/commands/teach-me.md +1 -0
  30. package/plugins/coding-tutor/skills/coding-tutor/SKILL.md +214 -0
  31. package/plugins/coding-tutor/skills/coding-tutor/scripts/create_tutorial.py +207 -0
  32. package/plugins/coding-tutor/skills/coding-tutor/scripts/index_tutorials.py +193 -0
  33. package/plugins/coding-tutor/skills/coding-tutor/scripts/quiz_priority.py +190 -0
  34. package/plugins/coding-tutor/skills/coding-tutor/scripts/setup_tutorials.py +118 -0
  35. package/plugins/compound-engineering/.claude-plugin/plugin.json +33 -0
  36. package/plugins/compound-engineering/CHANGELOG.md +393 -0
  37. package/plugins/compound-engineering/CLAUDE.md +90 -0
  38. package/plugins/compound-engineering/LICENSE +21 -0
  39. package/plugins/compound-engineering/README.md +219 -0
  40. package/plugins/compound-engineering/agents/design/design-implementation-reviewer.md +94 -0
  41. package/plugins/compound-engineering/agents/design/design-iterator.md +197 -0
  42. package/plugins/compound-engineering/agents/design/figma-design-sync.md +172 -0
  43. package/plugins/compound-engineering/agents/docs/ankane-readme-writer.md +50 -0
  44. package/plugins/compound-engineering/agents/research/best-practices-researcher.md +100 -0
  45. package/plugins/compound-engineering/agents/research/framework-docs-researcher.md +83 -0
  46. package/plugins/compound-engineering/agents/research/git-history-analyzer.md +42 -0
  47. package/plugins/compound-engineering/agents/research/repo-research-analyst.md +113 -0
  48. package/plugins/compound-engineering/agents/review/agent-native-reviewer.md +246 -0
  49. package/plugins/compound-engineering/agents/review/architecture-strategist.md +52 -0
  50. package/plugins/compound-engineering/agents/review/code-simplicity-reviewer.md +85 -0
  51. package/plugins/compound-engineering/agents/review/data-integrity-guardian.md +70 -0
  52. package/plugins/compound-engineering/agents/review/data-migration-expert.md +97 -0
  53. package/plugins/compound-engineering/agents/review/deployment-verification-agent.md +159 -0
  54. package/plugins/compound-engineering/agents/review/dhh-rails-reviewer.md +45 -0
  55. package/plugins/compound-engineering/agents/review/julik-frontend-races-reviewer.md +222 -0
  56. package/plugins/compound-engineering/agents/review/kieran-python-reviewer.md +104 -0
  57. package/plugins/compound-engineering/agents/review/kieran-rails-reviewer.md +86 -0
  58. package/plugins/compound-engineering/agents/review/kieran-typescript-reviewer.md +95 -0
  59. package/plugins/compound-engineering/agents/review/pattern-recognition-specialist.md +57 -0
  60. package/plugins/compound-engineering/agents/review/performance-oracle.md +110 -0
  61. package/plugins/compound-engineering/agents/review/security-sentinel.md +93 -0
  62. package/plugins/compound-engineering/agents/workflow/bug-reproduction-validator.md +67 -0
  63. package/plugins/compound-engineering/agents/workflow/every-style-editor.md +64 -0
  64. package/plugins/compound-engineering/agents/workflow/lint.md +16 -0
  65. package/plugins/compound-engineering/agents/workflow/pr-comment-resolver.md +69 -0
  66. package/plugins/compound-engineering/agents/workflow/spec-flow-analyzer.md +113 -0
  67. package/plugins/compound-engineering/commands/agent-native-audit.md +277 -0
  68. package/plugins/compound-engineering/commands/changelog.md +137 -0
  69. package/plugins/compound-engineering/commands/create-agent-skill.md +8 -0
  70. package/plugins/compound-engineering/commands/deepen-plan.md +546 -0
  71. package/plugins/compound-engineering/commands/deploy-docs.md +112 -0
  72. package/plugins/compound-engineering/commands/feature-video.md +342 -0
  73. package/plugins/compound-engineering/commands/generate_command.md +162 -0
  74. package/plugins/compound-engineering/commands/heal-skill.md +142 -0
  75. package/plugins/compound-engineering/commands/lfg.md +19 -0
  76. package/plugins/compound-engineering/commands/plan_review.md +7 -0
  77. package/plugins/compound-engineering/commands/release-docs.md +211 -0
  78. package/plugins/compound-engineering/commands/report-bug.md +150 -0
  79. package/plugins/compound-engineering/commands/reproduce-bug.md +99 -0
  80. package/plugins/compound-engineering/commands/resolve_parallel.md +34 -0
  81. package/plugins/compound-engineering/commands/resolve_pr_parallel.md +49 -0
  82. package/plugins/compound-engineering/commands/resolve_todo_parallel.md +35 -0
  83. package/plugins/compound-engineering/commands/test-browser.md +339 -0
  84. package/plugins/compound-engineering/commands/triage.md +310 -0
  85. package/plugins/compound-engineering/commands/workflows/compound.md +202 -0
  86. package/plugins/compound-engineering/commands/workflows/plan.md +466 -0
  87. package/plugins/compound-engineering/commands/workflows/review.md +514 -0
  88. package/plugins/compound-engineering/commands/workflows/work.md +363 -0
  89. package/plugins/compound-engineering/commands/xcode-test.md +331 -0
  90. package/plugins/compound-engineering/skills/agent-browser/SKILL.md +223 -0
  91. package/plugins/compound-engineering/skills/agent-native-architecture/SKILL.md +435 -0
  92. package/plugins/compound-engineering/skills/agent-native-architecture/references/action-parity-discipline.md +409 -0
  93. package/plugins/compound-engineering/skills/agent-native-architecture/references/agent-execution-patterns.md +467 -0
  94. package/plugins/compound-engineering/skills/agent-native-architecture/references/agent-native-testing.md +582 -0
  95. package/plugins/compound-engineering/skills/agent-native-architecture/references/architecture-patterns.md +478 -0
  96. package/plugins/compound-engineering/skills/agent-native-architecture/references/dynamic-context-injection.md +338 -0
  97. package/plugins/compound-engineering/skills/agent-native-architecture/references/files-universal-interface.md +301 -0
  98. package/plugins/compound-engineering/skills/agent-native-architecture/references/from-primitives-to-domain-tools.md +359 -0
  99. package/plugins/compound-engineering/skills/agent-native-architecture/references/mcp-tool-design.md +506 -0
  100. package/plugins/compound-engineering/skills/agent-native-architecture/references/mobile-patterns.md +871 -0
  101. package/plugins/compound-engineering/skills/agent-native-architecture/references/product-implications.md +443 -0
  102. package/plugins/compound-engineering/skills/agent-native-architecture/references/refactoring-to-prompt-native.md +317 -0
  103. package/plugins/compound-engineering/skills/agent-native-architecture/references/self-modification.md +269 -0
  104. package/plugins/compound-engineering/skills/agent-native-architecture/references/shared-workspace-architecture.md +680 -0
  105. package/plugins/compound-engineering/skills/agent-native-architecture/references/system-prompt-design.md +250 -0
  106. package/plugins/compound-engineering/skills/andrew-kane-gem-writer/SKILL.md +184 -0
  107. package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/database-adapters.md +231 -0
  108. package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/module-organization.md +121 -0
  109. package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/rails-integration.md +183 -0
  110. package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/resources.md +119 -0
  111. package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/testing-patterns.md +261 -0
  112. package/plugins/compound-engineering/skills/compound-docs/SKILL.md +510 -0
  113. package/plugins/compound-engineering/skills/compound-docs/assets/critical-pattern-template.md +34 -0
  114. package/plugins/compound-engineering/skills/compound-docs/assets/resolution-template.md +93 -0
  115. package/plugins/compound-engineering/skills/compound-docs/references/yaml-schema.md +65 -0
  116. package/plugins/compound-engineering/skills/compound-docs/schema.yaml +176 -0
  117. package/plugins/compound-engineering/skills/create-agent-skills/SKILL.md +299 -0
  118. package/plugins/compound-engineering/skills/create-agent-skills/references/api-security.md +226 -0
  119. package/plugins/compound-engineering/skills/create-agent-skills/references/be-clear-and-direct.md +531 -0
  120. package/plugins/compound-engineering/skills/create-agent-skills/references/best-practices.md +404 -0
  121. package/plugins/compound-engineering/skills/create-agent-skills/references/common-patterns.md +595 -0
  122. package/plugins/compound-engineering/skills/create-agent-skills/references/core-principles.md +437 -0
  123. package/plugins/compound-engineering/skills/create-agent-skills/references/executable-code.md +175 -0
  124. package/plugins/compound-engineering/skills/create-agent-skills/references/iteration-and-testing.md +474 -0
  125. package/plugins/compound-engineering/skills/create-agent-skills/references/official-spec.md +185 -0
  126. package/plugins/compound-engineering/skills/create-agent-skills/references/recommended-structure.md +168 -0
  127. package/plugins/compound-engineering/skills/create-agent-skills/references/skill-structure.md +372 -0
  128. package/plugins/compound-engineering/skills/create-agent-skills/references/using-scripts.md +113 -0
  129. package/plugins/compound-engineering/skills/create-agent-skills/references/using-templates.md +112 -0
  130. package/plugins/compound-engineering/skills/create-agent-skills/references/workflows-and-validation.md +510 -0
  131. package/plugins/compound-engineering/skills/create-agent-skills/templates/router-skill.md +73 -0
  132. package/plugins/compound-engineering/skills/create-agent-skills/templates/simple-skill.md +33 -0
  133. package/plugins/compound-engineering/skills/create-agent-skills/workflows/add-reference.md +96 -0
  134. package/plugins/compound-engineering/skills/create-agent-skills/workflows/add-script.md +93 -0
  135. package/plugins/compound-engineering/skills/create-agent-skills/workflows/add-template.md +74 -0
  136. package/plugins/compound-engineering/skills/create-agent-skills/workflows/add-workflow.md +120 -0
  137. package/plugins/compound-engineering/skills/create-agent-skills/workflows/audit-skill.md +138 -0
  138. package/plugins/compound-engineering/skills/create-agent-skills/workflows/create-domain-expertise-skill.md +605 -0
  139. package/plugins/compound-engineering/skills/create-agent-skills/workflows/create-new-skill.md +191 -0
  140. package/plugins/compound-engineering/skills/create-agent-skills/workflows/get-guidance.md +121 -0
  141. package/plugins/compound-engineering/skills/create-agent-skills/workflows/upgrade-to-router.md +161 -0
  142. package/plugins/compound-engineering/skills/create-agent-skills/workflows/verify-skill.md +204 -0
  143. package/plugins/compound-engineering/skills/dhh-rails-style/SKILL.md +185 -0
  144. package/plugins/compound-engineering/skills/dhh-rails-style/references/architecture.md +653 -0
  145. package/plugins/compound-engineering/skills/dhh-rails-style/references/controllers.md +303 -0
  146. package/plugins/compound-engineering/skills/dhh-rails-style/references/frontend.md +510 -0
  147. package/plugins/compound-engineering/skills/dhh-rails-style/references/gems.md +266 -0
  148. package/plugins/compound-engineering/skills/dhh-rails-style/references/models.md +359 -0
  149. package/plugins/compound-engineering/skills/dhh-rails-style/references/testing.md +338 -0
  150. package/plugins/compound-engineering/skills/dspy-ruby/SKILL.md +594 -0
  151. package/plugins/compound-engineering/skills/dspy-ruby/assets/config-template.rb +359 -0
  152. package/plugins/compound-engineering/skills/dspy-ruby/assets/module-template.rb +326 -0
  153. package/plugins/compound-engineering/skills/dspy-ruby/assets/signature-template.rb +143 -0
  154. package/plugins/compound-engineering/skills/dspy-ruby/references/core-concepts.md +265 -0
  155. package/plugins/compound-engineering/skills/dspy-ruby/references/optimization.md +623 -0
  156. package/plugins/compound-engineering/skills/dspy-ruby/references/providers.md +338 -0
  157. package/plugins/compound-engineering/skills/every-style-editor/SKILL.md +134 -0
  158. package/plugins/compound-engineering/skills/every-style-editor/references/EVERY_WRITE_STYLE.md +529 -0
  159. package/plugins/compound-engineering/skills/file-todos/SKILL.md +251 -0
  160. package/plugins/compound-engineering/skills/file-todos/assets/todo-template.md +155 -0
  161. package/plugins/compound-engineering/skills/frontend-design/SKILL.md +42 -0
  162. package/plugins/compound-engineering/skills/gemini-imagegen/SKILL.md +237 -0
  163. package/plugins/compound-engineering/skills/gemini-imagegen/requirements.txt +2 -0
  164. package/plugins/compound-engineering/skills/gemini-imagegen/scripts/compose_images.py +157 -0
  165. package/plugins/compound-engineering/skills/gemini-imagegen/scripts/edit_image.py +144 -0
  166. package/plugins/compound-engineering/skills/gemini-imagegen/scripts/gemini_images.py +263 -0
  167. package/plugins/compound-engineering/skills/gemini-imagegen/scripts/generate_image.py +133 -0
  168. package/plugins/compound-engineering/skills/gemini-imagegen/scripts/multi_turn_chat.py +216 -0
  169. package/plugins/compound-engineering/skills/git-worktree/SKILL.md +302 -0
  170. package/plugins/compound-engineering/skills/git-worktree/scripts/worktree-manager.sh +345 -0
  171. package/plugins/compound-engineering/skills/rclone/SKILL.md +150 -0
  172. package/plugins/compound-engineering/skills/rclone/scripts/check_setup.sh +60 -0
  173. package/plugins/compound-engineering/skills/skill-creator/SKILL.md +209 -0
  174. package/plugins/compound-engineering/skills/skill-creator/scripts/init_skill.py +303 -0
  175. package/plugins/compound-engineering/skills/skill-creator/scripts/package_skill.py +110 -0
  176. package/plugins/compound-engineering/skills/skill-creator/scripts/quick_validate.py +65 -0
  177. package/src/commands/convert.ts +156 -0
  178. package/src/commands/install.ts +221 -0
  179. package/src/commands/list.ts +37 -0
  180. package/src/converters/claude-to-codex.ts +124 -0
  181. package/src/converters/claude-to-opencode.ts +392 -0
  182. package/src/index.ts +20 -0
  183. package/src/parsers/claude.ts +248 -0
  184. package/src/targets/codex.ts +91 -0
  185. package/src/targets/index.ts +29 -0
  186. package/src/targets/opencode.ts +48 -0
  187. package/src/types/claude.ts +88 -0
  188. package/src/types/codex.ts +23 -0
  189. package/src/types/opencode.ts +54 -0
  190. package/src/utils/codex-agents.ts +64 -0
  191. package/src/utils/files.ts +64 -0
  192. package/src/utils/frontmatter.ts +65 -0
  193. package/tests/claude-parser.test.ts +89 -0
  194. package/tests/cli.test.ts +289 -0
  195. package/tests/codex-agents.test.ts +62 -0
  196. package/tests/codex-converter.test.ts +121 -0
  197. package/tests/codex-writer.test.ts +76 -0
  198. package/tests/converter.test.ts +171 -0
  199. package/tests/fixtures/custom-paths/.claude-plugin/plugin.json +8 -0
  200. package/tests/fixtures/custom-paths/agents/default-agent.md +5 -0
  201. package/tests/fixtures/custom-paths/commands/default-command.md +5 -0
  202. package/tests/fixtures/custom-paths/custom-agents/custom-agent.md +5 -0
  203. package/tests/fixtures/custom-paths/custom-commands/custom-command.md +5 -0
  204. package/tests/fixtures/custom-paths/custom-hooks/hooks.json +7 -0
  205. package/tests/fixtures/custom-paths/custom-skills/custom-skill/SKILL.md +5 -0
  206. package/tests/fixtures/custom-paths/hooks/hooks.json +7 -0
  207. package/tests/fixtures/custom-paths/skills/default-skill/SKILL.md +5 -0
  208. package/tests/fixtures/invalid-command-path/.claude-plugin/plugin.json +5 -0
  209. package/tests/fixtures/invalid-hooks-path/.claude-plugin/plugin.json +5 -0
  210. package/tests/fixtures/invalid-mcp-path/.claude-plugin/plugin.json +5 -0
  211. package/tests/fixtures/mcp-file/.claude-plugin/plugin.json +5 -0
  212. package/tests/fixtures/mcp-file/.mcp.json +6 -0
  213. package/tests/fixtures/sample-plugin/.claude-plugin/plugin.json +30 -0
  214. package/tests/fixtures/sample-plugin/agents/agent-one.md +10 -0
  215. package/tests/fixtures/sample-plugin/agents/security-reviewer.md +7 -0
  216. package/tests/fixtures/sample-plugin/commands/command-one.md +7 -0
  217. package/tests/fixtures/sample-plugin/commands/model-command.md +8 -0
  218. package/tests/fixtures/sample-plugin/commands/nested/command-two.md +9 -0
  219. package/tests/fixtures/sample-plugin/commands/pattern-command.md +7 -0
  220. package/tests/fixtures/sample-plugin/commands/skill-command.md +7 -0
  221. package/tests/fixtures/sample-plugin/commands/todo-command.md +7 -0
  222. package/tests/fixtures/sample-plugin/hooks/hooks.json +156 -0
  223. package/tests/fixtures/sample-plugin/skills/skill-one/SKILL.md +6 -0
  224. package/tests/frontmatter.test.ts +20 -0
  225. package/tests/opencode-writer.test.ts +62 -0
  226. package/tsconfig.json +14 -0
@@ -0,0 +1,393 @@
1
+ # Changelog
2
+
3
+ All notable changes to the compound-engineering plugin will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [2.28.0] - 2026-01-21
9
+
10
+ ### Added
11
+
12
+ - **`/workflows:brainstorm` command** - Guided ideation flow to expand options quickly (#101)
13
+
14
+ ### Changed
15
+
16
+ - **`/workflows:plan` command** - Smarter research decision logic before deep dives (#100)
17
+ - **Research checks** - Mandatory API deprecation validation in research flows (#102)
18
+ - **Docs** - Call out experimental OpenCode/Codex providers and install defaults
19
+ - **CLI defaults** - `install` pulls from GitHub by default and writes OpenCode/Codex output to global locations
20
+
21
+ ### Merged PRs
22
+
23
+ - [#102](https://github.com/EveryInc/compound-engineering-plugin/pull/102) feat(research): add mandatory API deprecation validation
24
+ - [#101](https://github.com/EveryInc/compound-engineering-plugin/pull/101) feat: Add /workflows:brainstorm command and skill
25
+ - [#100](https://github.com/EveryInc/compound-engineering-plugin/pull/100) feat(workflows:plan): Add smart research decision logic
26
+
27
+ ### Contributors
28
+
29
+ Huge thanks to the community contributors who made this release possible! 🙌
30
+
31
+ - **[@tmchow](https://github.com/tmchow)** - Brainstorm workflow, research decision logic (2 PRs)
32
+ - **[@jaredmorgenstern](https://github.com/jaredmorgenstern)** - API deprecation validation
33
+
34
+ ---
35
+
36
+ ## [2.27.0] - 2026-01-20
37
+
38
+ ### Added
39
+
40
+ - **`/workflows:plan` command** - Interactive Q&A refinement phase (#88)
41
+ - After generating initial plan, now offers to refine with targeted questions
42
+ - Asks up to 5 questions about ambiguous requirements, edge cases, or technical decisions
43
+ - Incorporates answers to strengthen the plan before finalization
44
+
45
+ ### Changed
46
+
47
+ - **`/workflows:work` command** - Incremental commits and branch safety (#93)
48
+ - Now commits after each completed task instead of batching at end
49
+ - Added branch protection checks before starting work
50
+ - Better progress tracking with per-task commits
51
+
52
+ ### Fixed
53
+
54
+ - **`dhh-rails-style` skill** - Fixed broken markdown table formatting (#96)
55
+ - **Documentation** - Updated hardcoded year references from 2025 to 2026 (#86, #91)
56
+
57
+ ### Contributors
58
+
59
+ Huge thanks to the community contributors who made this release possible! 🙌
60
+
61
+ - **[@tmchow](https://github.com/tmchow)** - Interactive Q&A for plans, incremental commits, year updates (3 PRs!)
62
+ - **[@ashwin47](https://github.com/ashwin47)** - Markdown table fix
63
+ - **[@rbouschery](https://github.com/rbouschery)** - Documentation year update
64
+
65
+ ### Summary
66
+
67
+ - 27 agents, 23 commands, 14 skills, 1 MCP server
68
+
69
+ ---
70
+
71
+ ## [2.26.5] - 2026-01-18
72
+
73
+ ### Changed
74
+
75
+ - **`/workflows:work` command** - Now marks off checkboxes in plan document as tasks complete
76
+ - Added step to update original plan file (`[ ]` → `[x]`) after each task
77
+ - Ensures no checkboxes are left unchecked when work is done
78
+ - Keeps plan as living document showing progress
79
+
80
+ ---
81
+
82
+ ## [2.26.4] - 2026-01-15
83
+
84
+ ### Changed
85
+
86
+ - **`/workflows:work` command** - PRs now include Compound Engineered badge
87
+ - Updated PR template to include badge at bottom linking to plugin repo
88
+ - Added badge requirement to quality checklist
89
+ - Badge provides attribution and link to the plugin that created the PR
90
+
91
+ ---
92
+
93
+ ## [2.26.3] - 2026-01-14
94
+
95
+ ### Changed
96
+
97
+ - **`design-iterator` agent** - Now auto-loads design skills at start of iterations
98
+ - Added "Step 0: Discover and Load Design Skills (MANDATORY)" section
99
+ - Discovers skills from ~/.claude/skills/, .claude/skills/, and plugin cache
100
+ - Maps user context to relevant skills (Swiss design → swiss-design skill, etc.)
101
+ - Reads SKILL.md files to load principles into context before iterating
102
+ - Extracts key principles: grid specs, typography rules, color philosophy, layout principles
103
+ - Skills are applied throughout ALL iterations for consistent design language
104
+
105
+ ---
106
+
107
+ ## [2.26.2] - 2026-01-14
108
+
109
+ ### Changed
110
+
111
+ - **`/test-browser` command** - Clarified to use agent-browser CLI exclusively
112
+ - Added explicit "CRITICAL: Use agent-browser CLI Only" section
113
+ - Added warning: "DO NOT use Chrome MCP tools (mcp__claude-in-chrome__*)"
114
+ - Added Step 0: Verify agent-browser installation before testing
115
+ - Added full CLI reference section at bottom
116
+ - Added Next.js route mapping patterns
117
+
118
+ ---
119
+
120
+ ## [2.26.1] - 2026-01-14
121
+
122
+ ### Changed
123
+
124
+ - **`best-practices-researcher` agent** - Now checks skills before going online
125
+ - Phase 1: Discovers and reads relevant SKILL.md files from plugin, global, and project directories
126
+ - Phase 2: Only goes online for additional best practices if skills don't provide enough coverage
127
+ - Phase 3: Synthesizes all findings with clear source attribution (skill-based > official docs > community)
128
+ - Skill mappings: Rails → dhh-rails-style, Frontend → frontend-design, AI → agent-native-architecture, etc.
129
+ - Prioritizes curated skill knowledge over external sources for trivial/common patterns
130
+
131
+ ---
132
+
133
+ ## [2.26.0] - 2026-01-14
134
+
135
+ ### Added
136
+
137
+ - **`/lfg` command** - Full autonomous engineering workflow
138
+ - Orchestrates complete feature development from plan to PR
139
+ - Runs: plan → deepen-plan → work → review → resolve todos → test-browser → feature-video
140
+ - Uses ralph-loop for autonomous completion
141
+ - Migrated from local command, updated to use `/test-browser` instead of `/playwright-test`
142
+
143
+ ### Summary
144
+
145
+ - 27 agents, 21 commands, 14 skills, 1 MCP server
146
+
147
+ ---
148
+
149
+ ## [2.25.0] - 2026-01-14
150
+
151
+ ### Added
152
+
153
+ - **`agent-browser` skill** - Browser automation using Vercel's agent-browser CLI
154
+ - Navigate, click, fill forms, take screenshots
155
+ - Uses ref-based element selection (simpler than Playwright)
156
+ - Works in headed or headless mode
157
+
158
+ ### Changed
159
+
160
+ - **Replaced Playwright MCP with agent-browser** - Simpler browser automation across all browser-related features:
161
+ - `/test-browser` command - Now uses agent-browser CLI with headed/headless mode option
162
+ - `/feature-video` command - Uses agent-browser for screenshots
163
+ - `design-iterator` agent - Browser automation via agent-browser
164
+ - `design-implementation-reviewer` agent - Screenshot comparison
165
+ - `figma-design-sync` agent - Design verification
166
+ - `bug-reproduction-validator` agent - Bug reproduction
167
+ - `/review` workflow - Screenshot capabilities
168
+ - `/work` workflow - Browser testing
169
+
170
+ - **`/test-browser` command** - Added "Step 0" to ask user if they want headed (visible) or headless browser mode
171
+
172
+ ### Removed
173
+
174
+ - **Playwright MCP server** - Replaced by agent-browser CLI (simpler, no MCP overhead)
175
+ - **`/playwright-test` command** - Renamed to `/test-browser`
176
+
177
+ ### Summary
178
+
179
+ - 27 agents, 20 commands, 14 skills, 1 MCP server
180
+
181
+ ---
182
+
183
+ ## [2.23.2] - 2026-01-09
184
+
185
+ ### Changed
186
+
187
+ - **`/reproduce-bug` command** - Enhanced with Playwright visual reproduction:
188
+ - Added Phase 2 for visual bug reproduction using browser automation
189
+ - Step-by-step guide for navigating to affected areas
190
+ - Screenshot capture at each reproduction step
191
+ - Console error checking
192
+ - User flow reproduction with clicks, typing, and snapshots
193
+ - Better documentation structure with 4 clear phases
194
+
195
+ ### Summary
196
+
197
+ - 27 agents, 21 commands, 13 skills, 2 MCP servers
198
+
199
+ ---
200
+
201
+ ## [2.23.1] - 2026-01-08
202
+
203
+ ### Changed
204
+
205
+ - **Agent model inheritance** - All 26 agents now use `model: inherit` so they match the user's configured model. Only `lint` keeps `model: haiku` for cost efficiency. (fixes #69)
206
+
207
+ ### Summary
208
+
209
+ - 27 agents, 21 commands, 13 skills, 2 MCP servers
210
+
211
+ ---
212
+
213
+ ## [2.23.0] - 2026-01-08
214
+
215
+ ### Added
216
+
217
+ - **`/agent-native-audit` command** - Comprehensive agent-native architecture review
218
+ - Launches 8 parallel sub-agents, one per core principle
219
+ - Principles: Action Parity, Tools as Primitives, Context Injection, Shared Workspace, CRUD Completeness, UI Integration, Capability Discovery, Prompt-Native Features
220
+ - Each agent produces specific score (X/Y format with percentage)
221
+ - Generates summary report with overall score and top 10 recommendations
222
+ - Supports single principle audit via argument
223
+
224
+ ### Summary
225
+
226
+ - 27 agents, 21 commands, 13 skills, 2 MCP servers
227
+
228
+ ---
229
+
230
+ ## [2.22.0] - 2026-01-05
231
+
232
+ ### Added
233
+
234
+ - **`rclone` skill** - Upload files to S3, Cloudflare R2, Backblaze B2, and other cloud storage providers
235
+
236
+ ### Changed
237
+
238
+ - **`/feature-video` command** - Enhanced with:
239
+ - Better ffmpeg commands for video/GIF creation (proper scaling, framerate control)
240
+ - rclone integration for cloud uploads
241
+ - Screenshot copying to project folder
242
+ - Improved upload options workflow
243
+
244
+ ### Summary
245
+
246
+ - 27 agents, 20 commands, 13 skills, 2 MCP servers
247
+
248
+ ---
249
+
250
+ ## [2.21.0] - 2026-01-05
251
+
252
+ ### Fixed
253
+
254
+ - Version history cleanup after merge conflict resolution
255
+
256
+ ### Summary
257
+
258
+ This release consolidates all recent work:
259
+ - `/feature-video` command for recording PR demos
260
+ - `/deepen-plan` command for enhanced planning
261
+ - `create-agent-skills` skill rewrite (official spec compliance)
262
+ - `agent-native-architecture` skill major expansion
263
+ - `dhh-rails-style` skill consolidation (merged dhh-ruby-style)
264
+ - 27 agents, 20 commands, 12 skills, 2 MCP servers
265
+
266
+ ---
267
+
268
+ ## [2.20.0] - 2026-01-05
269
+
270
+ ### Added
271
+
272
+ - **`/feature-video` command** - Record video walkthroughs of features using Playwright
273
+
274
+ ### Changed
275
+
276
+ - **`create-agent-skills` skill** - Complete rewrite to match Anthropic's official skill specification
277
+
278
+ ### Removed
279
+
280
+ - **`dhh-ruby-style` skill** - Merged into `dhh-rails-style` skill
281
+
282
+ ---
283
+
284
+ ## [2.19.0] - 2025-12-31
285
+
286
+ ### Added
287
+
288
+ - **`/deepen-plan` command** - Power enhancement for plans. Takes an existing plan and runs parallel research sub-agents for each major section to add:
289
+ - Best practices and industry patterns
290
+ - Performance optimizations
291
+ - UI/UX improvements (if applicable)
292
+ - Quality enhancements and edge cases
293
+ - Real-world implementation examples
294
+
295
+ The result is a deeply grounded, production-ready plan with concrete implementation details.
296
+
297
+ ### Changed
298
+
299
+ - **`/workflows:plan` command** - Added `/deepen-plan` as option 2 in post-generation menu. Added note: if running with ultrathink enabled, automatically run deepen-plan for maximum depth.
300
+
301
+ ## [2.18.0] - 2025-12-25
302
+
303
+ ### Added
304
+
305
+ - **`agent-native-architecture` skill** - Added **Dynamic Capability Discovery** pattern and **Architecture Review Checklist**:
306
+
307
+ **New Patterns in mcp-tool-design.md:**
308
+ - **Dynamic Capability Discovery** - For external APIs (HealthKit, HomeKit, GraphQL), build a discovery tool (`list_*`) that returns available capabilities at runtime, plus a generic access tool that takes strings (not enums). The API validates, not your code. This means agents can use new API capabilities without code changes.
309
+ - **CRUD Completeness** - Every entity the agent can create must also be readable, updatable, and deletable. Incomplete CRUD = broken action parity.
310
+
311
+ **New in SKILL.md:**
312
+ - **Architecture Review Checklist** - Pushes reviewer findings earlier into the design phase. Covers tool design (dynamic vs static, CRUD completeness), action parity (capability map, edit/delete), UI integration (agent → UI communication), and context injection.
313
+ - **Option 11: API Integration** - New intake option for connecting to external APIs like HealthKit, HomeKit, GraphQL
314
+ - **New anti-patterns:** Static Tool Mapping (building individual tools for each API endpoint), Incomplete CRUD (create-only tools)
315
+ - **Tool Design Criteria** section added to success criteria checklist
316
+
317
+ **New in shared-workspace-architecture.md:**
318
+ - **iCloud File Storage for Multi-Device Sync** - Use iCloud Documents for your shared workspace to get free, automatic multi-device sync without building a sync layer. Includes implementation pattern, conflict handling, entitlements, and when NOT to use it.
319
+
320
+ ### Philosophy
321
+
322
+ This update codifies a key insight for **agent-native apps**: when integrating with external APIs where the agent should have the same access as the user, use **Dynamic Capability Discovery** instead of static tool mapping. Instead of building `read_steps`, `read_heart_rate`, `read_sleep`... build `list_health_types` + `read_health_data(dataType: string)`. The agent discovers what's available, the API validates the type.
323
+
324
+ Note: This pattern is specifically for agent-native apps following the "whatever the user can do, the agent can do" philosophy. For constrained agents with intentionally limited capabilities, static tool mapping may be appropriate.
325
+
326
+ ---
327
+
328
+ ## [2.17.0] - 2025-12-25
329
+
330
+ ### Enhanced
331
+
332
+ - **`agent-native-architecture` skill** - Major expansion based on real-world learnings from building the Every Reader iOS app. Added 5 new reference documents and expanded existing ones:
333
+
334
+ **New References:**
335
+ - **dynamic-context-injection.md** - How to inject runtime app state into agent system prompts. Covers context injection patterns, what context to inject (resources, activity, capabilities, vocabulary), implementation patterns for Swift/iOS and TypeScript, and context freshness.
336
+ - **action-parity-discipline.md** - Workflow for ensuring agents can do everything users can do. Includes capability mapping templates, parity audit process, PR checklists, tool design for parity, and context parity guidelines.
337
+ - **shared-workspace-architecture.md** - Patterns for agents and users working in the same data space. Covers directory structure, file tools, UI integration (file watching, shared stores), agent-user collaboration patterns, and security considerations.
338
+ - **agent-native-testing.md** - Testing patterns for agent-native apps. Includes "Can Agent Do It?" tests, the Surprise Test, automated parity testing, integration testing, and CI/CD integration.
339
+ - **mobile-patterns.md** - Mobile-specific patterns for iOS/Android. Covers background execution (checkpoint/resume), permission handling, cost-aware design (model tiers, token budgets, network awareness), offline handling, and battery awareness.
340
+
341
+ **Updated References:**
342
+ - **architecture-patterns.md** - Added 3 new patterns: Unified Agent Architecture (one orchestrator, many agent types), Agent-to-UI Communication (shared data store, file watching, event bus), and Model Tier Selection (fast/balanced/powerful).
343
+
344
+ **Updated Skill Root:**
345
+ - **SKILL.md** - Expanded intake menu (now 10 options including context injection, action parity, shared workspace, testing, mobile patterns). Added 5 new agent-native anti-patterns (Context Starvation, Orphan Features, Sandbox Isolation, Silent Actions, Capability Hiding). Expanded success criteria with agent-native and mobile-specific checklists.
346
+
347
+ - **`agent-native-reviewer` agent** - Significantly enhanced with comprehensive review process covering all new patterns. Now checks for action parity, context parity, shared workspace, tool design (primitives vs workflows), dynamic context injection, and mobile-specific concerns. Includes detailed anti-patterns, output format template, quick checks ("Write to Location" test, Surprise test), and mobile-specific verification.
348
+
349
+ ### Philosophy
350
+
351
+ These updates operationalize a key insight from building agent-native mobile apps: **"The agent should be able to do anything the user can do, through tools that mirror UI capabilities, with full context about the app state."** The failure case that prompted these changes: an agent asked "what reading feed?" when a user said "write something in my reading feed"—because it had no `publish_to_feed` tool and no context about what "feed" meant.
352
+
353
+ ## [2.16.0] - 2025-12-21
354
+
355
+ ### Enhanced
356
+
357
+ - **`dhh-rails-style` skill** - Massively expanded reference documentation incorporating patterns from Marc Köhlbrugge's Unofficial 37signals Coding Style Guide:
358
+ - **controllers.md** - Added authorization patterns, rate limiting, Sec-Fetch-Site CSRF protection, request context concerns
359
+ - **models.md** - Added validation philosophy, let it crash philosophy (bang methods), default values with lambdas, Rails 7.1+ patterns (normalizes, delegated types, store accessor), concern guidelines with touch chains
360
+ - **frontend.md** - Added Turbo morphing best practices, Turbo frames patterns, 6 new Stimulus controllers (auto-submit, dialog, local-time, etc.), Stimulus best practices, view helpers, caching with personalization, broadcasting patterns
361
+ - **architecture.md** - Added path-based multi-tenancy, database patterns (UUIDs, state as records, hard deletes, counter caches), background job patterns (transaction safety, error handling, batch processing), email patterns, security patterns (XSS, SSRF, CSP), Active Storage patterns
362
+ - **gems.md** - Added expanded what-they-avoid section (service objects, form objects, decorators, CSS preprocessors, React/Vue), testing philosophy with Minitest/fixtures patterns
363
+
364
+ ### Credits
365
+
366
+ - Reference patterns derived from [Marc Köhlbrugge's Unofficial 37signals Coding Style Guide](https://github.com/marckohlbrugge/unofficial-37signals-coding-style-guide)
367
+
368
+ ## [2.15.2] - 2025-12-21
369
+
370
+ ### Fixed
371
+
372
+ - **All skills** - Fixed spec compliance issues across 12 skills:
373
+ - Reference files now use proper markdown links (`[file.md](./references/file.md)`) instead of backtick text
374
+ - Descriptions now use third person ("This skill should be used when...") per skill-creator spec
375
+ - Affected skills: agent-native-architecture, andrew-kane-gem-writer, compound-docs, create-agent-skills, dhh-rails-style, dspy-ruby, every-style-editor, file-todos, frontend-design, gemini-imagegen
376
+
377
+ ### Added
378
+
379
+ - **CLAUDE.md** - Added Skill Compliance Checklist with validation commands for ensuring new skills meet spec requirements
380
+
381
+ ## [2.15.1] - 2025-12-18
382
+
383
+ ### Changed
384
+
385
+ - **`/workflows:review` command** - Section 7 now detects project type (Web, iOS, or Hybrid) and offers appropriate testing. Web projects get `/playwright-test`, iOS projects get `/xcode-test`, hybrid projects can run both.
386
+
387
+ ## [2.15.0] - 2025-12-18
388
+
389
+ ### Added
390
+
391
+ - **`/xcode-test` command** - Build and test iOS apps on simulator using XcodeBuildMCP. Automatically detects Xcode project, builds app, launches simulator, and runs test suite. Includes retries for flaky tests.
392
+
393
+ - **`/playwright-test` command** - Run Playwright browser tests on pages affected by current PR or branch. Detects changed files, maps to affected routes, generates/runs targeted tests, and reports results with screenshots.
@@ -0,0 +1,90 @@
1
+ # Compounding Engineering Plugin Development
2
+
3
+ ## Versioning Requirements
4
+
5
+ **IMPORTANT**: Every change to this plugin MUST include updates to all three files:
6
+
7
+ 1. **`.claude-plugin/plugin.json`** - Bump version using semver
8
+ 2. **`CHANGELOG.md`** - Document changes using Keep a Changelog format
9
+ 3. **`README.md`** - Verify/update component counts and tables
10
+
11
+ ### Version Bumping Rules
12
+
13
+ - **MAJOR** (1.0.0 → 2.0.0): Breaking changes, major reorganization
14
+ - **MINOR** (1.0.0 → 1.1.0): New agents, commands, or skills
15
+ - **PATCH** (1.0.0 → 1.0.1): Bug fixes, doc updates, minor improvements
16
+
17
+ ### Pre-Commit Checklist
18
+
19
+ Before committing ANY changes:
20
+
21
+ - [ ] Version bumped in `.claude-plugin/plugin.json`
22
+ - [ ] CHANGELOG.md updated with changes
23
+ - [ ] README.md component counts verified
24
+ - [ ] README.md tables accurate (agents, commands, skills)
25
+ - [ ] plugin.json description matches current counts
26
+
27
+ ### Directory Structure
28
+
29
+ ```
30
+ agents/
31
+ ├── review/ # Code review agents
32
+ ├── research/ # Research and analysis agents
33
+ ├── design/ # Design and UI agents
34
+ ├── workflow/ # Workflow automation agents
35
+ └── docs/ # Documentation agents
36
+
37
+ commands/
38
+ ├── workflows/ # Core workflow commands (workflows:plan, workflows:review, etc.)
39
+ └── *.md # Utility commands
40
+
41
+ skills/
42
+ └── *.md # All skills at root level
43
+ ```
44
+
45
+ ## Command Naming Convention
46
+
47
+ **Workflow commands** use `workflows:` prefix to avoid collisions with built-in commands:
48
+ - `/workflows:plan` - Create implementation plans
49
+ - `/workflows:review` - Run comprehensive code reviews
50
+ - `/workflows:work` - Execute work items systematically
51
+ - `/workflows:compound` - Document solved problems
52
+
53
+ **Why `workflows:`?** Claude Code has built-in `/plan` and `/review` commands. Using `name: workflows:plan` in frontmatter creates a unique `/workflows:plan` command with no collision.
54
+
55
+ ## Skill Compliance Checklist
56
+
57
+ When adding or modifying skills, verify compliance with skill-creator spec:
58
+
59
+ ### YAML Frontmatter (Required)
60
+
61
+ - [ ] `name:` present and matches directory name (lowercase-with-hyphens)
62
+ - [ ] `description:` present and uses **third person** ("This skill should be used when..." NOT "Use this skill when...")
63
+
64
+ ### Reference Links (Required if references/ exists)
65
+
66
+ - [ ] All files in `references/` are linked as `[filename.md](./references/filename.md)`
67
+ - [ ] All files in `assets/` are linked as `[filename](./assets/filename)`
68
+ - [ ] All files in `scripts/` are linked as `[filename](./scripts/filename)`
69
+ - [ ] No bare backtick references like `` `references/file.md` `` - use proper markdown links
70
+
71
+ ### Writing Style
72
+
73
+ - [ ] Use imperative/infinitive form (verb-first instructions)
74
+ - [ ] Avoid second person ("you should") - use objective language ("To accomplish X, do Y")
75
+
76
+ ### Quick Validation Command
77
+
78
+ ```bash
79
+ # Check for unlinked references in a skill
80
+ grep -E '`(references|assets|scripts)/[^`]+`' skills/*/SKILL.md
81
+ # Should return nothing if all refs are properly linked
82
+
83
+ # Check description format
84
+ grep -E '^description:' skills/*/SKILL.md | grep -v 'This skill'
85
+ # Should return nothing if all use third person
86
+ ```
87
+
88
+ ## Documentation
89
+
90
+ See `docs/solutions/plugin-versioning-requirements.md` for detailed versioning workflow.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Kieran Klaassen
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.