Package Exports
- @ob1-sg/horizon
- @ob1-sg/horizon/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ob1-sg/horizon) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Horizon - Autonomous Product Development Agent
Horizon is an AI-powered autonomous development system that works on Linear tickets without human intervention. It orchestrates multiple AI agents to research, plan, implement, and validate code changes, all while keeping Linear updated with progress.
Installation
Global Installation (Recommended)
npm install -g @ob1-sg/horizonLocal Project Installation
npm install --save-dev @ob1-sg/horizonQuick Start
Install Horizon (see above)
Run Horizon:
cd your-project horizon # Global install npx horizon # Local install
First-run setup - On first run, Horizon will:
- Prompt for your Linear API key
- Auto-detect your Linear team
- Create necessary directories and configuration
- Start the development loop
Create tickets in Linear and Horizon will work on them autonomously
For advanced configuration, run horizon config to change settings like provider, model, and iteration limits.
How It Works
Horizon uses three core concepts: Pods, Loops, and Agents.
Pods, Loops, and Agents
┌─────────────────────────────────────────────────────────────────────────┐
│ Pod (swift-wyvern) │
├─────────────────────────────────────────────────────────────────────────┤
│ │
│ Loop 1: Ticket RSK-42 │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ Agent 1 │ │ Agent 2 │ │ Agent 3 │ │
│ │ Linear │────▶│ Worker │────▶│ Linear │ │
│ │ Reader │ │ │ │ Writer │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
│ │
│ Loop 2: Ticket RSK-43 │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ Agent 1 │────▶│ Agent 2 │────▶│ Agent 3 │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
│ │
│ Loop 3: ... │
│ │
└─────────────────────────────────────────────────────────────────────────┘Pod: A running instance of Horizon. Each pod gets a unique name (e.g., "swift-wyvern") and continuously processes tickets until stopped. You can run multiple pods in parallel.
Loop: One complete cycle of work. Each loop claims a ticket, works on it, and updates Linear. A pod runs loops continuously until there's no more work.
Agent: An AI worker that handles one part of the loop. Three agents work in sequence to complete each loop.
The Agent Pipeline
Agent 1 (Linear Reader): Scans Linear for available tickets, prioritizes by urgency, claims the highest-priority ticket, and gathers context.
Agent 2 (Worker): The developer. Reads code, writes code, runs tests, and commits changes.
Agent 3 (Linear Writer): Updates Linear with results - posts comments, updates status, and links commits.
Parallel Execution
Multiple pods can work on the same codebase simultaneously. Horizon prevents conflicts through ticket claiming:
- When Agent 1 finds a ticket to work on, it immediately changes the status to "In Progress"
- Other pods see this status and skip the ticket
- Each pod works on different tickets, avoiding collisions
This lets you scale development by running multiple Horizon pods in parallel - on different machines, in CI, or as background processes.
Linear as State Machine
Horizon uses Linear as its state machine. You don't need to configure Horizon or tell it what to work on - just add tickets to Linear and Horizon handles the rest.
┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ ∞ Needs │────▶│ ∞ Needs │────▶│ ∞ Needs │────▶│ ∞ Needs │────▶│ ∞ Needs │
│ Research │ │ Spec* │ │ Plan │ │ Implement │ │ Validate │
└─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘
│ │ │ │ │
▼ ▼ ▼ ▼ ▼
┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ ∞ Research │ │ ∞ Spec In │ │ ∞ Plan In │ │∞ Implement │ │ ∞ Validate │
│ In Progress │ │ Progress* │ │ Progress │ │ In Progress │ │ In Progress │
└─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘
│
* Specification is optional - only when ▼
research determines UX decisions are needed ┌─────────────┐
│ ∞ Done │
└─────────────┘How it works:
- You create a ticket in Linear and set its status to
∞ Needs Research(or any "Needs" status) - Horizon picks it up - Agent 1 scans for tickets in "Needs" statuses
- Horizon claims it - Changes status to "In Progress" so other pods skip it
- Horizon works on it - Agent 2 does the actual development work
- Horizon advances it - Agent 3 moves the ticket to the next status
- Repeat until the ticket reaches
∞ Done
This means you can queue up work by creating tickets, and Horizon will process them in priority order. You can also intervene at any point - move a ticket back to a "Needs" status and Horizon will re-do that step.
Directory Structure
After running Horizon, your project will have:
your-project/
├── .horizon/ # Runtime data (gitignored)
│ ├── env # Configuration and credentials
│ ├── mcp.json # MCP configuration for Claude Code
│ ├── output/ # Runtime logs
│ └── attachments/ # Downloaded issue attachments
├── horizon-docs/ # Work artifacts (committed)
│ ├── research/ # Research documents
│ ├── plans/ # Implementation plans
│ └── validation/ # Validation reports
└── CLAUDE.md # Your project's Claude instructionsConfiguration
Environment Variables
Set these in .horizon/env or export them:
| Variable | Description | Default |
|---|---|---|
LINEAR_API_KEY |
Your Linear API key | (required) |
LINEAR_TEAM_KEY |
Linear team identifier (e.g., "RSK") | (required) |
HORIZON_PROVIDER |
AI provider: "claude" or "codex" | "claude" |
HORIZON_CLAUDE_MODEL |
Claude model: "opus", "sonnet", "haiku" | "opus" |
HORIZON_MAX_ITERATIONS |
Stop after N iterations (0 = unlimited) | 0 |
HORIZON_MERGE_MODE |
Merge mode: "merge" or "pr" | "merge" |
Merge Modes
Horizon supports two modes for completing work:
Direct Merge (default)
export HORIZON_MERGE_MODE=mergeHorizon merges completed work directly to main. Best for trusted autonomous operation.
Pull Request Mode
export HORIZON_MERGE_MODE=prHorizon creates a pull request instead of merging. The ticket moves to ∞ Awaiting Merge status until a human reviews and merges the PR. Best for teams that want human oversight.
Using Codex CLI as Provider
When using Codex (HORIZON_PROVIDER=codex), configure Linear MCP in Codex:
codex mcp add linear --url https://mcp.linear.app/mcpCLI Commands
horizon # Run the main development loop
horizon config # Configure Horizon settings
horizon uninstall # Remove Horizon from current project
horizon --help # Show help
horizon --version # Show versionUpdates
Horizon automatically checks for updates once per day. When a new version is available, you'll see a notification on startup:
Update available: 0.1.3 → 0.1.4
Run: npm install -g @ob1-sg/horizon@latestUpdate with:
npm install -g @ob1-sg/horizon@latestReleasing (Maintainers)
Releases are performed via GitHub Actions.
Preflight
- Confirm GitHub repo secrets:
NPM_TOKEN(required): npm publish token with access to publish@ob1-sg/horizon.RELEASE_TOKEN(optional): GitHub token/PAT withcontents: writein casegithub.tokencan’t push tomaindue to branch protections (also used to create the GitHub Release).
- Confirm no other release run is in progress (the workflow uses
concurrency: release).
Optional: dry run (CI gates only)
- GitHub → Actions →
Release→ Run workflow (branch:main) - Inputs:
release_type:patchnpm_tag:latestdry_run:true
- Expectation: build/typecheck/tests run and pass; no version bump commit, tag, GitHub Release, or npm publish is created.
Patch release
- GitHub → Actions →
Release→ Run workflow (branch:main) - Inputs:
release_type:patch(orminor/major)npm_tag:latest(or another intended dist-tag)dry_run:false
- Expected outputs:
- A commit on
mainwith message likechore(release): vX.Y.Z - A git tag
vX.Y.Zpushed to the repo - A GitHub Release created for
vX.Y.Z(auto-generated notes) @ob1-sg/horizon@X.Y.Zpublished to npm under the chosen dist-tag
- A commit on
Recovery (partial failures)
- Tag exists but npm publish failed: GitHub → Actions →
Publish existing ref to npmref: the tag (e.g.vX.Y.Z)npm_tag: the intended dist-tag (defaultlatest)
- npm publish succeeded but GitHub Release creation failed: create a GitHub Release from the existing tag (UI or
gh release create vX.Y.Z --generate-notes).
Rollback (only if necessary)
If a tag was created but should not exist (and npm publish did not occur):
git tag -d vX.Y.Z && git push origin :refs/tags/vX.Y.ZDelete the GitHub Release for that tag in the UI if one was created.
Local parity checks (optional)
npm ci
npm run build
npm run typecheck
npm testLinear Workflow Statuses
Horizon creates these statuses in Linear:
Ready statuses (waiting for Horizon):
∞ Needs Research∞ Needs Specification(optional - when UX decisions are needed)∞ Needs Plan∞ Needs Implement∞ Needs Validate
In Progress statuses (Horizon is working):
∞ Research In Progress∞ Specification In Progress∞ Plan In Progress∞ Implement In Progress∞ Validate In Progress
Intervention statuses (requires human action):
∞ Blocked- Agent needs clarification or decision before proceeding∞ Awaiting Merge- Work complete, PR awaiting human review/merge (PR mode only)
Terminal statuses:
∞ Done∞ Canceled
Writing Good Tickets
Horizon works best with clear, specific tickets:
Good ticket:
Add a dark mode toggle to the settings page. Should save preference to localStorage and apply a .dark-theme class to the body.
Tips:
- Include acceptance criteria when possible
- Reference existing code patterns to follow
- Specify any constraints or requirements
- Link related issues if dependencies exist
Developing Horizon
If you want to contribute or modify Horizon:
# Clone the repo
git clone https://github.com/ob1-sg/horizon
cd horizon
# Install dependencies
npm install
# Build
npm run build
# Run from source
npm start
# Type check
npm run typecheckPrerequisites
- Node.js 18+
- Claude Code or Codex CLI installed
- A Linear account with API access
- Git repository initialized
Acknowledgments
Horizon builds on ideas and techniques from the AI engineering community:
- Dex Horthy - For the research/plan/implement pattern that structures how Horizon approaches work
- Geoff Huntley - For the Ralph Wiggum technique that inspires Horizon's autonomous agent approach
- Vaibhav @ BoundaryML - For BAML and the "AI That Works" podcast series on building reliable AI systems
License
MIT