• v0.5.0 3d069319b5

    grimacing released this 2026-05-29 16:47:20 +00:00 | 39 commits to main since this release

    v0.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
  • v0.5.5 3d069319b5

    grimacing released this 2026-05-29 16:47:17 +00:00 | 39 commits to main since this release

    Parser Completeness (Phase 5 of v0.5 milestone)

    • parseRequirementsMd() extracts real content from markdown
    • parseArchitectureMd() extracts real content from markdown
    • 31 test suites, 355 tests, all passing
    Downloads
  • v0.5.4 b33431c1a6

    grimacing released this 2026-05-29 16:46:17 +00:00 | 40 commits to main since this release

    Verification Intelligence (Phase 4 of v0.5 milestone)

    • Git-log requirement coverage check in behavioral layer
    • Real npm audit --json in security layer
    • TypeScript compilation check in quality layer
    Downloads
  • v0.5.3 5753e2dc96

    grimacing released this 2026-05-29 16:44:46 +00:00 | 41 commits to main since this release

    Honest 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
  • v0.5.2 815c928a43

    grimacing released this 2026-05-29 16:42:15 +00:00 | 42 commits to main since this release

    Backend 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
  • v0.5.1 a82926a22e

    grimacing released this 2026-05-29 16:39:29 +00:00 | 43 commits to main since this release

    Quick Wins (Phase 1 of v0.5 milestone)

    • Removed dead .planning/ documentation references
    • Removed unused execSync import from ollama-base.ts
    • Replaced postinstall with explicit install-opencode npm script
    • Version bump to 0.5.0
    Downloads
  • v0.4.0 fb3f1df13e

    v0.4.0 Stable

    cloudinit-bot released this 2026-05-29 16:18:34 +00:00 | 44 commits to main since this release

    What'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
  • v0.3.0 ddf04792c7

    grimacing released this 2026-05-29 15:13:45 +00:00 | 47 commits to main since this release

    57 files changed, 284 tests passing (up from 218). See tag commit for full details.

    Downloads
  • v0.2.0 6e637e4af0

    grimacing released this 2026-05-29 13:00:00 +00:00 | 51 commits to main since this release

    New 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 by ensureCIDir

    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 bodies 0.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