Skip to content

Agent Watchtower v0.1.0

Choose a tag to compare

@un-n-smith un-n-smith released this 26 May 12:41
· 14 commits to main since this release

Agent Watchtower v0.1.0

First alpha release of Agent Watchtower Core.

Agent Watchtower is a tiny local CLI for coding-agent continuity. It helps an interrupted coding agent resume by keeping a small local trail of:

  • the current goal
  • the next safe action
  • the last run receipt
  • the latest markdown artifact

Install from GitHub

python3 -m pip install "agent-watchtower-core @ git+https://github.com/un-n-smith/agent-watchtower.git@v0.1.0"

Or with pipx:

pipx install "git+https://github.com/un-n-smith/agent-watchtower.git@v0.1.0"

Quick demo

ROOT="$(mktemp -d)"
agent-watchtower --root "$ROOT" init
agent-watchtower --root "$ROOT" worker-status
agent-watchtower --root "$ROOT" worker-run
agent-watchtower --root "$ROOT" artifact-path

Public commands

  • init
  • task-add
  • worker-status
  • worker-run
  • artifact-path

Boundaries

This release is a local continuity layer. It is not a daemon, scheduler, memory database, messaging platform, or full autonomous agent system.

Feedback is welcome. Interrupted-agent stories, install failures, and plain-language suggestions are especially useful.