@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.
Install
Section titled “Install”npm install -g @conduit-harness/conduitWhat it provides
Section titled “What it provides”- The
conduitCLI (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 (BaseTrackerprovides shared behavior).AgentRunner— implemented by runner plugins.
Plugin authors
Section titled “Plugin authors”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.
Source
Section titled “Source”packages/conduit on GitHub.