Skip to main content

Capability-first Codex control plane for long-running developer workflows.

Project description

Agent CLI OS

Agent CLI OS is a capability-first Codex control plane for long-running agent work. OS stands for On Steroids, not operating system.

It gives agents one stable front door for:

  • capability discovery
  • deep workflow launch and resume
  • research routing
  • install health
  • upgrade and maintenance

It does not replace the authoritative tools underneath. It routes into them.

5-Minute Setup

Install the public wrapper from the verified public source:

pipx install git+https://github.com/leonardverhamme/agent-cli-os.git

As of April 20, 2026, this GitHub install path is the verified public path. PyPI publishing is wired in CI, but agent-cli-os is not yet live on PyPI.

The remaining maintainer-side fix is documented in docs/agent-cli-os/pypi-publishing.md. Once that PyPI project configuration is in place, the intended public install becomes:

pipx install agent-cli-os

Bootstrap the real bundle into your CODEX_HOME:

agentcli bootstrap

Repair common setup issues and confirm health:

agentcli doctor --fix

That is the main onboarding path.

agentcli is the canonical public command. loopsmith still works as a compatibility alias for the current migration release.

What You Get

  • agentcli as the public wrapper command
  • the internal agentctl/ bundle under CODEX_HOME
  • reusable local skills for UI, tests, docs, refactor, CI/CD, research, and maintenance
  • a local plugin shell for Codex routing
  • deep workflow state under .codex-workflows/<workflow>/state.json

Core Commands

agentcli doctor --fix
agentcli capabilities
agentcli capability <key>
agentcli inventory show
agentcli status --all
agentcli run <workflow>
agentcli loop <name> --task "<brief>"
agentcli research web <query>
agentcli research github <query>
agentcli research scout <query>
agentcli config show
agentcli self-check
agentcli upgrade
agentcli maintenance audit

Examples

Install on the current machine:

pipx install git+https://github.com/leonardverhamme/agent-cli-os.git
agentcli bootstrap
agentcli doctor --fix

Install on another computer from a local checkout:

git clone https://github.com/leonardverhamme/agent-cli-os.git
cd agent-cli-os
python .\scripts\install_bundle.py --codex-home C:\Users\you\.codex

Bootstrap from a local checkout during development:

agentcli bootstrap --source-root C:\path\to\agent-cli-os

Run a deep workflow:

agentcli run docs-deep-audit --repo C:\path\to\repo

Run a generic long task through the durable loop:

agentcli loop repo-cleanup --repo C:\path\to\repo --task "Reduce stale scripts, tighten docs, add missing tests, and keep going until the checklist is empty."

Upgrade later:

agentcli upgrade
agentcli self-check

Config Layers

Agent CLI OS uses a small structured config system with clear precedence:

  1. bundled defaults
  2. user-global config at $CODEX_HOME/config.toml
  3. repo-local config at <repo>/.agent-cli-os/config.toml

Use:

agentcli config show
agentcli config path --scope user
agentcli config set worker.mode auto
agentcli config set browser.preferred_route cli --scope repo --repo C:\path\to\repo
agentcli config unset browser.preferred_route --scope repo --repo C:\path\to\repo

Structured config is intentionally small. Use AGENTS.md for natural-language guidance.

Default structured keys now cover:

  • worker runtime defaults
  • browser route preference
  • compact menu behavior
  • raw inventory refresh behavior
  • personal guidance snippet directories and budgets

Grouped Capability Navigation

The default capability menu is grouped so the top-level surface stays small:

  • Core
  • Workflows
  • Research
  • Platforms
  • Browser & Design
  • Native

Use:

agentcli capabilities
agentcli capability platforms
agentcli capability github-advanced-security
agentcli inventory show --kind tools --scope all

agentcli capabilities is the curated compact front door.

agentcli inventory show is the raw autodetected surface for debugging and inspection when the curated menu is not enough.

The detailed routing notes live in generated capability pages under docs/agent-cli-os/capabilities/.

Default menu budgets:

  • max 8 top-level groups
  • max 25 items per menu bucket before deterministic splitting
  • names-first output by default

Why This Stays Small

Agent CLI OS is intentionally split into three layers:

  • raw autodetected inventory
  • curated capability menu
  • thin visible front-door skills

That separation is the main token-efficiency rule.

It prevents the default route from becoming a giant flat dump of:

  • every installed skill
  • every plugin-contributed skill
  • every MCP server
  • every CLI on the machine

The default menu stays compact because:

  • newly detected tools are not promoted automatically
  • raw inventory lives behind agentcli inventory show
  • top-level output is names-first instead of paragraph-first
  • personal guidance is budgeted instead of appended into skills
  • thin skills stay navigation-first and push detail into docs and drill-down pages

Raw Inventory

Agent CLI OS now persists the raw autodetected inventory to:

agentctl/state/inventory.json

That snapshot includes:

  • machine CLIs
  • globally installed skills
  • repo-scoped skills when present
  • installed/configured plugins
  • configured MCP servers

Use:

agentcli inventory refresh
agentcli inventory show --kind all --scope all
agentcli inventory item tool:gh

This is intentionally separate from the curated capability menu.

Personal Guidance Snippets

Small personal guidance snippets can now be referenced through structured config instead of bloating skills or prompts.

By default, Agent CLI OS validates:

  • max guidance files
  • max total guidance lines

The compact guidance snapshot is stored at:

agentctl/state/guidance.json

This keeps private user preferences out of:

  • capability skills
  • repo skills
  • giant inline config blobs

The goal is better routing with less prompt clutter, not another hidden prompt dump.

Deep Workflows

Bundled deep workflows:

  • ui-deep-audit
  • test-deep-audit
  • docs-deep-audit
  • cicd-deep-audit
  • refactor-deep-audit

Each workflow is disk-backed:

  • checklist or progress markdown in the target repo
  • machine state in .codex-workflows/<workflow>/state.json

For unattended execution, the loop still needs a real worker route. Agent CLI OS supports:

  • --worker-command
  • CODEX_WORKFLOW_WORKER_COMMAND
  • AGENTCTL_CODEX_WORKER_TEMPLATE
  • a callable standalone Codex CLI when auto-detected

When there is no dedicated deep workflow for the job, use the generic $loopsmith skill plus:

agentcli loop <name> --repo C:\path\to\repo --task "<brief>"

That loop uses the same runner contract, but stores its queue under docs/<name>-checklist.md, docs/<name>-progress.md, and .codex-workflows/<name>/state.json.

Install and Upgrade Model

The public wrapper is installable as a Python package.

The real bundle is installed into CODEX_HOME by agentcli bootstrap and upgraded by agentcli upgrade.

Install metadata is written to:

agentctl/state/install-metadata.json

That metadata lets upgrades use the recorded source and version channel instead of guessing.

Compatibility

This release intentionally keeps:

  • the internal Python package name as agentctl
  • the internal bundle directory as agentctl/
  • agentctl as a hidden compatibility command alias

That keeps existing installs and repo assumptions stable while the public product name changes to Agent CLI OS.

Documentation Map

Release Model

  • Python package: agent-cli-os
  • canonical repo: https://github.com/leonardverhamme/agent-cli-os
  • GitHub Releases carry the versioned bundle zip used by bootstrap and upgrade
  • tagged releases are configured to build wheel, sdist, bundle zip, checksum, and publish to PyPI
  • tagged releases now wait for the package version to appear on live PyPI before calling the publish step complete
  • verify live PyPI availability for each release instead of assuming the publish step already succeeded

Maintenance

Treat the control plane as a maintained product:

agentcli maintenance audit
agentcli self-check

The maintenance pass refreshes generated docs, checks plugin/config health, enforces grouped-menu budgets, and blocks reintroduced sidecar-app coupling in the product surface.

When changing the source repo itself, run maintenance from the source tree, not through an already installed bundle:

agentcli maintenance audit --json

That source-tree command now refreshes the checked-in docs directly and refuses to retarget maintenance writes outside the real Agent CLI OS repo root.

Project details


Download files

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

Source Distribution

agent_cli_os-0.1.6.tar.gz (67.4 kB view details)

Uploaded Source

Built Distribution

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

agent_cli_os-0.1.6-py3-none-any.whl (76.5 kB view details)

Uploaded Python 3

File details

Details for the file agent_cli_os-0.1.6.tar.gz.

File metadata

  • Download URL: agent_cli_os-0.1.6.tar.gz
  • Upload date:
  • Size: 67.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agent_cli_os-0.1.6.tar.gz
Algorithm Hash digest
SHA256 1a6c38831eb70414f92a6737d149a1065f79ada7175dd8792ca42afef2c81385
MD5 30e7966c52d9aebeb5f2e46fc04dc9bf
BLAKE2b-256 e7076d41472f1043d579be0927e93bc259d06c1b41474cdd51ed237b9627351b

See more details on using hashes here.

File details

Details for the file agent_cli_os-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: agent_cli_os-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 76.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agent_cli_os-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d3af33e4655416c3deb262936f2f393b5dee7533e38ba66d7fa77619d1e43684
MD5 d1499d9ed909818686162d7f360abf07
BLAKE2b-256 89664e1d692260ab2293a6b2897eddabb4b33cbd7393b3e2cebc5f1fd94fff4a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page