Boundline
TIP
This wiki is aligned with Boundline 0.66.0. For older versions, refer to the repository tags.

The local delivery orchestrator for bounded engineering work. Turn goals into executed plans safely, without losing control to an opaque AI loop.
Why Boundline?
- Goal-Driven Execution: Translates high-level objectives into concrete, step-by-step technical plans.
- Session-Based State: Maintains explicit, resumable session state locally on disk. You are never hostage to ephemeral chat memory.
- Safe Delivery: Executes steps safely using your repository's existing constraints and Canon governance rules.
- Explicit Traces: Never lose context. Every execution step is recorded in local, auditable traces.
- Agnostic Architecture: Seamlessly plugs into external frameworks and capability providers.
How it Works
Boundline forces an explicit, inspectable workflow:
goal→ Record the objective for the active session.plan→ Draft the bounded work from the repository evidence.run→ Execute the next approved step.inspect→ Report the authoritative runtime state.
Quick Start
bash
boundline doctor --install
cd my-project
boundline init --assistant codex --route planning=copilot:gpt-4o
boundline config set-semantic-acceleration --scope workspace --policy local
boundline index status --workspace .
boundline goal --goal "Fix the failing add test"
boundline plan
boundline runIf the workspace needs one explicit framework adapter, register it after init:
bash
boundline adapter add speckit --workspace .
boundline adapter show --workspace . --jsonThe adapter JSON report surfaces the compatibility line, declared supported transports, stage overrides, hook subscriptions, and config-completeness state before plan or run tries to hand off a stage.
Current public repositories for this adapter line:
- boundline-framework-template: starter scaffold for a compatible framework adapter that speaks the host-owned V1 subprocess contract.
- boundline-adapter-speckit: concrete Speckit-backed adapter implementation that can claim
planandrunwhen preflight succeeds.
Key Commands
| Command | What it does |
|---|---|
boundline goal | Set the objective for the current session. |
boundline plan | Generate a technical plan to achieve the goal. |
boundline run | Execute the next pending step in the plan. |
boundline status | Check the current session status and next actions. |
boundline inspect | View detailed execution traces and evidence. |
boundline adapter show --json | Inspect adapter compatibility, transports, and config readiness. |
boundline index status | Report derived-index lifecycle state for local semantic retrieval. |
boundline index doctor | Diagnose tracked, stale, corrupt, or degraded derived-index state. |
Deep Dive Documentation
Explore the wiki sidebar for details on architecture, configuration, and scaling: