-
released this
2026-05-29 16:47:20 +00:00 | 39 commits to main since this releasev0.5 Milestone: Honest Baseline
All 5 phases complete. The CI system now:
- Executes honestly — fails clearly when backends are unavailable
- Verifies git-natively — checks real git history and npm audit
- Parses markdown requirements and architecture docs for real
- Has 31 test suites, 355 tests, all passing
- TypeScript typecheck clean
Phases
- v0.5.1 — Quick Wins: dead refs, unused imports, postinstall fix
- v0.5.2 — Backend Test Coverage: 4 new test suites
- v0.5.3 — Honest Execution: real rollback, honest orchestrator
- v0.5.4 — Verification Intelligence: git-log coverage, npm audit, TS check
- v0.5.5 — Parser Completeness: real markdown parsing
Downloads
-
released this
2026-05-29 16:47:17 +00:00 | 39 commits to main since this releaseParser Completeness (Phase 5 of v0.5 milestone)
parseRequirementsMd()extracts real content from markdownparseArchitectureMd()extracts real content from markdown- 31 test suites, 355 tests, all passing
Downloads
-
released this
2026-05-29 16:46:17 +00:00 | 40 commits to main since this releaseVerification Intelligence (Phase 4 of v0.5 milestone)
- Git-log requirement coverage check in behavioral layer
- Real
npm audit --jsonin security layer - TypeScript compilation check in quality layer
Downloads
-
released this
2026-05-29 16:44:46 +00:00 | 41 commits to main since this releaseHonest Execution (Phase 3 of v0.5 milestone)
- Real
ErrorRecovery.rollback()with git branch/tag cleanup - Orchestrator fails honestly without backend
- Git-native behavioral verification (checks
.ci/REQUIREMENTS.md)
Downloads
- Real
-
released this
2026-05-29 16:42:15 +00:00 | 42 commits to main since this releaseBackend Test Coverage (Phase 2 of v0.5 milestone)
- 4 new test suites:
tool-registry-extended.test.ts,ollama-base.test.ts,availability.test.ts,ollama-cloud.test.ts - 353 tests passing
Downloads
- 4 new test suites:
-
v0.5.1 — Phase 1: Quick Wins Stable
released this
2026-05-29 16:39:29 +00:00 | 43 commits to main since this releaseQuick Wins (Phase 1 of v0.5 milestone)
- Removed dead
.planning/documentation references - Removed unused
execSyncimport fromollama-base.ts - Replaced
postinstallwith explicitinstall-opencodenpm script - Version bump to 0.5.0
Downloads
- Removed dead
-
v0.4.0 Stable
released this
2026-05-29 16:18:34 +00:00 | 44 commits to main since this releaseWhat's Changed
New Features
- feat(backends): multi-backend intelligence layer — LLM + Agent backends, persona-loading agents, honest CLI commands
Bug Fixes
- fix: remove hardcoded /home/jchery paths, use OPENCODE_DIR template token resolved at install time
Other Changes
- release(v0.4.0): purge learnship, migrate .planning→.ci, fix backends, add test coverage
Downloads
-
released this
2026-05-29 15:13:45 +00:00 | 47 commits to main since this release57 files changed, 284 tests passing (up from 218). See tag commit for full details.
Downloads
-
released this
2026-05-29 13:00:00 +00:00 | 51 commits to main since this releaseNew Modules
- commit-parser:
---ci---YAML block extraction and parsing from commit messages - commit-builder: Structured commit message generation (init, task, decision, escalation, compound, verify, research)
- git-context: Project state reconstruction from git log + branches
- git-branch: Phase/milestone branch lifecycle management (
phase/NN-slug,milestone/vX.X-slug) - ci-files:
.ci/long-lived reference file management (PROJECT.md, ROADMAP.md, REQUIREMENTS.md, ARCHITECTURE.md) - commit-meta types: CiMetadata, CommitDecision, CommitEscalation, CommitRequirements, CommitCompoundMeta, ParsedCiCommit
Core Engine Changes
- DecisionEngine: Generates commit messages with
---ci---blocks instead of writing audit JSON files - EscalationProtocol: Commits escalations as git artifacts instead of writing to
.ci/audit/ - OrchestratorAgent: First impulse is
git log+git branch, not file reads - Config:
.ci/audit/directory no longer created byensureCIDir
Removed
.ci/audit/directory (audit trail is now git log).planning/directory (all dynamic state derived from git history)
Architecture Decisions
ID Decision Confidence D-001 Git log as primary project memory 0.95 D-002 ---ci---YAML blocks in commit bodies0.92 D-003 Phase+milestone branch naming 0.88 Test Coverage
25 suites, 218 tests (up from 20 suites, 158 tests)
Reconstruction Test
An agent with only commit message access (no code, no diffs, no
.ci/files) can reconstruct:- Current phase and milestone
- All decisions with rationale and alternatives
- Requirements coverage
- Lessons learned
- Compounded solutions
- Escalation history
Downloads
- commit-parser: