@every-env/compound-plugin 0.9.0 → 2.34.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +3 -3
- package/.github/workflows/publish.yml +20 -10
- package/.releaserc.json +31 -0
- package/AGENTS.md +6 -1
- package/CHANGELOG.md +76 -0
- package/CLAUDE.md +16 -3
- package/README.md +83 -16
- package/bun.lock +977 -0
- package/docs/plans/2026-02-14-feat-auto-detect-install-and-gemini-sync-plan.md +360 -0
- package/docs/plans/2026-02-25-feat-windsurf-global-scope-support-plan.md +627 -0
- package/docs/plans/2026-03-01-feat-ce-command-aliases-backwards-compatible-deprecation-plan.md +261 -0
- package/docs/plans/2026-03-01-fix-setup-skill-non-claude-llm-fallback-plan.md +140 -0
- package/docs/plans/2026-03-03-feat-sync-claude-mcp-all-supported-providers-plan.md +639 -0
- package/docs/plans/feature_opencode-commands-as-md-and-config-merge.md +574 -0
- package/docs/solutions/adding-converter-target-providers.md +693 -0
- package/docs/solutions/plugin-versioning-requirements.md +7 -3
- package/docs/specs/windsurf.md +477 -0
- package/package.json +10 -4
- package/plans/landing-page-launchkit-refresh.md +2 -2
- package/plugins/compound-engineering/.claude-plugin/plugin.json +2 -2
- package/plugins/compound-engineering/CHANGELOG.md +82 -1
- package/plugins/compound-engineering/CLAUDE.md +14 -7
- package/plugins/compound-engineering/README.md +10 -7
- package/plugins/compound-engineering/agents/research/git-history-analyzer.md +1 -1
- package/plugins/compound-engineering/agents/research/learnings-researcher.md +1 -1
- package/plugins/compound-engineering/agents/review/code-simplicity-reviewer.md +1 -1
- package/plugins/compound-engineering/commands/ce/brainstorm.md +145 -0
- package/plugins/compound-engineering/commands/ce/compound.md +240 -0
- package/plugins/compound-engineering/commands/ce/plan.md +636 -0
- package/plugins/compound-engineering/commands/ce/review.md +525 -0
- package/plugins/compound-engineering/commands/ce/work.md +470 -0
- package/plugins/compound-engineering/commands/create-agent-skill.md +1 -1
- package/plugins/compound-engineering/commands/deepen-plan.md +6 -6
- package/plugins/compound-engineering/commands/deploy-docs.md +1 -1
- package/plugins/compound-engineering/commands/feature-video.md +15 -6
- package/plugins/compound-engineering/commands/heal-skill.md +1 -1
- package/plugins/compound-engineering/commands/lfg.md +3 -3
- package/plugins/compound-engineering/commands/slfg.md +3 -3
- package/plugins/compound-engineering/commands/test-xcode.md +2 -2
- package/plugins/compound-engineering/commands/workflows/brainstorm.md +4 -123
- package/plugins/compound-engineering/commands/workflows/compound.md +4 -234
- package/plugins/compound-engineering/commands/workflows/plan.md +4 -562
- package/plugins/compound-engineering/commands/workflows/review.md +4 -522
- package/plugins/compound-engineering/commands/workflows/work.md +4 -448
- package/plugins/compound-engineering/skills/brainstorming/SKILL.md +3 -3
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/add-workflow.md +6 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/create-new-skill.md +6 -0
- package/plugins/compound-engineering/skills/document-review/SKILL.md +1 -1
- package/plugins/compound-engineering/skills/file-todos/SKILL.md +1 -1
- package/plugins/compound-engineering/skills/git-worktree/SKILL.md +5 -5
- package/plugins/compound-engineering/skills/proof/SKILL.md +185 -0
- package/plugins/compound-engineering/skills/resolve-pr-parallel/SKILL.md +1 -1
- package/plugins/compound-engineering/skills/setup/SKILL.md +8 -2
- package/src/commands/convert.ts +101 -24
- package/src/commands/install.ts +102 -45
- package/src/commands/sync.ts +43 -62
- package/src/converters/claude-to-openclaw.ts +240 -0
- package/src/converters/claude-to-opencode.ts +12 -10
- package/src/converters/claude-to-qwen.ts +238 -0
- package/src/converters/claude-to-windsurf.ts +205 -0
- package/src/index.ts +2 -1
- package/src/parsers/claude-home.ts +55 -3
- package/src/sync/codex.ts +38 -62
- package/src/sync/commands.ts +198 -0
- package/src/sync/copilot.ts +14 -36
- package/src/sync/droid.ts +50 -9
- package/src/sync/gemini.ts +135 -0
- package/src/sync/json-config.ts +47 -0
- package/src/sync/kiro.ts +49 -0
- package/src/sync/mcp-transports.ts +19 -0
- package/src/sync/openclaw.ts +18 -0
- package/src/sync/opencode.ts +10 -30
- package/src/sync/pi.ts +12 -36
- package/src/sync/qwen.ts +66 -0
- package/src/sync/registry.ts +141 -0
- package/src/sync/skills.ts +21 -0
- package/src/sync/windsurf.ts +59 -0
- package/src/targets/index.ts +60 -1
- package/src/targets/openclaw.ts +96 -0
- package/src/targets/opencode.ts +76 -10
- package/src/targets/qwen.ts +64 -0
- package/src/targets/windsurf.ts +104 -0
- package/src/types/kiro.ts +3 -1
- package/src/types/openclaw.ts +52 -0
- package/src/types/opencode.ts +7 -8
- package/src/types/qwen.ts +51 -0
- package/src/types/windsurf.ts +35 -0
- package/src/utils/codex-agents.ts +1 -1
- package/src/utils/detect-tools.ts +37 -0
- package/src/utils/files.ts +14 -0
- package/src/utils/resolve-output.ts +50 -0
- package/src/utils/secrets.ts +24 -0
- package/src/utils/symlink.ts +4 -6
- package/tests/claude-home.test.ts +46 -0
- package/tests/cli.test.ts +180 -0
- package/tests/converter.test.ts +43 -10
- package/tests/detect-tools.test.ts +119 -0
- package/tests/openclaw-converter.test.ts +200 -0
- package/tests/opencode-writer.test.ts +142 -5
- package/tests/qwen-converter.test.ts +238 -0
- package/tests/resolve-output.test.ts +131 -0
- package/tests/sync-codex.test.ts +64 -0
- package/tests/sync-copilot.test.ts +60 -4
- package/tests/sync-droid.test.ts +44 -4
- package/tests/sync-gemini.test.ts +160 -0
- package/tests/sync-kiro.test.ts +83 -0
- package/tests/sync-openclaw.test.ts +51 -0
- package/tests/sync-qwen.test.ts +75 -0
- package/tests/sync-windsurf.test.ts +89 -0
- package/tests/windsurf-converter.test.ts +573 -0
- package/tests/windsurf-writer.test.ts +359 -0
- package/docs/css/docs.css +0 -675
- package/docs/css/style.css +0 -2886
- package/docs/index.html +0 -1046
- package/docs/js/main.js +0 -225
- package/docs/pages/agents.html +0 -649
- package/docs/pages/changelog.html +0 -534
- package/docs/pages/commands.html +0 -523
- package/docs/pages/getting-started.html +0 -582
- package/docs/pages/mcp-servers.html +0 -409
- package/docs/pages/skills.html +0 -611
|
@@ -1,534 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en" class="theme-dark">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="utf-8" />
|
|
6
|
-
<title>Changelog - Compounding Engineering</title>
|
|
7
|
-
<meta content="Version history and release notes for the Compounding Engineering plugin." name="description" />
|
|
8
|
-
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
9
|
-
|
|
10
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
|
|
11
|
-
<link href="../css/style.css" rel="stylesheet" type="text/css" />
|
|
12
|
-
<link href="../css/docs.css" rel="stylesheet" type="text/css" />
|
|
13
|
-
<script src="../js/main.js" type="text/javascript" defer></script>
|
|
14
|
-
</head>
|
|
15
|
-
|
|
16
|
-
<body>
|
|
17
|
-
<div class="background-gradient"></div>
|
|
18
|
-
<div class="docs-layout">
|
|
19
|
-
<aside class="docs-sidebar">
|
|
20
|
-
<div class="sidebar-header">
|
|
21
|
-
<a href="../index.html" class="nav-brand">
|
|
22
|
-
<span class="logo-icon"><i class="fa-solid fa-layer-group"></i></span>
|
|
23
|
-
<span class="logo-text">CE Docs</span>
|
|
24
|
-
</a>
|
|
25
|
-
</div>
|
|
26
|
-
<nav class="sidebar-nav">
|
|
27
|
-
<div class="nav-section">
|
|
28
|
-
<h3>Getting Started</h3>
|
|
29
|
-
<ul>
|
|
30
|
-
<li><a href="getting-started.html">Installation</a></li>
|
|
31
|
-
</ul>
|
|
32
|
-
</div>
|
|
33
|
-
<div class="nav-section">
|
|
34
|
-
<h3>Reference</h3>
|
|
35
|
-
<ul>
|
|
36
|
-
<li><a href="agents.html">Agents (23)</a></li>
|
|
37
|
-
<li><a href="commands.html">Commands (13)</a></li>
|
|
38
|
-
<li><a href="skills.html">Skills (11)</a></li>
|
|
39
|
-
<li><a href="mcp-servers.html">MCP Servers (two)</a></li>
|
|
40
|
-
</ul>
|
|
41
|
-
</div>
|
|
42
|
-
<div class="nav-section">
|
|
43
|
-
<h3>Resources</h3>
|
|
44
|
-
<ul>
|
|
45
|
-
<li><a href="changelog.html" class="active">Changelog</a></li>
|
|
46
|
-
</ul>
|
|
47
|
-
</div>
|
|
48
|
-
<div class="nav-section">
|
|
49
|
-
<h3>On This Page</h3>
|
|
50
|
-
<ul>
|
|
51
|
-
<li><a href="#v2.32.2">v2.32.2</a></li>
|
|
52
|
-
<li><a href="#v2.32.1">v2.32.1</a></li>
|
|
53
|
-
<li><a href="#v2.6.0">v2.6.0</a></li>
|
|
54
|
-
<li><a href="#v2.5.0">v2.5.0</a></li>
|
|
55
|
-
<li><a href="#v2.4.1">v2.4.1</a></li>
|
|
56
|
-
<li><a href="#v2.4.0">v2.4.0</a></li>
|
|
57
|
-
<li><a href="#v2.3.0">v2.3.0</a></li>
|
|
58
|
-
<li><a href="#v2.2.1">v2.2.1</a></li>
|
|
59
|
-
<li><a href="#v2.2.0">v2.2.0</a></li>
|
|
60
|
-
<li><a href="#v2.1.0">v2.1.0</a></li>
|
|
61
|
-
<li><a href="#v2.0.0">v2.0.0</a></li>
|
|
62
|
-
<li><a href="#v1.1.0">v1.1.0</a></li>
|
|
63
|
-
<li><a href="#v1.0.0">v1.0.0</a></li>
|
|
64
|
-
</ul>
|
|
65
|
-
</div>
|
|
66
|
-
</nav>
|
|
67
|
-
</aside>
|
|
68
|
-
|
|
69
|
-
<main class="docs-content">
|
|
70
|
-
<div class="docs-header">
|
|
71
|
-
<nav class="breadcrumb">
|
|
72
|
-
<a href="../index.html">Home</a>
|
|
73
|
-
<span>/</span>
|
|
74
|
-
<a href="getting-started.html">Docs</a>
|
|
75
|
-
<span>/</span>
|
|
76
|
-
<span>Changelog</span>
|
|
77
|
-
</nav>
|
|
78
|
-
<button class="mobile-menu-toggle" data-sidebar-toggle>
|
|
79
|
-
<i class="fa-solid fa-bars"></i>
|
|
80
|
-
</button>
|
|
81
|
-
</div>
|
|
82
|
-
|
|
83
|
-
<article class="docs-article">
|
|
84
|
-
<h1><i class="fa-solid fa-clock-rotate-left color-accent"></i> Changelog</h1>
|
|
85
|
-
<p class="lead">
|
|
86
|
-
All notable changes to the compound-engineering plugin. This project follows
|
|
87
|
-
<a href="https://semver.org/">Semantic Versioning</a> and
|
|
88
|
-
<a href="https://keepachangelog.com/">Keep a Changelog</a> conventions.
|
|
89
|
-
</p>
|
|
90
|
-
|
|
91
|
-
<!-- Version 2.32.2 -->
|
|
92
|
-
<section id="v2.32.2" class="version-section">
|
|
93
|
-
<div class="version-header">
|
|
94
|
-
<h2>v2.32.2</h2>
|
|
95
|
-
<span class="version-date">2026-02-12</span>
|
|
96
|
-
</div>
|
|
97
|
-
|
|
98
|
-
<div class="changelog-category changed">
|
|
99
|
-
<h3><i class="fa-solid fa-arrows-rotate"></i> Changed</h3>
|
|
100
|
-
<ul>
|
|
101
|
-
<li>
|
|
102
|
-
<strong><code>/release-docs</code> command moved from plugin to local <code>.claude/commands/</code></strong> -
|
|
103
|
-
This is a repository maintenance command and should not be distributed to users. Command count reduced from 24 to 23.
|
|
104
|
-
</li>
|
|
105
|
-
</ul>
|
|
106
|
-
</div>
|
|
107
|
-
</section>
|
|
108
|
-
|
|
109
|
-
<!-- Version 2.32.1 -->
|
|
110
|
-
<section id="v2.32.1" class="version-section">
|
|
111
|
-
<div class="version-header">
|
|
112
|
-
<h2>v2.32.1</h2>
|
|
113
|
-
<span class="version-date">2026-02-12</span>
|
|
114
|
-
</div>
|
|
115
|
-
|
|
116
|
-
<div class="changelog-category changed">
|
|
117
|
-
<h3><i class="fa-solid fa-arrows-rotate"></i> Changed</h3>
|
|
118
|
-
<ul>
|
|
119
|
-
<li>
|
|
120
|
-
<strong><code>/workflows:review</code> command</strong> - Added <code>learnings-researcher</code>
|
|
121
|
-
agent to the parallel review phase. The review now searches <code>docs/solutions/</code> for past
|
|
122
|
-
issues related to the PR's modules and patterns, surfacing "Known Pattern" findings during synthesis.
|
|
123
|
-
</li>
|
|
124
|
-
</ul>
|
|
125
|
-
</div>
|
|
126
|
-
</section>
|
|
127
|
-
|
|
128
|
-
<!-- Version 2.6.0 -->
|
|
129
|
-
<section id="v2.6.0" class="version-section">
|
|
130
|
-
<div class="version-header">
|
|
131
|
-
<h2>v2.6.0</h2>
|
|
132
|
-
<span class="version-date">2024-11-26</span>
|
|
133
|
-
</div>
|
|
134
|
-
|
|
135
|
-
<div class="changelog-category removed">
|
|
136
|
-
<h3><i class="fa-solid fa-minus"></i> Removed</h3>
|
|
137
|
-
<ul>
|
|
138
|
-
<li>
|
|
139
|
-
<strong><code>feedback-codifier</code> agent</strong> - Removed from workflow agents.
|
|
140
|
-
Agent count reduced from 24 to 23.
|
|
141
|
-
</li>
|
|
142
|
-
</ul>
|
|
143
|
-
</div>
|
|
144
|
-
</section>
|
|
145
|
-
|
|
146
|
-
<!-- Version 2.5.0 -->
|
|
147
|
-
<section id="v2.5.0" class="version-section">
|
|
148
|
-
<div class="version-header">
|
|
149
|
-
<h2>v2.5.0</h2>
|
|
150
|
-
<span class="version-date">2024-11-25</span>
|
|
151
|
-
</div>
|
|
152
|
-
|
|
153
|
-
<div class="changelog-category added">
|
|
154
|
-
<h3><i class="fa-solid fa-plus"></i> Added</h3>
|
|
155
|
-
<ul>
|
|
156
|
-
<li>
|
|
157
|
-
<strong><code>/report-bug</code> command</strong> - New slash command for reporting bugs in the
|
|
158
|
-
compound-engineering plugin. Provides a structured workflow that gathers bug information
|
|
159
|
-
through guided questions, collects environment details automatically, and creates a GitHub
|
|
160
|
-
issue in the EveryInc/compound-engineering-plugin repository.
|
|
161
|
-
</li>
|
|
162
|
-
</ul>
|
|
163
|
-
</div>
|
|
164
|
-
</section>
|
|
165
|
-
|
|
166
|
-
<!-- Version 2.4.1 -->
|
|
167
|
-
<section id="v2.4.1" class="version-section">
|
|
168
|
-
<div class="version-header">
|
|
169
|
-
<h2>v2.4.1</h2>
|
|
170
|
-
<span class="version-date">2024-11-24</span>
|
|
171
|
-
</div>
|
|
172
|
-
|
|
173
|
-
<div class="changelog-category improved">
|
|
174
|
-
<h3><i class="fa-solid fa-arrow-up"></i> Improved</h3>
|
|
175
|
-
<ul>
|
|
176
|
-
<li>
|
|
177
|
-
<strong>design-iterator agent</strong> - Added focused screenshot guidance: always capture
|
|
178
|
-
only the target element/area instead of full page screenshots. Includes browser_resize
|
|
179
|
-
recommendations, element-targeted screenshot workflow using browser_snapshot refs, and
|
|
180
|
-
explicit instruction to never use fullPage mode.
|
|
181
|
-
</li>
|
|
182
|
-
</ul>
|
|
183
|
-
</div>
|
|
184
|
-
</section>
|
|
185
|
-
|
|
186
|
-
<!-- Version 2.4.0 -->
|
|
187
|
-
<section id="v2.4.0" class="version-section">
|
|
188
|
-
<div class="version-header">
|
|
189
|
-
<h2>v2.4.0</h2>
|
|
190
|
-
<span class="version-date">2024-11-24</span>
|
|
191
|
-
</div>
|
|
192
|
-
|
|
193
|
-
<div class="changelog-category fixed">
|
|
194
|
-
<h3><i class="fa-solid fa-bug"></i> Fixed</h3>
|
|
195
|
-
<ul>
|
|
196
|
-
<li>
|
|
197
|
-
<strong>MCP Configuration</strong> - Moved MCP servers back to <code>plugin.json</code>
|
|
198
|
-
following working examples from anthropics/life-sciences plugins.
|
|
199
|
-
</li>
|
|
200
|
-
<li>
|
|
201
|
-
<strong>Context7 URL</strong> - Updated to use HTTP type with correct endpoint URL.
|
|
202
|
-
</li>
|
|
203
|
-
</ul>
|
|
204
|
-
</div>
|
|
205
|
-
</section>
|
|
206
|
-
|
|
207
|
-
<!-- Version 2.3.0 -->
|
|
208
|
-
<section id="v2.3.0" class="version-section">
|
|
209
|
-
<div class="version-header">
|
|
210
|
-
<h2>v2.3.0</h2>
|
|
211
|
-
<span class="version-date">2024-11-24</span>
|
|
212
|
-
</div>
|
|
213
|
-
|
|
214
|
-
<div class="changelog-category changed">
|
|
215
|
-
<h3><i class="fa-solid fa-arrows-rotate"></i> Changed</h3>
|
|
216
|
-
<ul>
|
|
217
|
-
<li>
|
|
218
|
-
<strong>MCP Configuration</strong> - Moved MCP servers from inline <code>plugin.json</code>
|
|
219
|
-
to separate <code>.mcp.json</code> file per Claude Code best practices.
|
|
220
|
-
</li>
|
|
221
|
-
</ul>
|
|
222
|
-
</div>
|
|
223
|
-
</section>
|
|
224
|
-
|
|
225
|
-
<!-- Version 2.2.1 -->
|
|
226
|
-
<section id="v2.2.1" class="version-section">
|
|
227
|
-
<div class="version-header">
|
|
228
|
-
<h2>v2.2.1</h2>
|
|
229
|
-
<span class="version-date">2024-11-24</span>
|
|
230
|
-
</div>
|
|
231
|
-
|
|
232
|
-
<div class="changelog-category fixed">
|
|
233
|
-
<h3><i class="fa-solid fa-bug"></i> Fixed</h3>
|
|
234
|
-
<ul>
|
|
235
|
-
<li>
|
|
236
|
-
<strong>Playwright MCP Server</strong> - Added missing <code>"type": "stdio"</code> field
|
|
237
|
-
required for MCP server configuration to load properly.
|
|
238
|
-
</li>
|
|
239
|
-
</ul>
|
|
240
|
-
</div>
|
|
241
|
-
</section>
|
|
242
|
-
|
|
243
|
-
<!-- Version 2.2.0 -->
|
|
244
|
-
<section id="v2.2.0" class="version-section">
|
|
245
|
-
<div class="version-header">
|
|
246
|
-
<h2>v2.2.0</h2>
|
|
247
|
-
<span class="version-date">2024-11-24</span>
|
|
248
|
-
</div>
|
|
249
|
-
|
|
250
|
-
<div class="changelog-category added">
|
|
251
|
-
<h3><i class="fa-solid fa-plus"></i> Added</h3>
|
|
252
|
-
<ul>
|
|
253
|
-
<li>
|
|
254
|
-
<strong>Context7 MCP Server</strong> - Bundled Context7 for instant framework documentation
|
|
255
|
-
lookup. Provides up-to-date docs for Rails, React, Next.js, and more than 100 other frameworks.
|
|
256
|
-
</li>
|
|
257
|
-
</ul>
|
|
258
|
-
</div>
|
|
259
|
-
</section>
|
|
260
|
-
|
|
261
|
-
<!-- Version 2.1.0 -->
|
|
262
|
-
<section id="v2.1.0" class="version-section">
|
|
263
|
-
<div class="version-header">
|
|
264
|
-
<h2>v2.1.0</h2>
|
|
265
|
-
<span class="version-date">2024-11-24</span>
|
|
266
|
-
</div>
|
|
267
|
-
|
|
268
|
-
<div class="changelog-category added">
|
|
269
|
-
<h3><i class="fa-solid fa-plus"></i> Added</h3>
|
|
270
|
-
<ul>
|
|
271
|
-
<li>
|
|
272
|
-
<strong>Playwright MCP Server</strong> - Bundled <code>@playwright/mcp</code> for browser
|
|
273
|
-
automation across all projects. Provides screenshot, navigation, click, fill, and evaluate tools.
|
|
274
|
-
</li>
|
|
275
|
-
</ul>
|
|
276
|
-
</div>
|
|
277
|
-
|
|
278
|
-
<div class="changelog-category changed">
|
|
279
|
-
<h3><i class="fa-solid fa-arrows-rotate"></i> Changed</h3>
|
|
280
|
-
<ul>
|
|
281
|
-
<li>Replaced all Puppeteer references with Playwright across agents and commands:
|
|
282
|
-
<ul>
|
|
283
|
-
<li><code>bug-reproduction-validator</code> agent</li>
|
|
284
|
-
<li><code>design-iterator</code> agent</li>
|
|
285
|
-
<li><code>design-implementation-reviewer</code> agent</li>
|
|
286
|
-
<li><code>figma-design-sync</code> agent</li>
|
|
287
|
-
<li><code>generate_command</code> command</li>
|
|
288
|
-
</ul>
|
|
289
|
-
</li>
|
|
290
|
-
</ul>
|
|
291
|
-
</div>
|
|
292
|
-
</section>
|
|
293
|
-
|
|
294
|
-
<!-- Version 2.0.2 -->
|
|
295
|
-
<section id="v2.0.2" class="version-section">
|
|
296
|
-
<div class="version-header">
|
|
297
|
-
<h2>v2.0.2</h2>
|
|
298
|
-
<span class="version-date">2024-11-24</span>
|
|
299
|
-
</div>
|
|
300
|
-
|
|
301
|
-
<div class="changelog-category changed">
|
|
302
|
-
<h3><i class="fa-solid fa-arrows-rotate"></i> Changed</h3>
|
|
303
|
-
<ul>
|
|
304
|
-
<li>
|
|
305
|
-
<strong>design-iterator agent</strong> - Updated description to emphasize proactive usage
|
|
306
|
-
when design work isn't coming together on first attempt.
|
|
307
|
-
</li>
|
|
308
|
-
</ul>
|
|
309
|
-
</div>
|
|
310
|
-
</section>
|
|
311
|
-
|
|
312
|
-
<!-- Version 2.0.1 -->
|
|
313
|
-
<section id="v2.0.1" class="version-section">
|
|
314
|
-
<div class="version-header">
|
|
315
|
-
<h2>v2.0.1</h2>
|
|
316
|
-
<span class="version-date">2024-11-24</span>
|
|
317
|
-
</div>
|
|
318
|
-
|
|
319
|
-
<div class="changelog-category added">
|
|
320
|
-
<h3><i class="fa-solid fa-plus"></i> Added</h3>
|
|
321
|
-
<ul>
|
|
322
|
-
<li><strong>CLAUDE.md</strong> - Project instructions with versioning requirements</li>
|
|
323
|
-
<li><strong>docs/solutions/plugin-versioning-requirements.md</strong> - Workflow documentation</li>
|
|
324
|
-
</ul>
|
|
325
|
-
</div>
|
|
326
|
-
</section>
|
|
327
|
-
|
|
328
|
-
<!-- Version 2.0.0 -->
|
|
329
|
-
<section id="v2.0.0" class="version-section">
|
|
330
|
-
<div class="version-header">
|
|
331
|
-
<h2>v2.0.0</h2>
|
|
332
|
-
<span class="version-date">2024-11-24</span>
|
|
333
|
-
<span class="version-badge major">Major Release</span>
|
|
334
|
-
</div>
|
|
335
|
-
|
|
336
|
-
<p class="version-description">
|
|
337
|
-
Major reorganization consolidating agents, commands, and skills from multiple sources into
|
|
338
|
-
a single, well-organized plugin.
|
|
339
|
-
</p>
|
|
340
|
-
|
|
341
|
-
<div class="changelog-category added">
|
|
342
|
-
<h3><i class="fa-solid fa-plus"></i> Added</h3>
|
|
343
|
-
|
|
344
|
-
<h4>New Agents (seven)</h4>
|
|
345
|
-
<ul>
|
|
346
|
-
<li><code>design-iterator</code> - Iteratively refine UI components through systematic design iterations</li>
|
|
347
|
-
<li><code>design-implementation-reviewer</code> - Verify UI implementations match Figma design specifications</li>
|
|
348
|
-
<li><code>figma-design-sync</code> - Synchronize web implementations with Figma designs</li>
|
|
349
|
-
<li><code>bug-reproduction-validator</code> - Systematically reproduce and validate bug reports</li>
|
|
350
|
-
<li><code>spec-flow-analyzer</code> - Analyze user flows and identify gaps in specifications</li>
|
|
351
|
-
<li><code>lint</code> - Run linting and code quality checks on Ruby and ERB files</li>
|
|
352
|
-
<li><code>ankane-readme-writer</code> - Create READMEs following Ankane-style template for Ruby gems</li>
|
|
353
|
-
</ul>
|
|
354
|
-
|
|
355
|
-
<h4>New Commands (nine)</h4>
|
|
356
|
-
<ul>
|
|
357
|
-
<li><code>/changelog</code> - Create engaging changelogs for recent merges</li>
|
|
358
|
-
<li><code>/plan_review</code> - Multi-agent plan review in parallel</li>
|
|
359
|
-
<li><code>/resolve_parallel</code> - Resolve TODO comments in parallel</li>
|
|
360
|
-
<li><code>/resolve_pr_parallel</code> - Resolve PR comments in parallel</li>
|
|
361
|
-
<li><code>/reproduce-bug</code> - Reproduce bugs using logs and console</li>
|
|
362
|
-
<li><code>/prime</code> - Prime/setup command</li>
|
|
363
|
-
<li><code>/create-agent-skill</code> - Create or edit Claude Code skills</li>
|
|
364
|
-
<li><code>/heal-skill</code> - Fix skill documentation issues</li>
|
|
365
|
-
<li><code>/codify</code> - Document solved problems for knowledge base</li>
|
|
366
|
-
</ul>
|
|
367
|
-
|
|
368
|
-
<h4>New Skills (10)</h4>
|
|
369
|
-
<ul>
|
|
370
|
-
<li><code>andrew-kane-gem-writer</code> - Write Ruby gems following Andrew Kane's patterns</li>
|
|
371
|
-
<li><code>codify-docs</code> - Capture solved problems as categorized documentation</li>
|
|
372
|
-
<li><code>create-agent-skills</code> - Expert guidance for creating Claude Code skills</li>
|
|
373
|
-
<li><code>dhh-ruby-style</code> - Write Ruby/Rails code in DHH's 37signals style</li>
|
|
374
|
-
<li><code>dspy-ruby</code> - Build type-safe LLM applications with DSPy.rb</li>
|
|
375
|
-
<li><code>every-style-editor</code> - Review copy for Every's style guide compliance</li>
|
|
376
|
-
<li><code>file-todos</code> - File-based todo tracking system</li>
|
|
377
|
-
<li><code>frontend-design</code> - Create production-grade frontend interfaces</li>
|
|
378
|
-
<li><code>git-worktree</code> - Manage Git worktrees for parallel development</li>
|
|
379
|
-
<li><code>skill-creator</code> - Guide for creating effective Claude Code skills</li>
|
|
380
|
-
</ul>
|
|
381
|
-
</div>
|
|
382
|
-
|
|
383
|
-
<div class="changelog-category changed">
|
|
384
|
-
<h3><i class="fa-solid fa-arrows-rotate"></i> Changed</h3>
|
|
385
|
-
<h4>Agents Reorganized by Category</h4>
|
|
386
|
-
<ul>
|
|
387
|
-
<li><code>review/</code> (10 agents) - Code quality, security, performance reviewers</li>
|
|
388
|
-
<li><code>research/</code> (four agents) - Documentation, patterns, history analysis</li>
|
|
389
|
-
<li><code>design/</code> (three agents) - UI/design review and iteration</li>
|
|
390
|
-
<li><code>workflow/</code> (six agents) - PR resolution, bug validation, linting</li>
|
|
391
|
-
<li><code>docs/</code> (one agent) - README generation</li>
|
|
392
|
-
</ul>
|
|
393
|
-
</div>
|
|
394
|
-
|
|
395
|
-
<div class="version-summary">
|
|
396
|
-
<h4>Summary</h4>
|
|
397
|
-
<table>
|
|
398
|
-
<thead>
|
|
399
|
-
<tr>
|
|
400
|
-
<th>Component</th>
|
|
401
|
-
<th>v1.1.0</th>
|
|
402
|
-
<th>v2.0.0</th>
|
|
403
|
-
<th>Change</th>
|
|
404
|
-
</tr>
|
|
405
|
-
</thead>
|
|
406
|
-
<tbody>
|
|
407
|
-
<tr>
|
|
408
|
-
<td>Agents</td>
|
|
409
|
-
<td>17</td>
|
|
410
|
-
<td>24</td>
|
|
411
|
-
<td class="positive">+7</td>
|
|
412
|
-
</tr>
|
|
413
|
-
<tr>
|
|
414
|
-
<td>Commands</td>
|
|
415
|
-
<td>6</td>
|
|
416
|
-
<td>15</td>
|
|
417
|
-
<td class="positive">+9</td>
|
|
418
|
-
</tr>
|
|
419
|
-
<tr>
|
|
420
|
-
<td>Skills</td>
|
|
421
|
-
<td>1</td>
|
|
422
|
-
<td>11</td>
|
|
423
|
-
<td class="positive">+10</td>
|
|
424
|
-
</tr>
|
|
425
|
-
</tbody>
|
|
426
|
-
</table>
|
|
427
|
-
</div>
|
|
428
|
-
</section>
|
|
429
|
-
|
|
430
|
-
<!-- Version 1.1.0 -->
|
|
431
|
-
<section id="v1.1.0" class="version-section">
|
|
432
|
-
<div class="version-header">
|
|
433
|
-
<h2>v1.1.0</h2>
|
|
434
|
-
<span class="version-date">2024-11-22</span>
|
|
435
|
-
</div>
|
|
436
|
-
|
|
437
|
-
<div class="changelog-category added">
|
|
438
|
-
<h3><i class="fa-solid fa-plus"></i> Added</h3>
|
|
439
|
-
<ul>
|
|
440
|
-
<li>
|
|
441
|
-
<strong>gemini-imagegen Skill</strong>
|
|
442
|
-
<ul>
|
|
443
|
-
<li>Text-to-image generation with Google's Gemini API</li>
|
|
444
|
-
<li>Image editing and manipulation</li>
|
|
445
|
-
<li>Multi-turn refinement via chat interface</li>
|
|
446
|
-
<li>Multiple reference image composition (up to 14 images)</li>
|
|
447
|
-
<li>Model support: <code>gemini-2.5-flash-image</code> and <code>gemini-3-pro-image-preview</code></li>
|
|
448
|
-
</ul>
|
|
449
|
-
</li>
|
|
450
|
-
</ul>
|
|
451
|
-
</div>
|
|
452
|
-
|
|
453
|
-
<div class="changelog-category fixed">
|
|
454
|
-
<h3><i class="fa-solid fa-bug"></i> Fixed</h3>
|
|
455
|
-
<ul>
|
|
456
|
-
<li>Corrected component counts in documentation (17 agents, not 15)</li>
|
|
457
|
-
</ul>
|
|
458
|
-
</div>
|
|
459
|
-
</section>
|
|
460
|
-
|
|
461
|
-
<!-- Version 1.0.0 -->
|
|
462
|
-
<section id="v1.0.0" class="version-section">
|
|
463
|
-
<div class="version-header">
|
|
464
|
-
<h2>v1.0.0</h2>
|
|
465
|
-
<span class="version-date">2024-10-09</span>
|
|
466
|
-
<span class="version-badge">Initial Release</span>
|
|
467
|
-
</div>
|
|
468
|
-
|
|
469
|
-
<p class="version-description">
|
|
470
|
-
Initial release of the compound-engineering plugin.
|
|
471
|
-
</p>
|
|
472
|
-
|
|
473
|
-
<div class="changelog-category added">
|
|
474
|
-
<h3><i class="fa-solid fa-plus"></i> Added</h3>
|
|
475
|
-
|
|
476
|
-
<h4>17 Specialized Agents</h4>
|
|
477
|
-
|
|
478
|
-
<p><strong>Code Review (five)</strong></p>
|
|
479
|
-
<ul>
|
|
480
|
-
<li><code>kieran-rails-reviewer</code> - Rails code review with strict conventions</li>
|
|
481
|
-
<li><code>kieran-python-reviewer</code> - Python code review with quality standards</li>
|
|
482
|
-
<li><code>kieran-typescript-reviewer</code> - TypeScript code review</li>
|
|
483
|
-
<li><code>dhh-rails-reviewer</code> - Rails review from DHH's perspective</li>
|
|
484
|
-
<li><code>code-simplicity-reviewer</code> - Final pass for simplicity and minimalism</li>
|
|
485
|
-
</ul>
|
|
486
|
-
|
|
487
|
-
<p><strong>Analysis & Architecture (four)</strong></p>
|
|
488
|
-
<ul>
|
|
489
|
-
<li><code>architecture-strategist</code> - Architectural decisions and compliance</li>
|
|
490
|
-
<li><code>pattern-recognition-specialist</code> - Design pattern analysis</li>
|
|
491
|
-
<li><code>security-sentinel</code> - Security audits and vulnerability assessments</li>
|
|
492
|
-
<li><code>performance-oracle</code> - Performance analysis and optimization</li>
|
|
493
|
-
</ul>
|
|
494
|
-
|
|
495
|
-
<p><strong>Research (four)</strong></p>
|
|
496
|
-
<ul>
|
|
497
|
-
<li><code>framework-docs-researcher</code> - Framework documentation research</li>
|
|
498
|
-
<li><code>best-practices-researcher</code> - External best practices gathering</li>
|
|
499
|
-
<li><code>git-history-analyzer</code> - Git history and code evolution analysis</li>
|
|
500
|
-
<li><code>repo-research-analyst</code> - Repository structure and conventions</li>
|
|
501
|
-
</ul>
|
|
502
|
-
|
|
503
|
-
<p><strong>Workflow (three)</strong></p>
|
|
504
|
-
<ul>
|
|
505
|
-
<li><code>every-style-editor</code> - Every's style guide compliance</li>
|
|
506
|
-
<li><code>pr-comment-resolver</code> - PR comment resolution</li>
|
|
507
|
-
<li><code>feedback-codifier</code> - Feedback pattern codification</li>
|
|
508
|
-
</ul>
|
|
509
|
-
|
|
510
|
-
<h4>Six Slash Commands</h4>
|
|
511
|
-
<ul>
|
|
512
|
-
<li><code>/plan</code> - Create implementation plans</li>
|
|
513
|
-
<li><code>/review</code> - Comprehensive code reviews</li>
|
|
514
|
-
<li><code>/work</code> - Execute work items systematically</li>
|
|
515
|
-
<li><code>/triage</code> - Triage and prioritize issues</li>
|
|
516
|
-
<li><code>/resolve_todo_parallel</code> - Resolve TODOs in parallel</li>
|
|
517
|
-
<li><code>/generate_command</code> - Generate new slash commands</li>
|
|
518
|
-
</ul>
|
|
519
|
-
|
|
520
|
-
<h4>Infrastructure</h4>
|
|
521
|
-
<ul>
|
|
522
|
-
<li>MIT license</li>
|
|
523
|
-
<li>Plugin manifest (<code>plugin.json</code>)</li>
|
|
524
|
-
<li>Pre-configured permissions for Rails development</li>
|
|
525
|
-
</ul>
|
|
526
|
-
</div>
|
|
527
|
-
</section>
|
|
528
|
-
|
|
529
|
-
</article>
|
|
530
|
-
</main>
|
|
531
|
-
</div>
|
|
532
|
-
</body>
|
|
533
|
-
|
|
534
|
-
</html>
|