Skip to main content

AgentMachinist

AgentMachinist is a local-first, issue-to-reviewed-PR build pipeline for solo developers. It connects GitHub issues to Claude Code, OpenCode, Pi, or Codex, with a human-approved specification between planning and implementation.

issue + trigger label → spec commit → draft PR → SHA-bound approval
                    → implementation → test gate → read-only review
                    → ready PR → human merge

The controller—not the harness—owns commits, pushes, PR transitions, and task records. AgentMachinist never merges.

Current release: AgentMachinist 0.12.0 on PyPI.

Install

uv tool install agentmachinist

You also need git, an authenticated gh, and one supported harness executable (claude, opencode, pi, or codex). The core CLI is tested on macOS and Linux with Python 3.12–3.14. Managed background service commands are macOS-only; on Linux, schedule machinist watch --once with your existing service manager.

machinist update-check compares the installed release against PyPI and prints the upgrade command for how this copy was installed (uv tool, pipx, pip, or a source checkout). machinist doctor reports the same result as a diagnostic row. Set MACHINIST_NO_UPDATE_CHECK=1 to suppress both probes on offline or CI machines.

Upgrading the package is not always the whole upgrade. Managed workflows are projected files, so a workflow change only takes effect once you run machinist sync-workflows. machinist watch reports that drift at startup and machinist update-check reports it alongside the release comparison, so you do not have to run doctor to find out. The advisory never blocks a command and never appears in update-check --json.

Start

cd your-repository
machinist onboard
# Answer the setup questions, review the generated files, then:
machinist doctor --run-gates   # one command checks config, labels, workflows, gates
git status --short
git add machinist.yaml .machinist/specs/.gitkeep .gitignore
git add .github/ISSUE_TEMPLATE/agentmachinist-task.yml
git add -p .github/workflows   # review each hunk
git diff --cached              # verify what will be committed
git commit -m "chore: configure AgentMachinist"
git push
machinist watch

machinist doctor --run-gates is the single health check — it already verifies labels, workflow drift, the sealed issue form, and verification gates, and prints the exact fix for any FAIL. Only run the individual machinist sync-labels --check, machinist sync-workflows --check, or machinist task template --check if doctor asks for them.

Use machinist onboard --setup-pr when you want AgentMachinist to put only its managed setup files on a pushed chore/agentmachinist-setup branch and open a draft PR. It requires a clean default branch and leaves failures visible with a recovery command. Before creating a real issue, run machinist rehearse for a no-model, no-API controller simulation; --harness is the explicit opt-in to invoke the configured providers inside the disposable repository.

In a terminal, machinist onboard (the recommended entry point) asks a short set of setup questions — dispatch mode, managed workflows, harness, test gate, and notifications — each with a one-line explanation and a safe default. Flags such as --harness, --test-cmd, --spec-source, and --notifications pre-answer their questions; --yes accepts all safe defaults and auto-enables the detected test command for hands-free quickstart; --no-input (or a non-interactive shell) also skips questions but does not auto-enable the test command unless you pass --test-cmd. Errors outside a configured repo now point you to machinist onboard and the first-run guide. machinist init is the same setup step without the guided receipt — prefer onboard for new repositories. machinist --help groups commands as Setup, Tasks, Build, and Operate — daily vs Operate — advanced.

Review the staged diff before committing. The managed Task form is installed even when Actions workflows are externally managed. Managed workflows must be pushed before GitHub comment or label approval can record SHA-bound evidence. machinist init also adds /.machinist/runs/ to .gitignore. If you manage workflows yourself, machinist init --no-workflows records github.manage_workflows: false; doctor then reports that its drift check was intentionally skipped.

The default github.spec_source: local makes watch own spec generation. Choose github-actions and run machinist sync-workflows if CI should own that phase instead. Exactly one source is active, preventing duplicate spec runs. Managed CI installs the selected Spec adapter and reads its declared secret name; built-ins support Claude Code, Codex, OpenCode, and Pi.

Approval is bound to the exact PR head commit. Use either:

machinist approve --issue 57
# or: machinist approve --pr 18
# or post the SHA-bound comment shown in the Spec PR body:
# /machinist-execute <full-spec-commit-sha>

The positional target remains available when that number identifies only one Task; use --issue or --pr when GitHub numbers overlap.

Editing the spec after approval makes that approval stale and blocks execution until the new head is approved.

With the starter configuration, a successful Execute run leaves the PR draft for an independent read-only Review Task Run. Review compares the approved Spec, diff, and verification evidence, posts a structured advisory report, and alone marks the exact implementation head ready. Findings never trigger an automatic repair or merge. Use machinist review <issue> manually or machinist retry <issue> --phase review after a failed Review.

The CLI approval command submits the SHA-bound comment; the managed GitHub workflow independently verifies the current head and approver's write access, then records the marker and label. Until that workflow completes, status remains awaiting approval rather than pretending execution is authorized. approval pending specifically means the label is visible but trusted SHA Evidence has not arrived yet.

Revise or explicitly abandon a successful Spec by issue number:

machinist spec 42 --dry-run
machinist spec 42 --revise
machinist spec 42 --abandon --reason "requirements changed"

The dry run prints the proposed Spec without commits, pushes, or a PR. Revision regenerates the Spec on its existing branch and draft PR. Abandonment records the reason, removes the trigger and approval labels, and closes the open draft PR.

Commands

Command Purpose
machinist init [--yes] Create config, spec storage, labels, managed issue form, and workflows; asks setup questions in a terminal (--yes hands-free, --no-input skips without auto-enabling test command).
machinist onboard [--setup-pr] [--yes] Run guided setup in place or deliver only managed setup files on a draft PR; --yes accepts defaults + detected test command.
machinist rehearse [--harness] Simulate the lifecycle in a disposable local repository; model/API use is opt-in.
machinist doctor [--run-gates] Run read-only setup and workflow-drift diagnostics; single health check that prints the exact fix for any FAIL (only run individual --check commands if doctor asks).
machinist update-check [--json] [--timeout <seconds>] Compare the installed release against PyPI, print how to upgrade, and report managed-workflow drift.
machinist sync-workflows [--check] Write or verify config-derived workflows.
machinist sync-labels --check|--apply Verify or create the two configured lifecycle labels.
machinist config validate|show|schema|set Validate, inspect, export, or atomically update configuration.
machinist task template --write|--check Project or verify the sealed GitHub issue form.
machinist task new --title <title> [--dispatch] Create a structured issue; apply the trigger label only after local lint passes.
machinist task lint <issue> [--json] Check objective, acceptance criteria, constraints, and verification readiness.
machinist spec <issue> [--dry-run] Preview a Spec, or generate it and open its draft PR.
machinist spec <issue> --revise Regenerate a successful Spec on its existing branch and PR.
machinist spec <issue> --abandon [--reason <text>] Record rejection and close the open draft PR.
machinist approve [--issue <issue>|--pr <pr>] Bind approval to the current PR head without number ambiguity.
machinist run <issue> Implement an approved spec and run the test gate.
machinist review <issue> Independently review the exact implemented draft and mark it ready.
machinist amend <issue> --feedback <text> Rework a ready PR from explicit feedback after fresh approval.
machinist cancel <issue> [--reason <text>|--clear] Cooperatively stop or block an issue's dispatch.
machinist watch [--once] [--dry-run] [--max-tasks <n>] Preview or dispatch eligible tasks continuously or once.
machinist queue pause|resume|defer|allow|show Persist operator controls over new watcher dispatches.
machinist service install|start|restart|stop|status|logs|uninstall Manage the repository's macOS launchd watcher; destructive lifecycle actions refuse active Claims unless forced.
machinist explain <issue> [--json] Show effective policy, resolved profiles, attempts, and the exact next action without secrets.
machinist status [--local|--all] [--json] Show GitHub state, local Task Runs, or a registered portfolio.
machinist status --watch [--interval <seconds>] [--json] Emit changed-only live pipeline snapshots until Ctrl-C.
machinist runs [--issue <issue>] [--json] Read current, historical, orphaned, and corrupt local run records.
machinist report [--since 30d] [--json] [--otlp-endpoint <url>] Aggregate local reliability metrics and optionally export allowlisted OTLP/HTTP JSON.
machinist retry <issue> [--phase spec|execute|review] Re-enable one failed Task Run.
machinist retry <issue> --phase execute --run [--resume|--fresh] Reuse a retained workspace or start a fresh Execute attempt; fresh is the default.
machinist inspect <issue> [--offline] [--json] Show GitHub, workspace, and complete Task Run diagnostics.
machinist repo add|remove|list Maintain the optional local repository registry.
machinist clean [--issue <issue>|--all] List or remove retained workspaces.

Documentation

The trust model is deliberately narrower than “the agent cannot use git.” Harness flags, credential reduction, repository postconditions, and push leases reduce risk, but local harnesses still execute with the operating-system access of the user who launched them. Read the trust model before unattended use.

Releasing

Releases use PyPI Trusted Publishing. Bump pyproject.toml, update the changelog, and publish a GitHub Release tagged v<version>. The release job first checks tag/version equality, runs tests and workflow checks, builds both distributions, smoke-tests the installed wheel and sdist through a generated first-run project, and records SHA-256 hashes. A minimal job then publishes those verified artifacts. Only after publication do separate jobs attach the distributions and checksum file to the GitHub Release and verify that the exact version is visible and installable from PyPI.

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agentmachinist-0.12.0.tar.gz (356.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agentmachinist-0.12.0-py3-none-any.whl (213.1 kB view details)

Uploaded Python 3

File details

Details for the file agentmachinist-0.12.0.tar.gz.

File metadata

  • Download URL: agentmachinist-0.12.0.tar.gz
  • Upload date:
  • Size: 356.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agentmachinist-0.12.0.tar.gz
Algorithm Hash digest
SHA256 f1852f9f91c27ca4082813208ea10a6bbce4d9fddffed708d4aa4ad4844f070d
MD5 ea3720ebc10b3eeee285a6ebdd745766
BLAKE2b-256 30a1f371cdf7f61cc95fc6b4b83029964e47f546e1c1b288665b83c0be1b82da

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentmachinist-0.12.0.tar.gz:

Publisher: release.yml on vscarpenter/AgentMachinist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agentmachinist-0.12.0-py3-none-any.whl.

File metadata

  • Download URL: agentmachinist-0.12.0-py3-none-any.whl
  • Upload date:
  • Size: 213.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agentmachinist-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d754ac239eb565ee2bf17eaa11d4b2c1510e0545c4a512fd0f11a556e3f9b519
MD5 b2cdb07d800681ce164060985b9dffcb
BLAKE2b-256 18b4832ee418639ba99fb053e45340ae832b2373cad017b135c38babc2708c49

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentmachinist-0.12.0-py3-none-any.whl:

Publisher: release.yml on vscarpenter/AgentMachinist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.13.0

2 files

0.12.1

2 files

This release

0.12.0 This release

2 files

0.11.0

2 files

0.10.0

2 files

0.9.0

2 files

0.8.3

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page