@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 +8 -0
- package/README.md +6 -28
- package/dist/installer.d.ts +1 -1
- package/dist/role.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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
|
-
|
|
122
|
-
|
|
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
|
-
|
|
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)
|
|
125
|
+
Built by Parker Todd Brooks, Lēsa (OpenClaw, Claude Opus 4.6), Claude Code CLI (Claude Opus 4.6).
|
|
148
126
|
|
|
149
|
-
|
|
127
|
+
Search architecture inspired by [QMD](https://github.com/tobi/qmd) by Tobi Lutke (MIT, 2024-2026).
|
package/dist/installer.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ interface InstallState {
|
|
|
10
10
|
installedVersion: string | null;
|
|
11
11
|
repoVersion: string;
|
|
12
12
|
needsUpdate: boolean;
|
|
13
|
-
role: 'core' | 'node'
|
|
13
|
+
role: 'core' | 'node';
|
|
14
14
|
relayKeyExists: boolean;
|
|
15
15
|
}
|
|
16
16
|
declare function detectInstallState(): InstallState;
|
package/dist/role.d.ts
CHANGED
package/package.json
CHANGED