zam-core 0.3.7 → 0.3.11
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 +3145 -1427
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +499 -151
- package/dist/index.js +1885 -864
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -97,7 +97,7 @@ ZAM is a tool for the transition to a world where care and shared growth are the
|
|
|
97
97
|
|
|
98
98
|
ZAM now includes a cross-platform desktop application inside the [`desktop/`](desktop/) directory. Built with **Tauri v2**, **Vite**, **TypeScript**, and **Vanilla CSS**, it provides a premium dark-mode dashboard and active-recall learning studio that securely shares the same SQLite database as the CLI.
|
|
99
99
|
|
|
100
|
-
### How to Run on Windows or
|
|
100
|
+
### How to Run on Windows, macOS, or Linux:
|
|
101
101
|
|
|
102
102
|
1. **Build the CLI Bridge**:
|
|
103
103
|
Ensure you have compiled the latest CLI code in the repository root:
|
|
@@ -118,7 +118,7 @@ This will compile the secure Rust backend, spin up the Vite development server,
|
|
|
118
118
|
|
|
119
119
|
### 📦 Automated GitHub Releases & Native Installers
|
|
120
120
|
|
|
121
|
-
We have integrated a **GitHub Actions CI/CD workflow** that
|
|
121
|
+
We have integrated a **GitHub Actions CI/CD workflow** that currently compiles and packages native installers for Windows (`.msi`/`.exe`) and Linux (`.deb`/`.rpm`) when a new git tag is pushed. AppImage packaging is temporarily deferred because `linuxdeploy` cannot process the bundled native `libsql` module reliably. macOS builds remain supported from source, but signed/notarized macOS release artifacts are deferred until the Apple signing account is available.
|
|
122
122
|
|
|
123
123
|
To release a new version (e.g., `v0.1.0`):
|
|
124
124
|
|
|
@@ -130,7 +130,7 @@ git tag v0.1.0
|
|
|
130
130
|
git push origin v0.1.0
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
-
This automatically spins up the
|
|
133
|
+
This automatically spins up the Windows and Linux compiler environments on GitHub and creates a drafted GitHub Release containing their native redistributables.
|
|
134
134
|
|
|
135
135
|
---
|
|
136
136
|
|