diff --git a/README.md b/README.md index 565dd9c..9d8be55 100644 --- a/README.md +++ b/README.md @@ -300,10 +300,10 @@ Each escalation is committed as an `escalation` type commit. Resolved escalation | Dimension | Learnship | CI | |-----------|-----------|-----| -| Project memory | `.planning/` directory files | Git log + `---ci---` commit blocks | -| Audit trail | `.ci/audit/*.json` files | `git log --grep="decisions:"` | -| State management | `STATE.md` + `STATE.md.json` | Reconstructed from git on demand | -| Phase discovery | Read `.planning/phases/` directory | `git branch -a \| grep phase/` | +| Project memory | `.planning/` directory files (legacy) | Git log + `---ci---` commit blocks | +| Audit trail | `.ci/audit/*.json` files (legacy) | `git log --grep="decisions:"` | +| State management | `STATE.md` + `STATE.md.json` (legacy) | Reconstructed from git on demand | +| Phase discovery | Read `.planning/phases/` directory (legacy) | `git branch -a \| grep phase/` | | Human Interactions | 19+/lifecycle | 1-2/lifecycle | | Decision Making | Human decides, agent implements | Agent decides, human reviews post-hoc | | Verification | Human UAT | Automated tests + escalation | diff --git a/opencode/ci/VERSION b/opencode/ci/VERSION index 60a2d3e..79a2734 100644 --- a/opencode/ci/VERSION +++ b/opencode/ci/VERSION @@ -1 +1 @@ -0.4.0 \ No newline at end of file +0.5.0 \ No newline at end of file diff --git a/opencode/ci/references/ci-files-discipline.md b/opencode/ci/references/ci-files-discipline.md index 1ddf8ac..9be58d5 100644 --- a/opencode/ci/references/ci-files-discipline.md +++ b/opencode/ci/references/ci-files-discipline.md @@ -41,7 +41,7 @@ These were removed in v0.2.0 and now live in the git log: | `.ci/audit/decisions.json` | `---ci---` decisions block | `GitContext.getDecisions()` | | `.ci/audit/escalations.json` | `---ci---` escalations block | `GitContext.getEscalations()` | | `.ci/audit/lessons.json` | `---ci---` lessons block | `GitContext.getLessons()` | -| `.planning/` directory | Git log + branches | `GitContext.reconstructState()` | +| `.planning/` directory (removed) | Git log + branches | `GitContext.reconstructState()` | ## CiFiles API diff --git a/package.json b/package.json index 988c5c7..439f476 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@continuous-intelligence/ci", - "version": "0.4.0", + "version": "0.5.0", "description": "Fully autonomous AI-driven software engineering harness - Continuous Intelligence", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -10,7 +10,6 @@ "files": [ "dist/", "opencode/", - "scripts/", "templates/", "LICENSE", "README.md" @@ -21,7 +20,7 @@ "typecheck": "tsc --noEmit", "test": "jest", "prepublishOnly": "npm run build", - "postinstall": "node scripts/postinstall.js" + "install-opencode": "node scripts/postinstall.js" }, "keywords": ["ci", "autonomous", "ai", "software-engineering", "agent", "multi-project"], "license": "MIT", diff --git a/src/backends/ollama-base.ts b/src/backends/ollama-base.ts index 33656b3..1e5b6f8 100644 --- a/src/backends/ollama-base.ts +++ b/src/backends/ollama-base.ts @@ -1,4 +1,3 @@ -import { execSync } from "node:child_process"; import * as fs from "node:fs"; import * as path from "node:path"; import * as os from "node:os"; diff --git a/src/version.ts b/src/version.ts index 69fef1b..3be7a7a 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = "0.4.0"; \ No newline at end of file +export const VERSION = "0.5.0"; \ No newline at end of file