Skip to content

Commit 13d3170

Browse files
Merge branch 'claude/add-devtool-docs-01VWyrYPfQr5o2zAtZzYXhvu'
2 parents 3c729b3 + c057081 commit 13d3170

File tree

12 files changed

+9
-9
lines changed

12 files changed

+9
-9
lines changed

CLAUDE.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ This repository is a Claude Code plugin marketplace that distributes the `compou
88
every-marketplace/
99
├── .claude-plugin/
1010
│ └── marketplace.json # Marketplace catalog (lists available plugins)
11+
├── docs/ # Documentation site (GitHub Pages)
12+
│ ├── index.html # Landing page
13+
│ ├── css/ # Stylesheets
14+
│ ├── js/ # JavaScript
15+
│ └── pages/ # Reference pages
1116
└── plugins/
1217
└── compounding-engineering/ # The actual plugin
1318
├── .claude-plugin/
1419
│ └── plugin.json # Plugin metadata
1520
├── agents/ # 24 specialized AI agents
16-
├── commands/ # 13 slash commands (including /release-docs)
21+
├── commands/ # 13 slash commands
1722
├── skills/ # 11 skills
1823
├── mcp-servers/ # 2 MCP servers (playwright, context7)
19-
├── docs/ # Documentation site (static HTML/CSS/JS)
20-
│ ├── index.html # Landing page
21-
│ ├── css/ # Stylesheets (style.css, docs.css)
22-
│ ├── js/ # JavaScript (main.js)
23-
│ └── pages/ # Reference pages (agents, commands, skills, mcp-servers)
2424
├── README.md # Plugin documentation
2525
└── CHANGELOG.md # Version history
2626
```
@@ -189,7 +189,7 @@ Each plugin has its own plugin.json with detailed metadata:
189189

190190
## Documentation Site
191191

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.
192+
The documentation site is at `/docs` in the repository root (for GitHub Pages). This site is built with plain HTML/CSS/JS (based on Evil Martians' LaunchKit template) and requires no build step to view.
193193

194194
### Documentation Structure
195195

@@ -246,10 +246,10 @@ Since the docs are static HTML, you can view them directly:
246246

247247
```bash
248248
# Open in browser
249-
open plugins/compounding-engineering/docs/index.html
249+
open docs/index.html
250250

251251
# Or start a local server
252-
cd plugins/compounding-engineering/docs
252+
cd docs
253253
python -m http.server 8000
254254
# Then visit http://localhost:8000
255255
```

plugins/compounding-engineering/docs/css/docs.css renamed to docs/css/docs.css

File renamed without changes.

plugins/compounding-engineering/docs/css/style.css renamed to docs/css/style.css

File renamed without changes.

plugins/compounding-engineering/docs/index.html renamed to docs/index.html

File renamed without changes.

plugins/compounding-engineering/docs/js/main.js renamed to docs/js/main.js

File renamed without changes.

plugins/compounding-engineering/docs/pages/agents.html renamed to docs/pages/agents.html

File renamed without changes.

plugins/compounding-engineering/docs/pages/changelog.html renamed to docs/pages/changelog.html

File renamed without changes.

plugins/compounding-engineering/docs/pages/commands.html renamed to docs/pages/commands.html

File renamed without changes.

plugins/compounding-engineering/docs/pages/getting-started.html renamed to docs/pages/getting-started.html

File renamed without changes.

plugins/compounding-engineering/docs/pages/mcp-servers.html renamed to docs/pages/mcp-servers.html

File renamed without changes.

0 commit comments

Comments
 (0)