@appchy/jarvis 0.1.49 → 0.1.50
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 +345 -132
- package/dist/bin.js.map +1 -1
- package/dist/ui/app.js +102 -0
- package/dist/ui/index.html +22 -0
- package/harness/presets/appchy/PRESET.md +4 -2
- package/package.json +11 -2
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>Jarvis</title>
|
|
7
|
+
<style>
|
|
8
|
+
html,
|
|
9
|
+
body,
|
|
10
|
+
#root {
|
|
11
|
+
height: 100%;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
</style>
|
|
15
|
+
<!-- No stylesheet: the theme is Chakra's, resolved at runtime, so the page's every colour and
|
|
16
|
+
size arrives with the bundle rather than beside it. -->
|
|
17
|
+
</head>
|
|
18
|
+
<body>
|
|
19
|
+
<div id="root"></div>
|
|
20
|
+
<script type="module" src="/app.js"></script>
|
|
21
|
+
</body>
|
|
22
|
+
</html>
|
|
@@ -16,8 +16,10 @@ all of it here, resolved, with nothing layered on top and nothing correcting it
|
|
|
16
16
|
It was three files until 2026-08-25: a generic engine, one organisation's preset, and a repo-local
|
|
17
17
|
file that corrected the middle one. The split existed so a stranger could take the engine and decline
|
|
18
18
|
the opinions, and it cost every session three reads to assemble one answer — in the one repo where
|
|
19
|
-
the harness and the product are the same thing.
|
|
20
|
-
that
|
|
19
|
+
the harness and the product are the same thing. The split shipped on as a Claude Code skill for
|
|
20
|
+
repos that had not migrated; **there is nothing left to migrate** — jarvis, gotcha, crispy and
|
|
21
|
+
mixbrix all declare this preset, and the skill went with the plugin. This is the only one, and it
|
|
22
|
+
names its own tools.
|
|
21
23
|
|
|
22
24
|
## What this is
|
|
23
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appchy/jarvis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.50",
|
|
4
4
|
"description": "Jarvis — local AI coding assistant CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -45,6 +45,13 @@
|
|
|
45
45
|
"zod": "^3.25.76"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
+
"@chakra-ui/react": "^3.2.2",
|
|
49
|
+
"@emotion/react": "^11.13.5",
|
|
50
|
+
"@types/react": "^18.3.12",
|
|
51
|
+
"@types/react-dom": "^18.3.1",
|
|
52
|
+
"react": "^18.3.1",
|
|
53
|
+
"react-dom": "^18.3.1",
|
|
54
|
+
"react-icons": "^5.5.0",
|
|
48
55
|
"@types/ws": "^8.5.0",
|
|
49
56
|
"tsup": "^8.5.1",
|
|
50
57
|
"typescript": "^5.7.0",
|
|
@@ -53,10 +60,12 @@
|
|
|
53
60
|
"@jarvis/anthropic": "1.0.0",
|
|
54
61
|
"@jarvis/board": "0.1.0",
|
|
55
62
|
"@jarvis/data": "0.1.0",
|
|
63
|
+
"@jarvis/errors": "1.0.0",
|
|
56
64
|
"@jarvis/logger": "1.0.0",
|
|
57
65
|
"@jarvis/rpc": "1.0.0",
|
|
58
66
|
"@jarvis/types": "1.0.0",
|
|
59
67
|
"@jarvis/typescript-config": "1.0.0",
|
|
68
|
+
"@jarvis/ui": "0.1.0",
|
|
60
69
|
"@jarvis/vitest-config": "1.0.0"
|
|
61
70
|
},
|
|
62
71
|
"scripts": {
|
|
@@ -64,7 +73,7 @@
|
|
|
64
73
|
"build": "tsup",
|
|
65
74
|
"build:tsc": "tsc",
|
|
66
75
|
"start": "node dist/bin.js start",
|
|
67
|
-
"type-check": "tsc --noEmit",
|
|
76
|
+
"type-check": "tsc --noEmit && tsc -p tsconfig.ui.json",
|
|
68
77
|
"test:run": "vitest run"
|
|
69
78
|
}
|
|
70
79
|
}
|