You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .claude-plugin/marketplace.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@
11
11
"plugins": [
12
12
{
13
13
"name": "compounding-engineering",
14
-
"description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last. Includes 17 specialized agents, 6 commands, and 1 skill.",
15
-
"version": "1.1.0",
14
+
"description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last. Includes 23 specialized agents, 16 commands, and 11 skills.",
@@ -167,6 +187,73 @@ Each plugin has its own plugin.json with detailed metadata:
167
187
}
168
188
```
169
189
190
+
## Documentation Site
191
+
192
+
The plugin includes a static documentation site at `plugins/compounding-engineering/docs/`. This site is built with plain HTML/CSS/JS (based on Evil Martians' LaunchKit template) and requires no build step to view.
193
+
194
+
### Documentation Structure
195
+
196
+
```
197
+
docs/
198
+
├── index.html # Landing page with stats and philosophy
199
+
├── css/
200
+
│ ├── style.css # Main styles (LaunchKit-based)
201
+
│ └── docs.css # Documentation-specific styles
202
+
├── js/
203
+
│ └── main.js # Interactivity (theme toggle, mobile nav)
204
+
└── pages/
205
+
├── getting-started.html # Installation and quick start
206
+
├── agents.html # All 24 agents reference
207
+
├── commands.html # All 13 commands reference
208
+
├── skills.html # All 11 skills reference
209
+
├── mcp-servers.html # MCP servers reference
210
+
└── changelog.html # Version history
211
+
```
212
+
213
+
### Keeping Docs Up-to-Date
214
+
215
+
**IMPORTANT:** After ANY change to agents, commands, skills, or MCP servers, run:
216
+
217
+
```bash
218
+
claude /release-docs
219
+
```
220
+
221
+
This command:
222
+
1. Counts all current components
223
+
2. Reads all agent/command/skill/MCP files
224
+
3. Regenerates all reference pages
225
+
4. Updates stats on the landing page
226
+
5. Updates the changelog from CHANGELOG.md
227
+
6. Validates counts match across all files
228
+
229
+
### Manual Updates
230
+
231
+
If you need to update docs manually:
232
+
233
+
1.**Landing page stats** - Update the numbers in `docs/index.html`:
0 commit comments