zam-core 0.4.0 → 0.4.2
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/.agents/skills/zam/SKILL.md +1 -1
- package/README.de.md +19 -0
- package/README.md +19 -0
- package/dist/cli/index.js +501 -90
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +32 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -326,7 +326,7 @@ The `capture-ui` command supports:
|
|
|
326
326
|
|
|
327
327
|
On Windows, uses PowerShell/.NET for screen capture. On macOS, uses `screencapture`.
|
|
328
328
|
|
|
329
|
-
**Observer permissions (Layer 2
|
|
329
|
+
**Observer permissions (Layer 2).** `capture-ui` enforces a
|
|
330
330
|
user-configurable policy resolved from `zam settings`: `observer.scope`
|
|
331
331
|
(`off` | `window` | `fullscreen`), `observer.allowlist`, `observer.denylist`,
|
|
332
332
|
`observer.consent`, `observer.retention`. Set them with e.g.
|
package/README.de.md
CHANGED
|
@@ -63,6 +63,25 @@ Einstieg: `zam whoami --set <deine-id>`
|
|
|
63
63
|
|
|
64
64
|
---
|
|
65
65
|
|
|
66
|
+
## 🔄 ZAM aktuell halten
|
|
67
|
+
|
|
68
|
+
Prüfe, ob eine neuere Version vorliegt, und aktualisiere — ZAM wählt den passenden Mechanismus je nachdem, wie diese Kopie installiert wurde:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
zam update # neueste Version anwenden (fragt nach; -y überspringt)
|
|
72
|
+
zam update check # nur prüfen, ob ein Update verfügbar ist
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Was `zam update` je nach Installationskanal tut:
|
|
76
|
+
|
|
77
|
+
- **Developer** (Quell-Checkout, Standard für Mitwirkende) — holt den neuesten Quellcode, installiert Abhängigkeiten neu, baut die CLI und frischt die Skill-Dateien auf (`zam setup --force`). Danach den Agent-Client (z. B. Claude Code) neu starten, damit der aktualisierte `/zam`-Skill geladen wird.
|
|
78
|
+
- **winget / Homebrew** — delegiert an `winget upgrade` / `brew upgrade`, damit eine paketverwaltete Installation nie selbst ersetzt wird.
|
|
79
|
+
- **Direkt-Download / Desktop** — installiert ein signiertes In-place-Update über ZAM Desktop.
|
|
80
|
+
|
|
81
|
+
`zam update` verweigert einen Developer-Checkout mit uncommitteten Änderungen; committe oder stashe sie zuerst, oder nutze `--force`. Design-Details: [ADR „Approachable Setup and Self-Update“](docs/adr/2026-06-13b-approachable-setup-and-self-update.md).
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
66
85
|
## 🏛 Vision: Eine paradiesische Zukunft
|
|
67
86
|
|
|
68
87
|
ZAM ist das Werkzeug für den Übergang in eine Welt, in der Fürsorge und gemeinsames Wachstum die Währung sind.
|
package/README.md
CHANGED
|
@@ -83,6 +83,25 @@ Token deletion is global. Card deletion is per-user.
|
|
|
83
83
|
|
|
84
84
|
---
|
|
85
85
|
|
|
86
|
+
## 🔄 Keeping ZAM up to date
|
|
87
|
+
|
|
88
|
+
Check whether a newer release is out, then update — ZAM picks the right mechanism for how this copy was installed:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
zam update # apply the latest release (asks first; -y to skip)
|
|
92
|
+
zam update check # only report whether an update is available
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
What `zam update` does per install channel:
|
|
96
|
+
|
|
97
|
+
- **Developer** (source checkout, the default for contributors) — pulls the latest source, reinstalls dependencies, rebuilds the CLI, and refreshes the skill files (`zam setup --force`) in the current instance. Restart your agent client (e.g. Claude Code) afterwards to load the refreshed `/zam` skill.
|
|
98
|
+
- **winget / Homebrew** — defers to `winget upgrade` / `brew upgrade`, so a package-managed install is never self-replaced.
|
|
99
|
+
- **Direct download / desktop** — applies a signed in-place update through ZAM Desktop.
|
|
100
|
+
|
|
101
|
+
`zam update` refuses to touch a developer checkout with uncommitted changes; commit or stash them first, or pass `--force`. See the [“Approachable Setup and Self-Update” ADR](docs/adr/2026-06-13b-approachable-setup-and-self-update.md) for the design.
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
86
105
|
## 🏛 Vision: A Flourishing Future
|
|
87
106
|
|
|
88
107
|
ZAM is a tool for the transition to a world where care and shared growth are the common currency.
|