@appchy/jarvis 0.1.55 → 0.1.57
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 +46 -7
- package/dist/bin.js.map +1 -1
- package/dist/ui/app.js +30 -30
- package/dist/ui/favicon.svg +10 -0
- package/dist/ui/index.html +3 -0
- package/package.json +3 -3
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
|
|
2
|
+
<!-- The board, as a mark: three columns at different heights, which is what the page shows.
|
|
3
|
+
A solid brand-coloured tile rather than a glyph on transparency, so the tab reads the same
|
|
4
|
+
on a light and a dark browser chrome. The purple is the theme's `primary` (`purple.500`);
|
|
5
|
+
an asset cannot resolve a token, so the value is written out here and nowhere else. -->
|
|
6
|
+
<rect width="32" height="32" rx="7" fill="#7159a3" />
|
|
7
|
+
<rect x="7" y="9" width="4.5" height="14" rx="1.5" fill="#ffffff" opacity="0.95" />
|
|
8
|
+
<rect x="13.75" y="9" width="4.5" height="9" rx="1.5" fill="#ffffff" opacity="0.75" />
|
|
9
|
+
<rect x="20.5" y="9" width="4.5" height="5" rx="1.5" fill="#ffffff" opacity="0.55" />
|
|
10
|
+
</svg>
|
package/dist/ui/index.html
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
6
|
<title>Jarvis</title>
|
|
7
|
+
<!-- Named explicitly so the browser never falls back to asking for /favicon.ico, which this
|
|
8
|
+
server has nothing to answer with — a 404 on every single page load. -->
|
|
9
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
7
10
|
<style>
|
|
8
11
|
html,
|
|
9
12
|
body,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appchy/jarvis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.57",
|
|
4
4
|
"description": "Jarvis — local AI coding assistant CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -59,12 +59,12 @@
|
|
|
59
59
|
"@jarvis/agents": "1.0.0",
|
|
60
60
|
"@jarvis/anthropic": "1.0.0",
|
|
61
61
|
"@jarvis/board": "0.1.0",
|
|
62
|
-
"@jarvis/data": "0.1.0",
|
|
63
62
|
"@jarvis/errors": "1.0.0",
|
|
63
|
+
"@jarvis/data": "0.1.0",
|
|
64
64
|
"@jarvis/logger": "1.0.0",
|
|
65
65
|
"@jarvis/rpc": "1.0.0",
|
|
66
|
-
"@jarvis/typescript-config": "1.0.0",
|
|
67
66
|
"@jarvis/types": "1.0.0",
|
|
67
|
+
"@jarvis/typescript-config": "1.0.0",
|
|
68
68
|
"@jarvis/ui": "0.1.0",
|
|
69
69
|
"@jarvis/vitest-config": "1.0.0"
|
|
70
70
|
},
|