mcp-web-agent-docs
Review and update agent documentation and skills in `./agents/` related to MCP-Web.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Review and update agent documentation and skills in `./agents/` related to MCP-Web.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | mcp-web-agent-docs |
| description | Review and update agent documentation and skills in `./agents/` related to MCP-Web. |
This skill provides guidance for keeping the agent documentation and skills in ./agents/ up to date.
agents/
├── AGENTS.md # High-level overview & navigation (symlinked to root)
├── README.md # Meta-documentation about the agents folder itself
└── skills/
├── mcp-web-agent-docs/ # THIS skill - meta documentation maintenance
│ └── SKILL.md
└── mcp-web/ # MCP-Web library usage skill
├── SKILL.md # Main skill document
├── examples.md # Complete code examples
└── api-reference-*.md # Per-package API documentation
The AGENTS.md file serves as the high-level entry point for AI agents working in this repository. It should:
AGENTS.md should be 50-100 lines - concise enough to fit in context without overwhelming.
The mcp-web skill (agents/skills/mcp-web/) provides detailed guidance for building MCP-Web applications.
examples.md - Complete, runnable code examplesapi-reference-*.md - Per-package API documentation:
api-reference-core.md - @mcp-web/core (MCPWeb class, state tools)api-reference-bridge.md - @mcp-web/bridge (MCPWebBridge class)api-reference-client.md - @mcp-web/client (MCP client for Claude)api-reference-integrations.md - Framework integrations (Jotai, React)api-reference-tools.md - Built-in tools (screenshot, DOM, Python)api-reference-decompose-zod-schema.md - Schema decomposition utilities@mcp-web/* packageBefore updating, read the current documentation:
agents/AGENTS.md
agents/skills/mcp-web/SKILL.md
Check that documentation matches actual implementation:
packages/*/src/index.tspackages/types/MCPWeb, MCPWebBridge, not alternatives)Current packages in the monorepo:
| Package | Path | Purpose |
|---|---|---|
@mcp-web/core | packages/core/ | Frontend library - MCPWeb class, state tools |
@mcp-web/bridge | packages/bridge/ | WebSocket/HTTP bridge server - MCPWebBridge class |
@mcp-web/client | packages/client/ | MCP client for Claude Desktop connection |
@mcp-web/react | packages/integrations/react/ | React hooks and components for state management |
@mcp-web/types | packages/types/ | Shared TypeScript types |
@mcp-web/decompose-zod-schema | packages/decompose-zod-schema/ | Zod schema decomposition utilities |
@mcp-web/tools | packages/tools/ | Reusable tool implementations |
The agents/ folder is the single source of truth. These symlinks expose it:
| Source | Symlink | Purpose |
|---|---|---|
agents/AGENTS.md | ./AGENTS.md | OpenCode, Codex, Cursor |
agents/AGENTS.md | ./CLAUDE.md | Claude Code |
agents/AGENTS.md | .github/copilot-instructions.md | GitHub Copilot |
agents/skills/ | .claude/skills/ | Claude Code skills |
agents/skills/ | .codex/skills/ | Codex CLI skills |
To recreate symlinks:
# From repo root
ln -sf agents/AGENTS.md AGENTS.md
ln -sf agents/AGENTS.md CLAUDE.md
ln -sf ../agents/AGENTS.md .github/copilot-instructions.md
ln -sf ../agents/skills .claude/skills
ln -sf ../agents/skills .codex/skills
Before finalizing documentation updates:
MCPWeb, MCPWebBridge)