Skip to content

Boundline

TIP

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

Boundline - Bounded Delivery Runtime

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:

  1. goal → Record the objective for the active session.
  2. plan → Draft the bounded work from the repository evidence.
  3. run → Execute the next approved step.
  4. 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 run

If the workspace needs one explicit framework adapter, register it after init:

bash
boundline adapter add speckit --workspace .
boundline adapter show --workspace . --json

The 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:

Key Commands

CommandWhat it does
boundline goalSet the objective for the current session.
boundline planGenerate a technical plan to achieve the goal.
boundline runExecute the next pending step in the plan.
boundline statusCheck the current session status and next actions.
boundline inspectView detailed execution traces and evidence.
boundline adapter show --jsonInspect adapter compatibility, transports, and config readiness.
boundline index statusReport derived-index lifecycle state for local semantic retrieval.
boundline index doctorDiagnose tracked, stale, corrupt, or degraded derived-index state.

Deep Dive Documentation

Explore the wiki sidebar for details on architecture, configuration, and scaling:

Released under the MIT License.