@appchy/jarvis 0.1.63 → 0.1.64
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 +303 -126
- package/dist/bin.js.map +1 -1
- package/dist/ui/app.js +30 -30
- package/dist/ui/index.html +7 -0
- package/package.json +5 -5
package/dist/ui/index.html
CHANGED
|
@@ -21,5 +21,12 @@
|
|
|
21
21
|
<body>
|
|
22
22
|
<div id="root"></div>
|
|
23
23
|
<script type="module" src="/app.js"></script>
|
|
24
|
+
<!-- The server tells a page when its bundle has been rebuilt, which happens while somebody is
|
|
25
|
+
working on the board itself. A build serving what it shipped with answers this and never
|
|
26
|
+
says anything, so the page is the same file either way and no server rewrites it on the
|
|
27
|
+
way out. -->
|
|
28
|
+
<script>
|
|
29
|
+
new EventSource("/api/v1/ui/reload").onmessage = () => location.reload();
|
|
30
|
+
</script>
|
|
24
31
|
</body>
|
|
25
32
|
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appchy/jarvis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.64",
|
|
4
4
|
"description": "Jarvis — local AI coding assistant CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -56,16 +56,16 @@
|
|
|
56
56
|
"tsup": "^8.5.1",
|
|
57
57
|
"typescript": "^5.7.0",
|
|
58
58
|
"vitest": "^2.1.0",
|
|
59
|
-
"@jarvis/
|
|
59
|
+
"@jarvis/anthropic": "1.0.0",
|
|
60
60
|
"@jarvis/board": "0.1.0",
|
|
61
|
+
"@jarvis/data": "0.1.0",
|
|
61
62
|
"@jarvis/errors": "1.0.0",
|
|
63
|
+
"@jarvis/agents": "1.0.0",
|
|
62
64
|
"@jarvis/logger": "1.0.0",
|
|
63
65
|
"@jarvis/rpc": "1.0.0",
|
|
64
66
|
"@jarvis/types": "1.0.0",
|
|
65
|
-
"@jarvis/data": "0.1.0",
|
|
66
|
-
"@jarvis/ui": "0.1.0",
|
|
67
67
|
"@jarvis/typescript-config": "1.0.0",
|
|
68
|
-
"@jarvis/
|
|
68
|
+
"@jarvis/ui": "0.1.0",
|
|
69
69
|
"@jarvis/vitest-config": "1.0.0"
|
|
70
70
|
},
|
|
71
71
|
"scripts": {
|