Move docs to /docs for GitHub Pages

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 <noreply@anthropic.com>
This commit is contained in:
Kieran Klaassen
2025-11-26 15:40:37 -08:00
parent f63dab9fc0
commit c05708162c
12 changed files with 9 additions and 9 deletions

View File

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