feat(P03): multi-project support, NFR milestone versioning, phase context reset, install scripts (v0.3.0)

This commit is contained in:
CI
2026-05-29 15:13:45 +00:00
parent e4bb3a9970
commit ddf04792c7
57 changed files with 1748 additions and 59 deletions
+13 -3
View File
@@ -1,20 +1,30 @@
{
"name": "@continuous-intelligence/ci",
"version": "0.2.0",
"version": "0.3.0",
"description": "Fully autonomous AI-driven software engineering harness - Continuous Intelligence",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ci": "./dist/cli/index.js"
},
"files": [
"dist/",
"opencode/",
"scripts/",
"templates/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "jest",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js",
"install": "bash scripts/install.sh"
},
"keywords": ["ci", "autonomous", "ai", "software-engineering", "agent"],
"keywords": ["ci", "autonomous", "ai", "software-engineering", "agent", "multi-project"],
"license": "MIT",
"engines": {
"node": ">=18.0.0"