Files
CIAgent 2c68b44c1a merge: milestone/v0.4-distribution → main (v0.4 Distribution & Bootstrap CLI complete)
The nextcraft bootstrap CLI ships: doctor/bootstrap/verify/dev commands, a
one-liner install script with checksum + version integrity gates, and linux
x64 SEA binaries published on every release going forward (v0.3.2 onward).
Fresh-clone E2E proven; 34 CLI tests + full monorepo gates green.

Escalation note: merge_to_main hook — proceeding per full autonomy + founder
directive D-016 (streamlined install + bootstrap CLI + ongoing binaries,
recorded at P0 SPECIFY).

---ci---
phase: 4
milestone: v0.4
status: complete
requirements:
  covered: [REQ-4-001, REQ-4-002, REQ-4-003, REQ-4-004, REQ-4-005]
  partial: []
---/ci---
2026-09-12 23:17:43 +00:00

51 lines
1.0 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"]
},
"typecheck": {
"dependsOn": ["^build"]
},
"clean": {
"cache": false
},
"@nextcraft/ai-service#dev": {
"cache": false,
"persistent": true,
"outputs": []
},
"@nextcraft/ai-service#test": {
"cache": false,
"outputs": []
},
"@nextcraft/ai-service#bootstrap": {
"cache": false,
"outputs": []
},
"@nextcraft/ai-service#lint": {
"cache": false,
"outputs": []
},
"@nextcraft/cli#test": {
"cache": false,
"outputs": []
},
"@nextcraft/cli#dev": {
"cache": false,
"persistent": true
},
"@nextcraft/cli#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
}
}
}