Atoi plugins
Governed project work, from source truth to proof.
The public agent-plugin companion for Atoi.
What this repo is
atoi-plugins distributes portable Atoi skills and generated setup forClaude Code, Codex, and Cursor. It is an agent-plugin-companion whosecompanionOf product is atoi; it does not contain Atoi's backend, taskruntime, credentials, or product schema.
Every client connects through atoi mcp serve. The installed Atoi CLI ownsthe operator token and bridges local stdio to Atoi's authenticated MCPendpoint without placing credentials in this repository.
Install
Prerequisite
Install the Atoi product CLI, connect your operator identity once, and verify the governed bridge.
atoi account login
atoi mcp status --probe
Claude Code
Add the companion marketplace and install Atoi. The plugin starts the local credential-safe MCP bridge.
/plugin marketplace add creative-int/atoi-plugins
/plugin install atoi@atoi
Codex
Add the companion marketplace, then install Atoi from the plugin picker. The equivalent direct MCP configuration is shown below.
codex plugin marketplace add creative-int/atoi-plugins
[mcp_servers.atoi]
command = "atoi"
args = ["mcp", "serve"]
Cursor
Add the companion marketplace in Cursor, or place the equivalent MCP configuration in .cursor/mcp.json.
Cursor → Settings → Plugins → Add marketplace → creative-int/atoi-plugins
{
"mcpServers": {
"atoi": {
"command": "atoi",
"args": [
"mcp",
"serve"
]
}
}
}
Portable skills
Install the Atoi skills without a client plugin. This does not connect MCP by itself.
npx skills add creative-int/atoi-plugins
Included skills
atoi— complete MCP bridge guide: authentication, core tools, commonProject → Workspace → Task flows, proof review, and mutation guardrails.atoi-project-work— set up or inspect a Project and stable Workspace,then follow a governed Task through Result, Changes, Checks, and Proof.atoi-proof-review— review the authoritative change set and chooselocal apply or a proof-backed draft pull request without bypassingconfirmation or idempotency.
MCP surface
The governed v1 bridge exposes:
atoi_projectsatoi_workspaceatoi_tasks
The Atoi backend remains authoritative for every call. See theAtoi documentation for product concepts andsetup.
Develop
corepack [email protected] install
pnpm generate
pnpm smoke
pnpm verify
Generated files must never be hand-edited. Change atoi.config.ts, generate,smoke, and commit the resulting artifacts together.
License
MIT © creative-int