Skip to content

Forge

Forge is a heavy plugin that manages the full lifecycle of AI coding agents. Dispatch tasks, monitor progress, and supervise execution with OTP-derived strategies.

  • Task dispatch — send work to agents via CLI or MCP
  • Live monitoring — real-time status, logs, and progress tracking
  • Supervisionone_for_one, rest_for_one, one_for_all strategies
  • Checkpoints — save stable points with context for continuity
  • PTY engine — interactive mode support for agents that need a TTY
Terminal window
# Dispatch a task
.\entrance.exe nota do --title "Fix auth middleware null pointer"
# Check all running tasks
.\entrance.exe nota overview
# Save a checkpoint
.\entrance.exe nota checkpoint \
--stable-level "auth-fix-done" \
--landed "Fixed null pointer in auth middleware" \
--remaining "Need integration tests" \
--human-continuity-bus "Start from tests next session"
StrategyWhen to use
one_for_oneIsolated worker — failure doesn’t affect others
rest_for_oneOrdered pipeline — restart failed node and downstream
one_for_allTightly coupled bundle — restart entire group
  • Hosting depth: Heavy (consumes agent APIs, manages execution)
  • Manages external agent instances (e.g., Codex CLI sessions)
  • Entrance does not run agents internally — agents run in isolated external processes