- Rust 90%
- Python 6.5%
- Shell 1.5%
- PowerShell 1%
- JavaScript 0.6%
- Other 0.2%
|
All checks were successful
Release / meta-1 (push) Successful in 5s
Release / meta (push) Successful in 0s
Release / verify-1 (push) Successful in 16m47s
Release / verify (push) Successful in 0s
Release / macos (aarch64-apple-darwin) (push) Successful in 0s
Release / macos (x86_64-apple-darwin) (push) Successful in 0s
Release / windows (push) Successful in 0s
Release / linux (push) Successful in 0s
Release / build (push) Successful in 26m8s
Release / publish (push) Successful in 1m42s
|
||
|---|---|---|
| .cargo | ||
| .codetether | ||
| .codetether-diagnostics | ||
| .codetether-evidence | ||
| .forgejo/workflows | ||
| .github | ||
| archive/prds | ||
| benchmarks/codex-parity | ||
| crates | ||
| deploy/training-data | ||
| doc | ||
| docker | ||
| docs | ||
| evidence/spotless-author-conversation | ||
| examples | ||
| home/riley/spotlessbinco | ||
| kernels/sm75 | ||
| npm/codetether | ||
| policies | ||
| proto | ||
| script | ||
| scripts | ||
| src | ||
| tests | ||
| tools/trace-viewer | ||
| vendor | ||
| .claude-prompt.md | ||
| .claude-tui-batch1.md | ||
| .claude-tui-batch2.md | ||
| .codetether-todos.json | ||
| .dockerignore | ||
| .gitignore | ||
| AGENTS.md | ||
| build.rs | ||
| Cargo.lock | ||
| Cargo.toml | ||
| CHANGELOG.md | ||
| check_file_limits.sh | ||
| codex_tui_resume_issue.md | ||
| commit.sh | ||
| Dockerfile | ||
| Dockerfile.worker-prebuilt | ||
| Dockerfile.worker-tools | ||
| draft-seaburg-codetether-agent-provenance-00.pdf | ||
| enhancements.md | ||
| forgejo-cli | ||
| gap-bridge.md | ||
| gemini-backends-report.md | ||
| install.ps1 | ||
| install.sh | ||
| Jenkinsfile | ||
| latency-probe.mjs | ||
| Makefile | ||
| README.md | ||
| release.sh | ||
| RELEASE_NOTES.md | ||
| RELEASE_NOTES_v4.6.3.md | ||
| RELEASE_NOTES_v4.7.5.md | ||
| rust-toolchain.toml | ||
| rustyroad-bin | ||
| spotless-4453-target | ||
| update-vault.ps1 | ||
| wait-and-review.sh | ||
CodeTether Agent
CodeTether Agent is an A2A-native AI coding agent for terminal-first software
work. It ships as one Rust binary, codetether, and combines an interactive
TUI, one-shot prompts, persistent mux sessions, managed Git worktrees,
provider-backed model routing, MCP, A2A workers, swarm execution, and a
TetherScript plugin runtime.
What it is
CodeTether is built for developers who want an agent that can stay close to the repository and keep working across longer tasks:
- Interactive by default: running
codetetherstarts the TUI. - Scriptable when needed: use
codetether run "..."for one-shot work. - Session-oriented: mux sessions let you detach, reconnect, and steer work.
- Multi-agent capable: swarm, Ralph, Forage, and A2A cover autonomous and distributed workflows.
- Tool-aware: native tools, browser control, Windows automation, MCP, and TetherScript plugins run through the same agent runtime.
- Security-conscious: Vault-first provider secrets, mandatory server auth, audit logs, policy hooks, approvals, and managed worktree isolation are part of the normal operating model.
Install
The GitHub release installers are the preferred way to get the current binary. Registry packages can lag behind release assets.
Windows
Open PowerShell normally, not as Administrator:
irm https://raw.githubusercontent.com/rileyseaburg/codetether-agent/main/install.ps1 | iex
codetether --version
If the command is not found or resolves to an old binary, use Windows installation and PATH checks. To update only an existing Vault token, see update Vault on Windows.
Linux and macOS
curl -fsSL https://raw.githubusercontent.com/rileyseaburg/codetether-agent/main/install.sh | sh
command -v codetether
codetether --version
If the command is not found or resolves to an old binary, use Unix installation and PATH checks.
Cargo
cargo install codetether-agent
From a checkout:
git clone https://github.com/rileyseaburg/codetether-agent.git
cd codetether-agent
cargo install --path .
Optional features are explicit. The default feature set includes TetherScript. Local model, QUIC, and FIPS builds opt in separately:
cargo install --path . --features candle
cargo install --path . --features candle-cuda
cargo install --path . --features quic-transport
cargo install --path . --features fips
FIPS builds require CMake, Go, and a C compiler. See FIPS.
First run
Configure credentials before asking the agent to call a model. CodeTether loads provider secrets from HashiCorp Vault first; local environment fallbacks are for development convenience and can be disabled.
codetether vault --help
codetether auth --help
codetether models
Then start the interactive UI:
codetether
# or
codetether tui
For a single prompt:
codetether run "inspect this repository and summarize the main entry points"
For hardened deployments that must use Vault only:
export CODETETHER_DISABLE_ENV_FALLBACK=1
codetether serve
Credential guides:
Common commands
codetether # start the TUI
codetether tui # start the TUI explicitly
codetether run "..." # one-shot prompt
codetether models # list configured models
codetether mux --help # manage persistent mux sessions
codetether worktree --help # manage Git worktrees and editor integration
codetether serve --help # authenticated HTTP API server
codetether worker --help # A2A worker mode
codetether mcp --help # Model Context Protocol server/client
codetether browserctl --help
codetether windows --help
Autonomous and analysis commands:
codetether swarm --help # parallel sub-agent execution
codetether ralph --help # PRD-driven autonomous loop
codetether forage --help # OKR-guided opportunity scanner/executor
codetether okr --help # objectives and key results
codetether rlm --help # recursive large-content analysis
codetether search --help # routed grep/glob/web/memory/RLM search
codetether benchmark --help
Setup and operations commands:
codetether config --help
codetether auth --help
codetether vault --help
codetether approval --help
codetether connect --help
codetether pr --help
codetether cleanup --help
Feature areas
TUI and sessions
The TUI is the default front door for day-to-day work. Mux sessions make agent and shell work durable so you can disconnect, return, and steer later.
Docs:
Agents, A2A, MCP, and autonomy
CodeTether can run as an interactive local agent, an A2A worker, an MCP server/client, or an autonomous loop. Ralph works from PRDs; Forage selects work from OKRs; Swarm splits tasks across isolated workers.
Docs:
Tools and plugins
Native tools cover files, shell commands, browser control, Windows desktop/OCR, Git, worktrees, search, model calls, and approvals. TetherScript plugins add repeatable tools without changing or rebuilding Rust code.
Docs:
Local inference and specialized builds
Remote providers are the default path, but the crate also exposes opt-in local model features through Candle and Bonsai-oriented commands.
Docs:
Security model
CodeTether assumes credentials and tool execution need explicit boundaries:
- Provider secrets are Vault-first.
- HTTP server auth is mandatory except for
/health. - Audit events are append-only JSON Lines records.
- Policy checks can be enforced through OPA.
- Tool execution supports approvals and runtime policy.
- Agent work is isolated with managed worktrees where appropriate.
- FIPS builds can require the AWS-LC FIPS module at startup.
Start with Vault CLI, FIPS, and computer-use safety for operational details.
Development
This repository is a Rust workspace. The main crate publishes the codetether
binary and the codetether_agent library. Workspace crates include A2A worker
core, browser support, and RLM support.
Useful local checks:
cargo fmt
cargo test --doc
cargo test <focused_filter> --lib
./check_file_limits.sh
Avoid assuming all optional features work on every workstation. CUDA, local model, QUIC, and FIPS feature sets may require extra system toolchains.
Repository shape:
src/ main application, providers, tools, TUI, sessions, server, swarm
crates/ workspace support crates
docs/ installation, security, plugin, transport, and operations guides
vendor/ vendored build dependencies used by selected workflows
Documentation map
- Unix install
- Windows install
- Vault CLI
- Plugin pattern
- A2A public agents
- Native Bonsai
- FIPS
- Worktree lifecycle
- TUI rendering performance
License
MIT. See the package metadata in Cargo.toml.
