Agent Watchtower v0.1.0
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-pathPublic commands
inittask-addworker-statusworker-runartifact-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.