@appchy/jarvis 0.1.78 → 0.1.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +14 -5
- package/dist/bin.js.map +1 -1
- package/dist/ui/app.js +25 -25
- package/harness/harness/architecture.py +6 -1
- package/harness/harness/gate.py +27 -0
- package/harness/harness/generate.py +18 -1
- package/harness/harness/git.py +41 -0
- package/harness/harness/migrate.py +15 -7
- package/harness/harness/model.py +33 -5
- package/harness/harness/report.py +18 -2
- package/harness/harness/tree.py +22 -1
- package/harness/harness/version.py +27 -5
- package/harness/test_work.py +240 -3
- package/harness/work.py +1 -0
- package/package.json +4 -4
package/harness/work.py
CHANGED
|
@@ -17,6 +17,7 @@ ledger: a durable rule lives in the domain or system that owns it, and
|
|
|
17
17
|
│ └── <epic>/epic.md the plan-it-together doc; removed at release
|
|
18
18
|
│ └── {queue,in-progress,blocked,complete}/<task>/
|
|
19
19
|
├── backlog/<epic>/<task>/ epics planned but not yet in a cut
|
|
20
|
+
├── complete/<cut>/ a cut that SHIPPED — released, outcome met
|
|
20
21
|
└── archive/<cut>/ a cut taken off the board unreleased
|
|
21
22
|
|
|
22
23
|
A VERSION is a release: it states a user-visible `outcome:`, and its folder is
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appchy/jarvis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.80",
|
|
4
4
|
"description": "Jarvis — local AI coding assistant CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -57,16 +57,16 @@
|
|
|
57
57
|
"typescript": "^5.7.0",
|
|
58
58
|
"vitest": "^2.1.0",
|
|
59
59
|
"@jarvis/agents": "1.0.0",
|
|
60
|
-
"@jarvis/anthropic": "1.0.0",
|
|
61
60
|
"@jarvis/board": "0.1.0",
|
|
61
|
+
"@jarvis/anthropic": "1.0.0",
|
|
62
62
|
"@jarvis/data": "0.1.0",
|
|
63
63
|
"@jarvis/errors": "1.0.0",
|
|
64
64
|
"@jarvis/logger": "1.0.0",
|
|
65
65
|
"@jarvis/rpc": "1.0.0",
|
|
66
66
|
"@jarvis/types": "1.0.0",
|
|
67
|
+
"@jarvis/ui": "0.1.0",
|
|
67
68
|
"@jarvis/typescript-config": "1.0.0",
|
|
68
|
-
"@jarvis/vitest-config": "1.0.0"
|
|
69
|
-
"@jarvis/ui": "0.1.0"
|
|
69
|
+
"@jarvis/vitest-config": "1.0.0"
|
|
70
70
|
},
|
|
71
71
|
"scripts": {
|
|
72
72
|
"dev": "tsx watch src/bin.ts start --foreground",
|