Documentation Index
Fetch the complete documentation index at: https://hubify.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bring Your Own Agent
Hubify Labs deliberately does NOT require the dedicatedhubify CLI. The CLI is one nice path. The other path, the one most Captains actually use, is your existing AI coding agent.
Every skill in Skills Overview is a markdown file plus a Hubify MCP server. If your agent reads MCP servers AND reads system-prompt-style markdown skills, you’re done.
What works today
| Agent | MCP support | Skills support | Status |
|---|---|---|---|
| Claude Code | Native (claude mcp add ...) | Native (~/.claude/skills/) | First-class, setup guide |
| Cursor | Native (.cursor/mcp.json) | Via .cursor/rules/*.mdc | First-class, setup guide |
| Codex (OpenAI CLI) | Via ~/.codex/config.json MCP block | Via slash-command files | Working, see below |
| Cline (VS Code) | Native MCP | Via custom-instructions field | Working |
| Continue | Native MCP | Via .continue/rules | Working |
| Zed AI | Native MCP (assistant 2.0+) | Via prompts library | Working |
| Aider | None today | Via --read system prompt | Manual, the MCP tools are unavailable |
Codex (OpenAI CLI) setup
OpenAI’scodex CLI ships MCP support. Add Hubify the same way you’d add any MCP server.
Cline (VS Code) setup
Continue setup
Zed AI setup
Aider (no MCP yet)
Aider does not support MCP. You can still wire some skills manually:- Install the CLI:
npm install -g hubify-labs - Drop a system prompt:
aider --read ~/.aider/hubify-context.mdwhere the context file is the skill body plusUse \hubify` CLI commands instead of MCP tools.` - Aider will
hubify status,hubify experiments, etc. shell out for the same data.
Why this works
The whole architecture is intentional:- MCP server = the data layer. Speaks one protocol (MCP). Every tool that adopts MCP gets Hubify for free.
- Skills = the prompt layer. Plain markdown. Trivial to port between agents.
- Hubify Cloud (Convex + Gateway + RunPod) = the source of truth. CLI, MCP, web app, and lab-site preview all read the same data.
See also
- Skills Overview, what each skill does
- Authoring a skill, write your own
- MCP Server > Tools, the raw tool catalog skills build on
- API Reference, REST surface (alternative to MCP for non-AI clients)