From c05708162c3c1c3cb041952b1c2243f192a25653 Mon Sep 17 00:00:00 2001 From: Kieran Klaassen Date: Wed, 26 Nov 2025 15:40:37 -0800 Subject: [PATCH] Move docs to /docs for GitHub Pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub Pages is configured to serve from /docs in main branch. Moved documentation site from plugins/compounding-engineering/docs/ to repository root /docs folder. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CLAUDE.md | 18 +++++++++--------- .../docs => docs}/css/docs.css | 0 .../docs => docs}/css/style.css | 0 .../docs => docs}/index.html | 0 .../docs => docs}/js/main.js | 0 .../docs => docs}/pages/agents.html | 0 .../docs => docs}/pages/changelog.html | 0 .../docs => docs}/pages/commands.html | 0 .../docs => docs}/pages/getting-started.html | 0 .../docs => docs}/pages/mcp-servers.html | 0 .../docs => docs}/pages/skills.html | 0 .../plugin-versioning-requirements.md | 0 12 files changed, 9 insertions(+), 9 deletions(-) rename {plugins/compounding-engineering/docs => docs}/css/docs.css (100%) rename {plugins/compounding-engineering/docs => docs}/css/style.css (100%) rename {plugins/compounding-engineering/docs => docs}/index.html (100%) rename {plugins/compounding-engineering/docs => docs}/js/main.js (100%) rename {plugins/compounding-engineering/docs => docs}/pages/agents.html (100%) rename {plugins/compounding-engineering/docs => docs}/pages/changelog.html (100%) rename {plugins/compounding-engineering/docs => docs}/pages/commands.html (100%) rename {plugins/compounding-engineering/docs => docs}/pages/getting-started.html (100%) rename {plugins/compounding-engineering/docs => docs}/pages/mcp-servers.html (100%) rename {plugins/compounding-engineering/docs => docs}/pages/skills.html (100%) rename {plugins/compounding-engineering/docs => docs}/solutions/plugin-versioning-requirements.md (100%) 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