Dispatch tasks to any LLM (GLM, Codex, Gemini, Claude Code, DeepSeek, OpenRouter, or your own) from your AI coding host. Trinity runs as a skill in Claude Code and as a skill / plugin in Codex; providers run in the background as sub-agents or direct CLI calls. Sessions persist across turns. Health monitoring tells you if they're alive.
The name comes from 三位一体 — not a fixed count, but a philosophy: all AIs united, working together. Whoever runs Trinity is the Leader. Any external LLM with a CLI is a Member. Any host that can spawn sub-agents or shell out to a CLI can be the Leader.
This section is for LLM agents (Claude, GPT, Gemini, etc.) installing Trinity on behalf of a user.
You can install Trinity in one Bash call — no git clone required.
curl -fsSL https://raw.githubusercontent.com/frankyxhl/trinity/main/install.sh | bashThis downloads all skill files to ~/.claude/ and registers the seven default providers (glm, minimax, codex, gemini, openrouter, deepseek, claude-code) in ~/.claude/trinity.json. Expected output ends with:
Trinity 3.2.0 installed to ~/.claude/
If the command fails, check stderr for trinity-install: failed downloading <file> — that tells you exactly which file 404'd.
Trinity's skill (SKILL.md) is loaded by Claude Code at startup. The install takes effect after restart. Tell the user:
"Trinity is installed. Please restart Claude Code, then run
/trinity statusto confirm all providers are registered."
/trinity status
Expected output: glm, minimax, codex, gemini, openrouter, deepseek, and claude-code all show ✅ usable. If any show /trinity install <provider> to repair.
| Location | Contents |
|---|---|
~/.claude/skills/trinity/SKILL.md |
Trinity skill — loaded by Claude Code |
~/.claude/skills/trinity/scripts/ |
Python session/config/discover/install scripts |
~/.claude/agents/trinity-glm.md |
GLM worker agent |
~/.claude/agents/trinity-minimax.md |
MiniMax M3 worker agent |
~/.claude/agents/trinity-codex.md |
Codex worker agent |
~/.claude/agents/trinity-gemini.md |
Gemini worker agent |
~/.claude/agents/trinity-openrouter.md |
OpenRouter worker agent |
~/.claude/agents/trinity-deepseek.md |
DeepSeek V4 worker agent |
~/.claude/agents/trinity-claude-code.md |
Claude Code worker agent |
~/.claude/skills/trinity/bin/deepseek |
DeepSeek claude --dangerously-skip-permissions wrapper (env injection + key-file loader) |
~/.claude/skills/trinity/bin/openrouter |
OpenRouter wrapper (same shape) |
~/.claude/skills/trinity/bin/claude-code |
Isolated nested Claude Code wrapper (--model sonnet --effort high) |
~/.claude/trinity.json |
Global provider registry |
- Dispatch tasks to external LLMs running in the background — you keep working while they run
- Session continuity — each provider instance remembers its conversation across calls
- Provider auto-discovery — add new providers by dropping a config entry + agent file; no skill editing required
- Review presets — one keyword (
review,fast-review,deep-review) fans a task out to a configured provider set in parallel - Health monitoring — heartbeat checks tell you if agents are alive, stalled, or timed out
- Install command —
/trinity install codexsets up the CLI, agent file, config, and smoke test in one step - Plan mode — draw a sequence diagram, confirm, then auto-dispatch in dependency order
- Codex adapter — a terminal
trinity reviewthat runs the same multi-provider review without Claude Code
See CONTRIBUTING.md for local setup, test and lint commands, branch naming, PR expectations, and the release preparation flow.
curl -fsSL https://raw.githubusercontent.com/frankyxhl/trinity/main/install.sh | bashThis downloads all skill files directly to ~/.claude/ — no git clone required. To install a specific version:
curl -fsSL https://raw.githubusercontent.com/frankyxhl/trinity/main/install.sh | TRINITY_VERSION=3.2.0 bashOr, if you have the repo cloned:
make installUsing the install command (recommended):
/trinity install codex
/trinity install gemini
/trinity install glm
Each install command:
- Checks if the CLI is already in PATH
- If not, tries Homebrew → npm → pip in order
- Copies the agent template to
~/.claude/agents/trinity-<provider>.md - Registers the provider in
~/.claude/trinity.json - Runs a smoke test to verify everything works
- Rolls back atomically if any step fails
Wrapper-based providers (openrouter, deepseek, claude-code) don't have a package install path — they use small POSIX shell wrappers shipped in providers/bin/ and installed to ~/.claude/skills/trinity/bin/. openrouter and deepseek point the claude binary at Anthropic-compatible endpoints. claude-code starts an isolated nested Claude Code process with Trinity dispatch disabled, defaulting to --model sonnet --effort high. install.sh and make install set them up automatically; no ~/.zshrc edits required.
The Anthropic-compatible wrappers expect an API key, in this order of precedence:
- Environment variable —
DEEPSEEK_API_KEY/OPENROUTER_API_KEY - Key file —
~/.secrets/<provider>_api_keywith mode600(or400); the wrapper refuses anything more permissive
# Either set an env var in your shell rc:
export DEEPSEEK_API_KEY=sk-...
# Or write the key to a file (safer for unattended use):
mkdir -p ~/.secrets
echo "sk-..." > ~/.secrets/deepseek_api_key
chmod 600 ~/.secrets/deepseek_api_keyOr install manually:
# Codex
cp trinity/providers/codex.md ~/.claude/agents/trinity-codex.md
# Gemini
cp trinity/providers/gemini.md ~/.claude/agents/trinity-gemini.md
# GLM
cp trinity/providers/glm.md ~/.claude/agents/trinity-glm.md
# MiniMax M3
cp trinity/providers/minimax.md ~/.claude/agents/trinity-minimax.md
# OpenRouter
cp trinity/providers/openrouter.md ~/.claude/agents/trinity-openrouter.md
# DeepSeek V4
cp trinity/providers/deepseek.md ~/.claude/agents/trinity-deepseek.md
# Claude Code
cp trinity/providers/claude-code.md ~/.claude/agents/trinity-claude-code.md
# Wrapper bin scripts (deepseek + openrouter + claude-code)
mkdir -p ~/.claude/skills/trinity/bin
cp trinity/providers/bin/deepseek ~/.claude/skills/trinity/bin/deepseek
cp trinity/providers/bin/openrouter ~/.claude/skills/trinity/bin/openrouter
cp trinity/providers/bin/claude-code ~/.claude/skills/trinity/bin/claude-code
chmod +x ~/.claude/skills/trinity/bin/deepseek ~/.claude/skills/trinity/bin/openrouter ~/.claude/skills/trinity/bin/claude-codeThen create ~/.claude/trinity.json:
{
"providers": {
"codex": { "cli": "codex exec --skip-git-repo-check -m gpt-5.5", "installed": true },
"gemini": { "cli": "gemini -p", "installed": true },
"glm": { "cli": "droid exec --auto medium --model glm-5.1 --reasoning-effort high", "installed": true },
"minimax": { "cli": "droid exec --auto medium --model custom:MiniMax-M3", "installed": true },
"openrouter": { "cli": "/Users/<you>/.claude/skills/trinity/bin/openrouter -p", "installed": true },
"deepseek": { "cli": "/Users/<you>/.claude/skills/trinity/bin/deepseek -p", "installed": true },
"claude-code": { "cli": "/Users/<you>/.claude/skills/trinity/bin/claude-code -p", "installed": true }
},
"defaults": {
"heartbeat_interval": 120,
"timeout": { "tdd": 600, "review": 360, "general": 1200 }
}
}To use review presets via the Claude Code skill, add them to the same file:
{
"presets": {
"review": { "providers": ["glm", "gemini", "deepseek"], "optional_providers": ["codex", "claude-code"] },
"fast-review": { "providers": ["glm", "deepseek"] },
"deep-review": { "providers": ["glm", "gemini", "deepseek"], "optional_providers": ["codex", "claude-code"] }
},
"preset_aliases": { "r": "review", "fr": "fast-review", "dr": "deep-review" }
}Edit ~/.claude/trinity.json to set your preferred heartbeat interval and timeout thresholds. Per-project overrides go in .claude/trinity.json at the project root.
- Command Reference — all
/trinitysubcommands at a glance - Usage Guide — single dispatch, multi-provider parallel, named instances, review presets, plan mode, health monitoring, session management
- Codex Compatibility — terminal
trinity review, doctor health checks, live probes, PR update workflow, repo-local skill and plugin - Architecture — file layout, dispatch flow, key design decisions
- Adding a Provider — create an agent file, register in config, test
- Troubleshooting — common issues and solutions
trinity/SKILL.md— full skill specificationtrinity/providers/— built-in provider agent templatestrinity/CHANGELOG.md— full version history