salidium 0.1.0

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.
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 44">
2
+ <title>Salidium</title>
3
+ <path
4
+ fill="#344047"
5
+ d="M12 1.1C17.2-.2 21.6.1 26.1 2.6l9.1 5c5.4 3 6.6 7.8 3 11.9l-2.7 2.9c-1.4 1.5-1 3.9.8 5.2l3.5 2.8c3.2 2.5 3.9 6.7 1.3 9.8-1.5 1.8-3.6 2.7-6.3 2.7H14.1c-4.3 0-7.3-2.1-9-6L.9 27.1c-1.2-2.7-.9-5.8.1-8.5L5.3 7.3C6.5 4.2 8.8 2 12 1.1Z"
6
+ />
7
+ <path
8
+ fill="#344047"
9
+ d="M46.3 14.1c1.8-1.4 4.2-1.6 6.2-.4l5.6 3.3c3.1 1.8 4.8 4.7 5.3 8.4l.6 9.4c.3 4.6-2.1 8.1-6.5 8.1h-7.1c-4.1 0-6.6-3.1-6.2-7 .4-3.2-.8-5.8-3.4-7.7-2.7-2-3.1-5.5-1.3-8.1l6.8-6Z"
10
+ />
11
+ </svg>
@@ -0,0 +1,15 @@
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.0" />
6
+ <meta name="color-scheme" content="light dark" />
7
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
8
+ <title>Salidium</title>
9
+ <script type="module" crossorigin src="/assets/index-kZRmL4Sh.js"></script>
10
+ <link rel="stylesheet" crossorigin href="/assets/index-B5glzwgK.css">
11
+ </head>
12
+ <body>
13
+ <div id="root"></div>
14
+ </body>
15
+ </html>
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "salidium",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "files": [
6
+ "bundle"
7
+ ],
8
+ "scripts": {
9
+ "build": "tsc --build",
10
+ "bundle": "node build.mjs",
11
+ "prepack": "node build.mjs",
12
+ "test": "vitest run --root ../.."
13
+ },
14
+ "bin": {
15
+ "salidium": "bundle/salidium.mjs"
16
+ },
17
+ "description": "See what your coding agent did, why, how, what is verified, what is left, and what needs you. Local-first, no telemetry.",
18
+ "license": "MIT",
19
+ "author": "Glendon Chin",
20
+ "homepage": "https://github.com/twinkling-reality/salidium#readme",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/twinkling-reality/salidium.git",
24
+ "directory": "packages/cli"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/twinkling-reality/salidium/issues"
28
+ },
29
+ "keywords": [
30
+ "claude-code",
31
+ "codex",
32
+ "coding-agent",
33
+ "observability",
34
+ "cli",
35
+ "local-first"
36
+ ],
37
+ "engines": {
38
+ "node": ">=24.0.0"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "devDependencies": {
44
+ "@salidium/adapter-kit": "workspace:*",
45
+ "@salidium/daemon": "workspace:*",
46
+ "@salidium/protocol": "workspace:*",
47
+ "@salidium/adapter-claude-code": "workspace:*",
48
+ "@salidium/adapter-codex": "workspace:*",
49
+ "@salidium/core": "workspace:*"
50
+ }
51
+ }