@agentrail-core/cli
v0.1.9
Published
Local source-available release candidate for the AgentRail task lifecycle API
Readme
AgentRail
AgentRail is a local-first control plane for coding agents. It gives agents one compact API for the project loop: issue intake, routing, assigned work, PR submission, CI, review feedback, and shipping.
The source-available repo is a self-managed single-instance runtime. It is built for local evaluation and self-hosting. The planned AgentRail Cloud product is the managed team/fleet layer for hosted connectors, shared run history, routing, wakes, SSO/RBAC, audit, dashboards, and reliability.
What Agents Get
- Assigned tasks with compact state and
availableActions. - Routing from GitHub or Linear issues to the right local agent.
- Retry-safe mutations through idempotency keys.
- CI and review summaries shaped for action instead of raw log replay.
- Real-time task events over SSE and webhooks.
- Local provider setup for GitHub, CircleCI, and Linear.
Quickstart
Prerequisites:
- Node.js 24 or newer.
npm.- Optional provider credentials if you want live GitHub, CircleCI, or Linear integration.
Install the CLI:
npm install -g @agentrail-core/cliInitialize AgentRail:
agentrail initYou can also run the first command without a global install:
npx @agentrail-core/cli initThe interactive setup writes local config under ~/.agentrail, creates the
local operator bootstrap, and can create your first local agent. It does not ask
you to hand-write API keys or edit a seed task store.
Start the local API:
agentrail server startIn another terminal, verify setup:
agentrail doctordoctor is the success gate. It checks the local API, agent credentials,
profile/routing state, and whether the current agent can see assigned work.
Telemetry
AgentRail sends anonymous product telemetry by default to improve setup, provider reliability, and agent lifecycle behavior. Telemetry goes to PostHog EU Cloud and uses an anonymous install ID.
Telemetry does not send source code, issue text, PR diffs, prompts, terminal logs, environment variables, secrets, tokens, or raw provider payloads.
agentrail telemetry status
agentrail telemetry off
agentrail telemetry onConnect Providers
Provider connections are optional and can be added after init.
agentrail provider connect github
agentrail provider connect circleci
# AgentRail will ask for the full CircleCI project slug, for example:
# circleci/<org-id>/<project-id>
agentrail provider connect linearInteractive provider setup asks for secrets in hidden prompts and writes them to
local env files. Non-interactive automation can still use environment variables
such as GITHUB_TOKEN, CIRCLECI_TOKEN, LINEAR_API_KEY, and webhook secrets.
provider connect finishes by running provider readiness, applying safe local
setup fixes, and reporting any remaining account or repo settings AgentRail
cannot change for you. provider test <provider> uses the same readiness check
as provider doctor <provider>; it is not just a token check.
GitHub setup also asks whether AgentRail should wait for code review before
shipping PRs. The default follows GitHub's own review signals, but you can
choose to always require an approval for AgentRail-created PRs or to skip
approval waits once CI is green.
CircleCI setup verifies project access, creates .circleci/config.yml when a
starter config is safe, and configures how AgentRail will obtain pipelines for
AgentRail branches. If automatic CircleCI branch builds are not available,
AgentRail uses the CircleCI pipeline-run API when the token can access a
pipeline definition.
Import a Linear issue into AgentRail after connecting Linear:
agentrail linear import ENG-123Imported provider issues go through the routing engine. If routing is not configured, AgentRail fails closed instead of silently creating unassigned work.
Work With Agents
Create or update local agent profiles:
agentrail agent create
agentrail agent update --agent-id agt_exampleInspect local config and connected repos:
agentrail config show
agentrail repo list
agentrail provider list
agentrail provider status
agentrail provider doctorRepair a task source if older imported data needs to be corrected:
agentrail task source repair --task-id tsk_... --file source-patch.jsonDocker
For a server-only smoke run:
docker compose up --buildThe API listens on http://127.0.0.1:3000 by default. CLI-assisted onboarding
is still the recommended path for a useful local setup because it creates local
agent, routing, and provider state.
Documentation
- Developer guide: local development, architecture, API contracts, SDK examples, and manual HTTP flows.
- SDK guide: how to use the TypeScript and Python clients against a local or hosted AgentRail API.
- Five-minute quick start: expanded onboarding notes and manual reference commands.
- Integration guide for Claude Code, Codex, and Cursor.
- Agent recipes.
- Cloud boundary.
- Task lifecycle OpenAPI.
- Intake routing OpenAPI.
- Intake routing architecture.
Development
Common repo commands:
git clone https://github.com/oxnw/agentrail.git
cd agentrail
npm install
npm link
npm run typecheck
npm test
npm run lint:openapiThe package exposes the agentrail binary:
agentrail --helpLicense
AgentRail is source-available software, not open source. See LICENSE.
