Open execution contract for agents doing business work. 6 operators following one spec. Approval-gated, tenant-isolated, MIT. Reference at chieflab.io/spec/v0.1.
概要
ChiefLab is the open execution contract for agents doing business work. Any tool that follows the contract is an "operator." Stateless LLMs draft; operators close the loop — they hold OAuth tokens, enforce approval gates server-side, poll measurement APIs 24h after publish, persist tenant-scoped memory, and guarantee idempotency under retry.
Six conformant operators (live)
Each follows the v0.1 lifecycle: prepare → review → approve → execute → measure → remember.
chieflab-launch— primary toolchieflab_launch_product. Orchestrator: end-to-end launch loop composing post + email + landing + measure under one runId.chieflab-post— primary toolchieflab_post. Single-channel publish: pass{ channel, productUrl, goal }, returns one draft + one publishAction + reviewUrl.chieflab-email— primary toolchieflab_send. Approval-gated email via Resend.chieflab-measure— primary toolchieflab_measure. 24h post-launch readback: GA4 + Search Console + Zernio engagement + next-iteration brief.chieflab-brain— primary toolchieflab_brain_read. Per-tenant memory: brand voice, repo facts, proof assets, channel performance.chieflab-connect— primary toolchieflab_connect_provider. OAuth flow for connectors.
Install (hosted HTTP MCP — recommended)
Claude Code (one command):
claude mcp add --transport http chieflab https://api.chieflab.io/api/mcp \
--header "Authorization: Bearer <your-key>"
サーバー設定
{
"mcpServers": {
"chieflab": {
"url": "https://api.chieflab.io/api/mcp",
"headers": {
"Authorization": "Bearer clp_live_<your-key>"
}
}
}
}