Skip to main content

agents-live

PyPI version Python 3.12 or later License: MIT

Take your agents live. Turn Claude Code and GitHub Copilot agents into scheduled and file-triggered local automations, without moving them to another agent platform.

Definitions can be conforming Agent Skill directories or flat Markdown files in configured repository directories. Agents Live reads their namespaced execution metadata, adds local triggers, and repairs drift using standard host tools.

Agents/markdown-polisher/SKILL.md

---
name: markdown-polisher
description: Polish Markdown documents when they change.
metadata:
  agents-live.schema-version: "2"
  agents-live.selector: "claude"
  agents-live.mode: "write"
  agents-live.watch: "docs/** debounce 1s"
---
Correct spelling, grammar, and Markdown formatting errors in the selected files.
Preserve their meaning, links, code, and frontmatter. When a `Files changed:`
list is present, process only those files.

Quick start

See Installation for required host tools and platform-specific instructions.

curl --proto '=https' --tlsv1.2 -LsSf \
  https://github.com/johnshew/agents-live/releases/latest/download/install.sh | sh
export PATH="${XDG_DATA_HOME:-$HOME/.local/share}/agents-live/current/bin:$PATH"
agents-live init
agents-live start markdown-polisher

The watcher sleeps until a file changes, then runs the agent immediately with the changed paths. Add or edit a Markdown file under docs/, then open the file to see the fixes.

Manage the running agent with status and stop:

agents-live status
agents-live stop markdown-polisher

There is no polling interval or clock tick. The agent runs only when the operating system reports a change in the watched directory.

Lightweight

There is no listener service, separate application runtime, or database to deploy and maintain. The core stack is the Claude Code or GitHub Copilot CLI you already use, uv, and your host scheduler and file-watch facility.

Cron-only agents have no persistent process. A file-watch agent uses one small local watcher. There are no externally reachable ports or databases. Custom post-processors and plugins may bring their own dependencies; Agents Live core does not require them.

Safe by default

Execution modes make write access explicit:

  1. plan is read-only. The agent emits JSON for a validated post-processor to apply.
  2. pipeline limits the agent to a schema-checked data channel shared with your pre-processors and post-processors.
  3. write grants full write access as an explicit per-agent choice.

This is tool policy, not a sandbox. Agents still inherit the permissions of your local account and agent CLI.

The example uses write so it can fix documents directly. For tighter control, use the complete plan and pipeline Markdown-polisher examples. They apply the same correction task through validated, deterministic write boundaries.

Installation

Agents Live supports Linux, WSL, and native Windows. macOS is currently untested. First install and sign in to at least one supported provider CLI:

The release installers fetch an authenticated wheel from GitHub, install uv if it is missing, and activate the new version only after validation succeeds. Python 3.12 or newer is required; uv obtains a compatible interpreter when the host does not have one.

Linux and WSL

On Debian, Ubuntu, or WSL, install the host tools used by schedules and file watchers, then run the latest stable installer:

sudo apt-get update
sudo apt-get install -y cron inotify-tools
curl --proto '=https' --tlsv1.2 -LsSf \
  https://github.com/johnshew/agents-live/releases/latest/download/install.sh | sh

export PATH="${XDG_DATA_HOME:-$HOME/.local/share}/agents-live/current/bin:$PATH"
agents-live --repo /path/to/repository init
agents-live --repo /path/to/repository doctor

cron runs scheduled agents and automatic maintenance. inotifywait is only needed for file or directory watches. The installer adds the stable command directory to supported shell profiles; the export above makes it available to the current shell immediately.

On WSL, use these Linux instructions inside the distribution. The first convergence also stages and verifies Windows-side liveness so scheduled work can wake the distribution without an open terminal.

Windows

Run PowerShell as your normal user. Install a provider CLI if one is not already available:

winget install Anthropic.ClaudeCode
# Or: winget install GitHub.Copilot

Download and run the latest stable installer, then initialize a repository through the absolute stable command so the current shell does not depend on a refreshed PATH:

$installer = Join-Path $env:TEMP "agents-live-install.ps1"
Invoke-WebRequest `
  "https://github.com/johnshew/agents-live/releases/latest/download/install.ps1" `
  -OutFile $installer
& $installer

$agentsLive = Join-Path $env:LOCALAPPDATA "agents-live\current\Scripts\agents-live.exe"
& $agentsLive --repo C:\path\to\repository init
& $agentsLive --repo C:\path\to\repository doctor

The installer updates the user PATH; open a new terminal before relying on a bare agents-live command. init prints the generated PowerShell completion script path and the exact line to add to $PROFILE. Native Windows uses Task Scheduler and directory change notifications, so no separate scheduler or watcher package is required.

Install an exact version

Every installer asset attached to a release is stamped with that release's exact version. Download it from the version-specific release path to pin an installation without passing a separate argument. Prereleases are never selected through the latest path, and reinstalling the same version is safe.

On Linux or WSL:

version="6.8.0"
curl --proto '=https' --tlsv1.2 -LsSf \
  "https://github.com/johnshew/agents-live/releases/download/v${version}/install.sh" \
  | sh

On Windows:

$version = "6.8.0"
$tag = [Uri]::EscapeDataString("v$version")
$installer = Join-Path $env:TEMP "agents-live-install-$version.ps1"
Invoke-WebRequest `
  "https://github.com/johnshew/agents-live/releases/download/$tag/install.ps1" `
  -OutFile $installer
& $installer

Both installers authenticate the selected release through GitHub metadata and verify its asset size and SHA-256 digest. Network, proxy, TLS, provenance, and checksum failures stop without a package-index or stale-cache fallback.

Upgrade, roll back, and remove

Agents Live retains immutable versions side by side and selects one through the stable current path. Source plugins remain in their declaring repositories and load directly into the selected runtime; installation does not copy or install them into a generation.

agents-live upgrade
agents-live generations list
agents-live generations activate VERSION
agents-live uninstall

Selecting a generation converges native triggers and still-started watchers through that version. Work already running may finish on the immutable version where it began. Use generations remove VERSION to discard an inactive candidate, and generations collect to retain one rollback generation while removing older versions that no process is using.

An existing legacy uv tool installation is removed only after the verified generation is active. The package also installs al as an exact shorthand for agents-live. If an unrelated al executable already exists, remove or rename it before installation rather than forcing replacement.

Existing repositories and diagnostics

The installed .claude/skills/agents-live/ payload is tool-managed and carries a directory-local .gitignore; project-authored sibling skills are unaffected. For an existing repository that already tracks the payload, run git rm -r --cached .claude/skills/agents-live, then git add -f .claude/skills/agents-live/.gitignore. Agents Live never changes the Git index itself.

Run agents-live doctor to diagnose missing requirements and inspect configuration. Use agents-live doctor --repair to repair supported configuration issues. Automatic maintenance rotates framework logs and removes retained transcripts and processor output after 30 days by default. Set retention_days to a positive integer in .agents-live.toml (or [tool.agents-live]) to change that repository policy.

Go further

Definitions live under a registered repository's Agents/ directory by default, and Agents Live also searches .claude/skills/, .github/skills/, and .agents/skills/, claiming a skill there only when it carries agents-live. execution metadata. Set agent_directories = ["foo"] in .agents-live.toml to also discover immediate foo/<name>.md files and foo/<name>/SKILL.md bundles. Register another repository with agents-live init --repo <path>. Once registered, run, start, stop, and status fall back to the other registered repositories when a name is not present locally.

Cross-machine assignment is optional. Repository registration and ownership backend installation leave a project local-only. Run agents-live ownership enable to validate the backend and owners document before enabling transfers; agents-live ownership status reports the mode.

See the command reference for repository workflows, health checks and repair, upgrades, dashboards, shell completion, plugins, ownership, and multi-repository operations. The architecture guide covers runtime, safety, persistence, and maintenance behavior.

Documentation

Every workflow is an ordinary CLI command.

Design documents and the high-level backlog for the project itself live in docs/; they are not installed with the skill.

Contributing

Bug reports and pull requests are welcome in Issues.

License

MIT

Download files

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

Source Distribution

agents_live-6.8.0.tar.gz (595.2 kB view details)

Uploaded Source

Built Distribution

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

agents_live-6.8.0-py3-none-any.whl (420.4 kB view details)

Uploaded Python 3

File details

Details for the file agents_live-6.8.0.tar.gz.

File metadata

  • Download URL: agents_live-6.8.0.tar.gz
  • Upload date:
  • Size: 595.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for agents_live-6.8.0.tar.gz
Algorithm Hash digest
SHA256 6dbe5f2c548afb2650649481a03b163573ed7d3d6adea0e2358d9e581fafd04b
MD5 d8a610875c2813c083d68b94d5542ba5
BLAKE2b-256 e00fb1c8f13a58ffa18b7ce517062517d248aaf5cb044e1644ff0503e267a09d

See more details on using hashes here.

File details

Details for the file agents_live-6.8.0-py3-none-any.whl.

File metadata

  • Download URL: agents_live-6.8.0-py3-none-any.whl
  • Upload date:
  • Size: 420.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for agents_live-6.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 514c532fc112a7ba69877fcc07bca1d85c4b912ffd3d932b53fc7ef29863da3d
MD5 3a99467cecc9a150e23ecb156cb1c766
BLAKE2b-256 4a9f0d797606995b94be0e47a4061534f1fc3d93c8244e9347706386fffa0af2

See more details on using hashes here.

Release history Release notifications | RSS feed

6.9.1

2 files

6.9.0

2 files

This release

6.8.0 This release

2 files

6.7.0

2 files

6.6.0

2 files

6.5.0

2 files

6.4.1

2 files

6.3.8

2 files

6.3.5

2 files

6.3.4

2 files

6.3.3

2 files

6.3.2

2 files

6.3.1

2 files

6.3.0

2 files

6.2.0

2 files

6.1.1

2 files

6.1.0

2 files

6.0.6

2 files

6.0.5

2 files

6.0.4

2 files

6.0.3

2 files

6.0.2

2 files

6.0.1

2 files

6.0.0

2 files

5.5.2

2 files

5.5.1

2 files

5.5.0

2 files

5.4.2

2 files

5.4.1

2 files

5.4.0

2 files

5.3.0

2 files

5.2.0

2 files

5.1.0

2 files

5.0.1

2 files

5.0.0

2 files

4.0.0

2 files

3.0.0

2 files

2.2.0

2 files

2.1.3

2 files

2.1.2

2 files

2.1.1

2 files

2.1.0

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

1.0.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.0.1

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