送信

ChiefLab

@bdentech

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 tool chieflab_launch_product. Orchestrator: end-to-end launch loop composing post + email + landing + measure under one runId.
  • chieflab-post — primary tool chieflab_post. Single-channel publish: pass { channel, productUrl, goal }, returns one draft + one publishAction + reviewUrl.
  • chieflab-email — primary tool chieflab_send. Approval-gated email via Resend.
  • chieflab-measure — primary tool chieflab_measure. 24h post-launch readback: GA4 + Search Console + Zernio engagement + next-iteration brief.
  • chieflab-brain — primary tool chieflab_brain_read. Per-tenant memory: brand voice, repo facts, proof assets, channel performance.
  • chieflab-connect — primary tool chieflab_connect_provider. OAuth flow for connectors.

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>"
      }
    }
  }
}