fix(P01): quick wins — remove dead refs, unused imports, fix postinstall, version bump
---ci---
project: ci
phase: 1
milestone: v0.5
status: complete
decisions:
- id: D-020
decision: Phase 1 Quick Wins complete
rationale: All 5 FIX requirements (FIX-01 through FIX-05) verified and passing
confidence: 0.95
alternatives: []
requirements:
covered: [FIX-01, FIX-02, FIX-03, FIX-04, FIX-05]
---/ci---
Phase 1 (Quick Wins) summary:
- A1/FIX-01: Marked .planning/ refs as (legacy)/(removed) in docs
- A2/FIX-02: Removed unused execSync import from ollama-base.ts
- A3/FIX-03: Replaced postinstall with explicit install-opencode, removed scripts/ from files
- A4/FIX-04: Verified opencode.json is clean (no learnship entry)
- A5/FIX-05: Version bump to 0.5.0
This commit is contained in:
@@ -300,10 +300,10 @@ Each escalation is committed as an `escalation` type commit. Resolved escalation
|
|||||||
|
|
||||||
| Dimension | Learnship | CI |
|
| Dimension | Learnship | CI |
|
||||||
|-----------|-----------|-----|
|
|-----------|-----------|-----|
|
||||||
| Project memory | `.planning/` directory files | Git log + `---ci---` commit blocks |
|
| Project memory | `.planning/` directory files (legacy) | Git log + `---ci---` commit blocks |
|
||||||
| Audit trail | `.ci/audit/*.json` files | `git log --grep="decisions:"` |
|
| Audit trail | `.ci/audit/*.json` files (legacy) | `git log --grep="decisions:"` |
|
||||||
| State management | `STATE.md` + `STATE.md.json` | Reconstructed from git on demand |
|
| State management | `STATE.md` + `STATE.md.json` (legacy) | Reconstructed from git on demand |
|
||||||
| Phase discovery | Read `.planning/phases/` directory | `git branch -a \| grep phase/` |
|
| Phase discovery | Read `.planning/phases/` directory (legacy) | `git branch -a \| grep phase/` |
|
||||||
| Human Interactions | 19+/lifecycle | 1-2/lifecycle |
|
| Human Interactions | 19+/lifecycle | 1-2/lifecycle |
|
||||||
| Decision Making | Human decides, agent implements | Agent decides, human reviews post-hoc |
|
| Decision Making | Human decides, agent implements | Agent decides, human reviews post-hoc |
|
||||||
| Verification | Human UAT | Automated tests + escalation |
|
| Verification | Human UAT | Automated tests + escalation |
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
0.4.0
|
0.5.0
|
||||||
@@ -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/decisions.json` | `---ci---` decisions block | `GitContext.getDecisions()` |
|
||||||
| `.ci/audit/escalations.json` | `---ci---` escalations block | `GitContext.getEscalations()` |
|
| `.ci/audit/escalations.json` | `---ci---` escalations block | `GitContext.getEscalations()` |
|
||||||
| `.ci/audit/lessons.json` | `---ci---` lessons block | `GitContext.getLessons()` |
|
| `.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
|
## CiFiles API
|
||||||
|
|
||||||
|
|||||||
+2
-3
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@continuous-intelligence/ci",
|
"name": "@continuous-intelligence/ci",
|
||||||
"version": "0.4.0",
|
"version": "0.5.0",
|
||||||
"description": "Fully autonomous AI-driven software engineering harness - Continuous Intelligence",
|
"description": "Fully autonomous AI-driven software engineering harness - Continuous Intelligence",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
@@ -10,7 +10,6 @@
|
|||||||
"files": [
|
"files": [
|
||||||
"dist/",
|
"dist/",
|
||||||
"opencode/",
|
"opencode/",
|
||||||
"scripts/",
|
|
||||||
"templates/",
|
"templates/",
|
||||||
"LICENSE",
|
"LICENSE",
|
||||||
"README.md"
|
"README.md"
|
||||||
@@ -21,7 +20,7 @@
|
|||||||
"typecheck": "tsc --noEmit",
|
"typecheck": "tsc --noEmit",
|
||||||
"test": "jest",
|
"test": "jest",
|
||||||
"prepublishOnly": "npm run build",
|
"prepublishOnly": "npm run build",
|
||||||
"postinstall": "node scripts/postinstall.js"
|
"install-opencode": "node scripts/postinstall.js"
|
||||||
},
|
},
|
||||||
"keywords": ["ci", "autonomous", "ai", "software-engineering", "agent", "multi-project"],
|
"keywords": ["ci", "autonomous", "ai", "software-engineering", "agent", "multi-project"],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import { execSync } from "node:child_process";
|
|
||||||
import * as fs from "node:fs";
|
import * as fs from "node:fs";
|
||||||
import * as path from "node:path";
|
import * as path from "node:path";
|
||||||
import * as os from "node:os";
|
import * as os from "node:os";
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
export const VERSION = "0.4.0";
|
export const VERSION = "0.5.0";
|
||||||
Reference in New Issue
Block a user