zam-core 0.3.7 → 0.3.12
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/.agent/skills/zam/SKILL.md +170 -7
- package/.agents/skills/zam/SKILL.md +170 -7
- package/.claude/skills/zam/SKILL.md +170 -7
- package/README.de.md +3 -3
- package/README.md +3 -3
- package/dist/cli/index.js +3918 -1502
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +572 -151
- package/dist/index.js +2372 -1076
- package/dist/index.js.map +1 -1
- package/package.json +9 -2
- package/templates/personal/beliefs/README.md +1 -1
- package/templates/personal/foundations/README.md +19 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zam-core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.12",
|
|
4
4
|
"description": "The Symbiotic Learning Kernel: Elevating Human Intelligence through AI Collaboration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -35,7 +35,11 @@
|
|
|
35
35
|
"typecheck": "tsc --noEmit",
|
|
36
36
|
"lint": "biome check src/",
|
|
37
37
|
"format": "biome format --write src/",
|
|
38
|
-
"desktop:prepare": "node scripts/prepare-desktop-bridge.mjs"
|
|
38
|
+
"desktop:prepare": "node scripts/prepare-desktop-bridge.mjs",
|
|
39
|
+
"observer:check": "cargo check --manifest-path observer/Cargo.toml",
|
|
40
|
+
"observer:test": "cargo test --manifest-path observer/Cargo.toml",
|
|
41
|
+
"observer:build": "cargo build --manifest-path observer/Cargo.toml --release",
|
|
42
|
+
"observer:prepare": "node scripts/prepare-observer-sidecar.mjs"
|
|
39
43
|
},
|
|
40
44
|
"repository": {
|
|
41
45
|
"type": "git",
|
|
@@ -63,6 +67,9 @@
|
|
|
63
67
|
"optionalDependencies": {
|
|
64
68
|
"libsql": "^0.5.29"
|
|
65
69
|
},
|
|
70
|
+
"overrides": {
|
|
71
|
+
"esbuild": "0.28.1"
|
|
72
|
+
},
|
|
66
73
|
"devDependencies": {
|
|
67
74
|
"@biomejs/biome": "^2.4.8",
|
|
68
75
|
"@types/better-sqlite3": "^7.6.13",
|
|
@@ -6,7 +6,7 @@ The ZAM agent reads these beliefs to understand your perspective. When new evide
|
|
|
6
6
|
|
|
7
7
|
## Structure
|
|
8
8
|
|
|
9
|
-
Each subfolder holds a belief and decomposes it into at most 7 components (Miller's number). Follow the same pattern as the [core beliefs](https://github.com/zam-os/zam/tree/main/beliefs).
|
|
9
|
+
Each subfolder holds a belief and decomposes it into at most 7 components (Miller's number). Follow the same pattern as the [core beliefs](https://github.com/zam-os/zam/tree/main/beliefs). Where a belief rests on a chosen, unprovable starting point, that ground belongs in [foundations](../foundations/) instead.
|
|
10
10
|
|
|
11
11
|
## Example
|
|
12
12
|
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# My Foundations
|
|
2
|
+
|
|
3
|
+
This folder captures how you define yourself — the chosen starting points everything else rests on. Unlike beliefs, foundations are not weighed against evidence. They are deliberately *chosen* among options that cannot be proven, and you decide to stand on them.
|
|
4
|
+
|
|
5
|
+
The ZAM agent treats your foundations as a shared lens: it interprets what you say and decides how to help *through* them, so you and the agent act as one. This is their everyday value. Foundations change rarely — usually only after a large investment of thought, or a disruptive, shaking event. They stay open to revisiting in reflective moments, but they are not relitigated in daily work.
|
|
6
|
+
|
|
7
|
+
In a shared instance — a team or community — foundations are the common ground everyone stands on, and the first thing a newly onboarded member learns. You approve changes by committing them; a foundation change is a deliberate, well-considered act.
|
|
8
|
+
|
|
9
|
+
## Structure
|
|
10
|
+
|
|
11
|
+
Each subfolder holds a foundation and decomposes it into at most 7 components (Miller's number), the same pattern as [beliefs](../beliefs/). Foundations sit *beneath* beliefs: a belief is your interpretation of the world; a foundation is the chosen ground that interpretation rests on.
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
- **Purpose** — Why you do this at all; the "why" beneath the work.
|
|
16
|
+
- **Core values** — The non-negotiables every decision is measured against.
|
|
17
|
+
- **Team charter** — (shared instances) The principles a team commits to operate by.
|
|
18
|
+
|
|
19
|
+
Create a subfolder for each foundation. Write a `README.md` that states it and decomposes it.
|