@wipcomputer/memory-crystal 0.7.20 → 0.7.22

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/CHANGELOG.md CHANGED
@@ -19,6 +19,14 @@
19
19
 
20
20
 
21
21
 
22
+ ## 0.7.22 (2026-03-14)
23
+
24
+ Remove standalone role
25
+
26
+ ## 0.7.21 (2026-03-14)
27
+
28
+ Fix install URL
29
+
22
30
  ## 0.7.20 (2026-03-14)
23
31
 
24
32
  Add CLA, dual LICENSE, standardize README footer
package/README.md CHANGED
@@ -19,7 +19,7 @@ You use multiple AIs. They don't talk to each other. They can't search what the
19
19
  Open your AI and say:
20
20
 
21
21
  ```
22
- Read wip.computer/install/memory-crystal.txt
22
+ Read wip.computer/install/wip-memory-crystal.txt
23
23
 
24
24
  Then explain:
25
25
  1. What is Memory Crystal?
@@ -115,35 +115,13 @@ Run `ldm install` to see other components you can add.
115
115
 
116
116
  ## License
117
117
 
118
- Dual-license model designed to keep tools free while preventing commercial resellers.
119
-
120
118
  ```
121
- MIT All CLI tools, MCP servers, skills, and hooks (use anywhere, no restrictions).
122
- AGPLv3 Commercial redistribution, marketplace listings, or bundling into paid services.
119
+ src/core.ts, cli.ts, mcp-server.ts, skills/ MIT (use anywhere, no restrictions)
120
+ src/worker.ts, src/worker-mcp.ts AGPL (relay + cloud server)
123
121
  ```
124
122
 
125
- AGPLv3 for personal use is free. Commercial licenses available.
126
-
127
- ### Can I use this?
128
-
129
- **Yes, freely:**
130
- - Use any tool locally or on your own servers
131
- - Modify the code for your own projects
132
- - Include in your internal CI/CD pipelines
133
- - Fork it and send us feedback via PRs (we'd love that)
134
-
135
- **Need a commercial license:**
136
- - Bundle into a product you sell
137
- - List on a marketplace (Claude Marketplace, OAI GPT/Apps, Clawhub.ai, VS Code, etc.)
138
- - Offer as part of a hosted/SaaS platform
139
- - Redistribute commercially
140
-
141
- Using these tools to build your own software is fine. Reselling the tools themselves is what requires a commercial license.
142
-
143
- By submitting a PR, you agree to the [Contributor License Agreement](CLA.md).
144
-
145
- ---
123
+ AGPL for personal use is free.
146
124
 
147
- Built by Parker Todd Brooks, Lēsa (OpenClaw, Claude Opus 4.6), Claude Code (Claude Opus 4.6), GPT 5.x, Grok 4.20).
125
+ Built by Parker Todd Brooks, Lēsa (OpenClaw, Claude Opus 4.6), Claude Code CLI (Claude Opus 4.6).
148
126
 
149
- *WIP.computer. Learning Dreaming Machines.*
127
+ Search architecture inspired by [QMD](https://github.com/tobi/qmd) by Tobi Lutke (MIT, 2024-2026).
@@ -10,7 +10,7 @@ interface InstallState {
10
10
  installedVersion: string | null;
11
11
  repoVersion: string;
12
12
  needsUpdate: boolean;
13
- role: 'core' | 'node' | 'standalone';
13
+ role: 'core' | 'node';
14
14
  relayKeyExists: boolean;
15
15
  }
16
16
  declare function detectInstallState(): InstallState;
package/dist/role.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- type CrystalRole = 'core' | 'node' | 'standalone';
1
+ type CrystalRole = 'core' | 'node';
2
2
  interface RoleState {
3
3
  role: CrystalRole;
4
4
  override: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/memory-crystal",
3
- "version": "0.7.20",
3
+ "version": "0.7.22",
4
4
  "description": "Sovereign memory system — local-first with ephemeral encrypted relay. Your memory, your machine, your rules.",
5
5
  "type": "module",
6
6
  "main": "dist/core.js",