a0619f9740
- INTEG-01: E2E ideation test (19 tests with proper structure)
- INTEG-02: E2E multi-project test (14 tests)
- INTEG-03: Version bump 0.9.0 → 0.10.0
- INTEG-04: AGENTS.md and README updates
- INTEG-05: All 594 tests passing
- MULTI-04: max_concurrent_projects config in ParallelizationConfig
- Fixed e2e-ideation test nesting and assertion issues
---ci---
phase: 6
milestone: v0.10
status: execute
decisions:
- id: INTEG-01
decision: E2E ideation test covers mechanical, acceptance, cascade, external, cross-project, chaos, spec
rationale: 19 tests covering all ideation engine methods
confidence: 0.95
- id: INTEG-03
decision: Version bumped to 0.10.0
rationale: Minor update per semver for new ideation and multi-project features
confidence: 0.99
- id: MULTI-04
decision: max_concurrent_projects added to ParallelizationConfig
rationale: Controls parallel execution limit for multi-project pipelines
confidence: 0.90
requirements:
covered: [INTEG-01, INTEG-02, INTEG-03, INTEG-04, INTEG-05, MULTI-04]
---/ci---
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "@continuous-intelligence/ciagent",
|
|
"version": "0.10.0",
|
|
"description": "Fully autonomous AI-driven software engineering harness - Continuous Intelligence",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"ciagent": "./dist/cli/index.js"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"opencode/",
|
|
"templates/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "ts-node src/cli.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "jest",
|
|
"check-version": "node scripts/check-version.js",
|
|
"postbuild": "node scripts/ensure-shebang.js",
|
|
"prepublishOnly": "npm run build && node scripts/ensure-shebang.js && node scripts/check-version.js && npm test",
|
|
"validate-pack": "node scripts/validate-pack.js",
|
|
"install-opencode": "node scripts/postinstall.js"
|
|
},
|
|
"keywords": ["ciagent", "autonomous", "ai", "software-engineering", "agent", "multi-project"],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.cloudinit.dev/continuous-intelligence/ciagent.git"
|
|
},
|
|
"homepage": "https://git.cloudinit.dev/continuous-intelligence/ciagent",
|
|
"bugs": {
|
|
"url": "https://git.cloudinit.dev/continuous-intelligence/ciagent/issues"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^12.1.0",
|
|
"zod": "^3.23.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.5.0",
|
|
"@types/node": "^20.14.0",
|
|
"ts-node": "^10.9.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.2.0",
|
|
"@types/jest": "^29.5.0"
|
|
}
|
|
} |