release(v0.4.0): purge learnship, migrate .planning→.ci, fix backends, add test coverage

- Remove all learnship references: Decision.learnship_equivalent field,
  agent persona prompts, opencode.json permissions, test fixtures
- Migrate verification layers from .planning/ to .ci/: structural
  checks .ci/ dir + ROADMAP.md, behavioral checks ROADMAP.md
- Fix ollama-local: remove sync require+curl blocking, use async
  fetchAvailableModels() in callModel
- Fix opencode.json: use __OPENCODE_DIR__ template tokens, remove
  legacy learnship permission entries
- Remove duplicate install script from package.json (keep postinstall)
- Fix quality any-regex false positives (target type annotations only)
- Add backends test coverage: backends.test.ts, tool-registry.test.ts
- Version bump 0.3.0 → 0.4.0
- Artifacts module: rename .planning→.ci internal paths
- Remove dead TODO_PATTERN/FIXME_PATTERN constants

---ci---
phase: 3
milestone: v0.4
status: complete
requirements:
  covered: [REQ-09, REQ-10, REQ-11, REQ-13, REQ-14, REQ-17]
  partial: []
decisions:
  - id: D-001
    decision: purge all learnship references from codebase
    rationale: project is CI-only, learnship is no longer a dependency
    confidence: 0.99
    category: scope
    alternatives: [keep for historical reference]
  - id: D-002
    decision: migrate verification from .planning/ to .ci/ paths
    rationale: .planning/ is removed schema, all current state lives in .ci/
    confidence: 0.95
    category: architecture
    alternatives: [keep dual-path support]
  - id: D-003
    decision: use __OPENCODE_DIR__ template tokens in opencode.json
    rationale: hardcoded ~ paths fail in containers and non-standard homes
    confidence: 0.90
    category: implementation_approach
    alternatives: [keep tilde expansion]
---/ci---
This commit is contained in:
CI
2026-05-29 16:18:30 +00:00
parent 7a20784c87
commit fb3f1df13e
32 changed files with 364 additions and 136 deletions
+5 -6
View File
@@ -17,17 +17,16 @@ describe("ArtifactManager", () => {
});
describe("ensureStructure", () => {
it("creates .planning directory structure", () => {
it("creates .ci directory structure", () => {
manager.ensureStructure();
expect(fs.existsSync(path.join(tempDir, ".planning"))).toBe(true);
expect(fs.existsSync(path.join(tempDir, ".planning", "phases"))).toBe(true);
expect(fs.existsSync(path.join(tempDir, ".ci"))).toBe(true);
expect(fs.existsSync(path.join(tempDir, ".ci", "audit"))).toBe(true);
});
it("is idempotent", () => {
manager.ensureStructure();
manager.ensureStructure();
expect(fs.existsSync(path.join(tempDir, ".planning"))).toBe(true);
expect(fs.existsSync(path.join(tempDir, ".ci"))).toBe(true);
});
});
@@ -68,7 +67,7 @@ describe("ArtifactManager", () => {
manager.writeProject(manifest);
const projectPath = path.join(tempDir, ".planning", "PROJECT.md");
const projectPath = path.join(tempDir, ".ci", "PROJECT.md");
expect(fs.existsSync(projectPath)).toBe(true);
const content = fs.readFileSync(projectPath, "utf-8");
expect(content).toContain("Test Project");
@@ -132,7 +131,7 @@ describe("ArtifactManager", () => {
],
});
const decisionsPath = path.join(tempDir, ".planning", "DECISIONS.md");
const decisionsPath = path.join(tempDir, ".ci", "DECISIONS.md");
expect(fs.existsSync(decisionsPath)).toBe(true);
const content = fs.readFileSync(decisionsPath, "utf-8");
expect(content).toContain("D-001");
+14 -14
View File
@@ -2,7 +2,7 @@ import * as fs from "node:fs";
import * as path from "node:path";
import { writeFile, readFile, ensureDir } from "../utils/file.js";
const PLANNING_DIR = ".planning";
const CI_DIR = ".ci";
export interface ProjectManifest {
name: string;
@@ -48,18 +48,18 @@ export class ArtifactManager {
this.projectPath = projectPath;
}
private get planningDir(): string {
return path.join(this.projectPath, PLANNING_DIR);
private get ciDir(): string {
return path.join(this.projectPath, CI_DIR);
}
ensureStructure(): void {
ensureDir(this.planningDir);
ensureDir(path.join(this.planningDir, "phases"));
ensureDir(path.join(this.projectPath, ".ci", "audit"));
ensureDir(this.ciDir);
ensureDir(path.join(this.ciDir, "phases"));
ensureDir(path.join(this.ciDir, "audit"));
}
isInitialized(): boolean {
return fs.existsSync(path.join(this.planningDir, "PROJECT.md"));
return fs.existsSync(path.join(this.ciDir, "PROJECT.md"));
}
writeProject(manifest: ProjectManifest): void {
@@ -81,7 +81,7 @@ export class ArtifactManager {
}
lines.push("");
writeFile(path.join(this.planningDir, "PROJECT.md"), lines.join("\n"));
writeFile(path.join(this.ciDir, "PROJECT.md"), lines.join("\n"));
}
writeDecisions(decisions: DecisionsManifest): void {
@@ -99,11 +99,11 @@ export class ArtifactManager {
lines.push(`- **Timestamp**: ${d.timestamp}`);
lines.push("");
}
writeFile(path.join(this.planningDir, "DECISIONS.md"), lines.join("\n"));
writeFile(path.join(this.ciDir, "DECISIONS.md"), lines.join("\n"));
}
writeState(state: StateManifest): void {
writeJSON(path.join(this.planningDir, "STATE.md.json"), state);
writeJSON(path.join(this.ciDir, "STATE.md.json"), state);
const lines = [
"# Project State",
@@ -124,11 +124,11 @@ export class ArtifactManager {
}
lines.push("");
writeFile(path.join(this.planningDir, "STATE.md"), lines.join("\n"));
writeFile(path.join(this.ciDir, "STATE.md"), lines.join("\n"));
}
readState(): StateManifest | null {
const filePath = path.join(this.planningDir, "STATE.md.json");
const filePath = path.join(this.ciDir, "STATE.md.json");
if (!fs.existsSync(filePath)) return null;
return JSON.parse(fs.readFileSync(filePath, "utf-8"));
}
@@ -150,7 +150,7 @@ export class ArtifactManager {
artifactName: string,
content: string
): void {
const phaseDir = path.join(this.planningDir, "phases", `phase-${phase}`);
const phaseDir = path.join(this.ciDir, "phases", `phase-${phase}`);
ensureDir(phaseDir);
writeFile(path.join(phaseDir, artifactName), content);
}
@@ -160,7 +160,7 @@ export class ArtifactManager {
artifactName: string
): string | null {
const filePath = path.join(
this.planningDir,
this.ciDir,
"phases",
`phase-${phase}`,
artifactName
-1
View File
@@ -25,7 +25,6 @@ describe("Audit", () => {
confidence: 0.92,
category: "technology_choice",
alternatives_considered: [{ option: "MongoDB", rejected_reason: "No ACID" }],
learnship_equivalent: "discuss-phase would ask: What database?",
human_override: null,
};
-1
View File
@@ -26,7 +26,6 @@ describe("DecisionEngine", () => {
{ option: "MongoDB", rejected_reason: "No ACID transactions" },
{ option: "SQLite", rejected_reason: "No concurrent writes" },
],
learnship_equivalent: "discuss-phase would ask: What database? Options: A) PostgreSQL B) MongoDB",
};
describe("makeDecision", () => {
+2 -8
View File
@@ -10,7 +10,6 @@ export interface DecisionInput {
confidence: number;
category: DecisionCategory;
alternatives_considered: Alternative[];
learnship_equivalent: string;
phase?: string;
task?: string;
}
@@ -57,7 +56,6 @@ export class DecisionEngine {
confidence: input.confidence,
category: input.category,
alternatives_considered: input.alternatives_considered,
learnship_equivalent: input.learnship_equivalent,
human_override: null,
phase: input.phase,
task: input.task,
@@ -101,8 +99,7 @@ export class DecisionEngine {
decision: string,
rationale: string,
category: DecisionCategory,
alternatives: Alternative[] = [],
learnship_equivalent: string = ""
alternatives: Alternative[] = []
): DecisionResult {
return this.makeDecision({
decision,
@@ -110,7 +107,6 @@ export class DecisionEngine {
confidence: 0.95,
category,
alternatives_considered: alternatives,
learnship_equivalent,
});
}
@@ -118,8 +114,7 @@ export class DecisionEngine {
decision: string,
rationale: string,
category: DecisionCategory,
alternatives: Alternative[] = [],
learnship_equivalent: string = ""
alternatives: Alternative[] = []
): DecisionResult {
return this.makeDecision({
decision,
@@ -127,7 +122,6 @@ export class DecisionEngine {
confidence: 0.7,
category,
alternatives_considered: alternatives,
learnship_equivalent,
});
}
+1 -2
View File
@@ -10,8 +10,7 @@ describe("ErrorRecovery", () => {
beforeEach(() => {
tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "ci-recovery-test-"));
fs.mkdirSync(path.join(tempDir, ".planning", "phases"), { recursive: true });
fs.mkdirSync(path.join(tempDir, ".ci", "audit"), { recursive: true });
fs.mkdirSync(path.join(tempDir, ".ci"), { recursive: true });
recovery = new ErrorRecovery(DEFAULT_CI_CONFIG, tempDir);
});