Generated: 2026-01-15 Version: 1.0.0
This directory contains the dropbox-skill, an optimized integration layer enabling AI agents to interact with Dropbook via the Model Context Protocol (MCP).
dropbox-skill/
├── SKILL.md # Master documentation & configuration
├── SKILL.json # Machine-readable definition for OpenCode
└── references/ # Legacy or auxiliary docs
└── mcp-setup.md
| Task | Location |
|---|---|
| Install/Setup | SKILL.md (Setup section) |
| Tool Definitions | SKILL.json (for programmatic import) |
| Usage Examples | SKILL.md (CLI & JSON-RPC examples) |
| Error Handling | SKILL.md (Troubleshooting table) |
- Single Source of Truth:
SKILL.mdis the primary documentation.SKILL.jsonmirrors it for tooling. - Telegraphic Style: Documentation should be concise, using tables and code blocks over prose.
- JSON-RPC Format: All MCP tool examples MUST follow the strict JSON-RPC 2.0 structure.
- Do Not Modify
SKILL.jsonManually: Ensure it stays in sync withSKILL.mddescriptions. - No Hardcoded Tokens: Instructions MUST use environment variable placeholders (e.g.,
"${DROPBOX_APP_KEY}"), never actual keys. - Avoid "Chatty" Protocols: Use bulk operations where possible; explain rate limits in docs.
To add this skill to an agent:
- Reference
SKILL.jsonin the agent's capability manifest. - Point the MCP client configuration to the
dropbookexecutable built in the root directory.