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
Codex (OpenAI CLI) setup
OpenAI’scodex CLI ships MCP support. Add Hubify the same way you’d add any MCP server.
1
Install the CLI
hubify mcp subcommand.2
Edit ~/.codex/config.json
3
Verify
Cline (VS Code) setup
1
Install the CLI
2
Add to Cline MCP settings
Open Cline > Settings > MCP Servers and add:
3
Add skill prompts
Cline doesn’t have a true slash-command system, but you can paste skill bodies into Custom Instructions and trigger them by phrase (“Run hubify-status”).
Continue setup
1
Install the CLI
2
Edit ~/.continue/config.yaml
3
Add skills to .continue/rules/
Continue reads
.continue/rules/*.md as system-prompt rules. Drop skills there; trigger by phrase.Zed AI setup
1
Install the CLI
2
Add to Zed settings
Open
~/.config/zed/settings.json:3
Add skills to Zed prompts library
Open the prompts library (cmd-shift-p > “open prompts library”) and paste skill bodies as new prompts.
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)