Skip to content

@conduit-harness/conduit

The core package provides the conduit CLI, the workflow parser, the orchestration loop, and the IssueTracker and AgentRunner interfaces that plugins implement.

Terminal window
npm install -g @conduit-harness/conduit
  • The conduit CLI (init, validate, once, start, version).
  • Workflow front-matter parser and prompt renderer.
  • Orchestration loop: tracker poll → workspace creation → agent dispatch → optional tracker write-back.
  • Plugin interfaces:
    • IssueTracker — implemented by tracker plugins (BaseTracker provides shared behavior).
    • AgentRunner — implemented by runner plugins.

To build a custom tracker or runner, implement the interface from this package and publish it as conduit-tracker-<vendor> or conduit-runner-<vendor>-<mechanism>. See the API reference for the exact types.

packages/conduit on GitHub.