Version: see VERSION. Package: @williamcodebox/autodev.
omp plugin install @williamcodebox/autodevThe package provides three named agents (autodev-scout, autodev-gatekeeper, autodev-implementer), the /autodev slash command, and the autodev tool.
omp plugin list
# Should show @williamcodebox/autodev as enabled
# Verify agents are discoverable (see them in agent suggestions when spawning subagents)If you previously installed autodev by extracting a tarball to ~/.omp/agent/ or <project>/.omp/, you must remove the old files before installing the npm package. The old files use the builtin discovery provider (priority 100), which shadows the npm plugin provider (priority 90).
# Global old install
rm -rf ~/.omp/agent/tools/autodev \
~/.omp/agent/commands/autodev.md \
~/.omp/agent/skills/autodev
# Project-level old install
rm -rf <project>/.omp/tools/autodev \
<project>/.omp/commands/autodev.md \
<project>/.omp/skills/autodevThen install via omp plugin install @williamcodebox/autodev as above.
On first run, .omp/autodev/ is created automatically:
autodev.yaml # Main state file
slices/<id>.yaml # Per-slice tasks and acceptance criteria
artifacts/ # Persistent artifacts
handoffs/ # Slice handoff records
run.json # Event log
Slice boundary handoff only carries handoff.md + slice YAML — agent definitions are not transferred. A session resuming from handoff must have @williamcodebox/autodev installed, or the parent agent will fail-loud when trying to spawn named agents.
omp plugin uninstall @williamcodebox/autodev