@appchy/jarvis 0.1.63 → 0.1.65

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.
@@ -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.63",
3
+ "version": "0.1.65",
4
4
  "description": "Jarvis — local AI coding assistant CLI",
5
5
  "private": false,
6
6
  "type": "module",
@@ -57,15 +57,15 @@
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",
60
61
  "@jarvis/board": "0.1.0",
62
+ "@jarvis/data": "0.1.0",
61
63
  "@jarvis/errors": "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/anthropic": "1.0.0",
68
+ "@jarvis/ui": "0.1.0",
69
69
  "@jarvis/vitest-config": "1.0.0"
70
70
  },
71
71
  "scripts": {