diff --git a/CLAUDE.md b/CLAUDE.md index 2eee544..1921910 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -8,19 +8,19 @@ This repository is a Claude Code plugin marketplace that distributes the `compou every-marketplace/ ├── .claude-plugin/ │ └── marketplace.json # Marketplace catalog (lists available plugins) +├── docs/ # Documentation site (GitHub Pages) +│ ├── index.html # Landing page +│ ├── css/ # Stylesheets +│ ├── js/ # JavaScript +│ └── pages/ # Reference pages └── plugins/ └── compounding-engineering/ # The actual plugin ├── .claude-plugin/ │ └── plugin.json # Plugin metadata ├── agents/ # 24 specialized AI agents - ├── commands/ # 13 slash commands (including /release-docs) + ├── commands/ # 13 slash commands ├── skills/ # 11 skills ├── mcp-servers/ # 2 MCP servers (playwright, context7) - ├── docs/ # Documentation site (static HTML/CSS/JS) - │ ├── index.html # Landing page - │ ├── css/ # Stylesheets (style.css, docs.css) - │ ├── js/ # JavaScript (main.js) - │ └── pages/ # Reference pages (agents, commands, skills, mcp-servers) ├── README.md # Plugin documentation └── CHANGELOG.md # Version history ``` @@ -189,7 +189,7 @@ Each plugin has its own plugin.json with detailed metadata: ## Documentation Site -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. +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. ### Documentation Structure @@ -246,10 +246,10 @@ Since the docs are static HTML, you can view them directly: ```bash # Open in browser -open plugins/compounding-engineering/docs/index.html +open docs/index.html # Or start a local server -cd plugins/compounding-engineering/docs +cd docs python -m http.server 8000 # Then visit http://localhost:8000 ``` diff --git a/plugins/compounding-engineering/docs/css/docs.css b/docs/css/docs.css similarity index 100% rename from plugins/compounding-engineering/docs/css/docs.css rename to docs/css/docs.css diff --git a/plugins/compounding-engineering/docs/css/style.css b/docs/css/style.css similarity index 100% rename from plugins/compounding-engineering/docs/css/style.css rename to docs/css/style.css diff --git a/plugins/compounding-engineering/docs/index.html b/docs/index.html similarity index 100% rename from plugins/compounding-engineering/docs/index.html rename to docs/index.html diff --git a/plugins/compounding-engineering/docs/js/main.js b/docs/js/main.js similarity index 100% rename from plugins/compounding-engineering/docs/js/main.js rename to docs/js/main.js diff --git a/plugins/compounding-engineering/docs/pages/agents.html b/docs/pages/agents.html similarity index 100% rename from plugins/compounding-engineering/docs/pages/agents.html rename to docs/pages/agents.html diff --git a/plugins/compounding-engineering/docs/pages/changelog.html b/docs/pages/changelog.html similarity index 100% rename from plugins/compounding-engineering/docs/pages/changelog.html rename to docs/pages/changelog.html diff --git a/plugins/compounding-engineering/docs/pages/commands.html b/docs/pages/commands.html similarity index 100% rename from plugins/compounding-engineering/docs/pages/commands.html rename to docs/pages/commands.html diff --git a/plugins/compounding-engineering/docs/pages/getting-started.html b/docs/pages/getting-started.html similarity index 100% rename from plugins/compounding-engineering/docs/pages/getting-started.html rename to docs/pages/getting-started.html diff --git a/plugins/compounding-engineering/docs/pages/mcp-servers.html b/docs/pages/mcp-servers.html similarity index 100% rename from plugins/compounding-engineering/docs/pages/mcp-servers.html rename to docs/pages/mcp-servers.html diff --git a/plugins/compounding-engineering/docs/pages/skills.html b/docs/pages/skills.html similarity index 100% rename from plugins/compounding-engineering/docs/pages/skills.html rename to docs/pages/skills.html diff --git a/plugins/compounding-engineering/docs/solutions/plugin-versioning-requirements.md b/docs/solutions/plugin-versioning-requirements.md similarity index 100% rename from plugins/compounding-engineering/docs/solutions/plugin-versioning-requirements.md rename to docs/solutions/plugin-versioning-requirements.md