@wipcomputer/memory-crystal 0.7.18 → 0.7.20
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 +10 -0
- package/CLA.md +19 -0
- package/LICENSE +33 -2
- package/README.md +27 -5
- package/dist/cc-hook.js +1 -1
- package/dist/cc-poller.js +1 -1
- package/dist/chunk-FBQWSDPC.js +1328 -0
- package/dist/cli.js +1 -1
- package/dist/core.js +1 -1
- package/dist/dream-weaver.js +1 -1
- package/dist/mcp-server.js +1 -1
- package/dist/migrate.js +1 -1
- package/dist/mirror-sync.js +1 -1
- package/dist/openclaw.js +1 -1
- package/dist/poller.js +1 -1
- package/dist/search-pipeline-XHFKADRG.js +73 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,16 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## 0.7.20 (2026-03-14)
|
|
23
|
+
|
|
24
|
+
Add CLA, dual LICENSE, standardize README footer
|
|
25
|
+
|
|
26
|
+
## 0.7.19 (2026-03-14)
|
|
27
|
+
|
|
28
|
+
Fix score normalization
|
|
29
|
+
|
|
20
30
|
## 0.7.18 (2026-03-13)
|
|
21
31
|
|
|
22
32
|
# Dev Update: Orphan Cleanup, DELETE Trigger, Doctor Fix
|
package/CLA.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
###### WIP Computer
|
|
2
|
+
|
|
3
|
+
# Contributor License Agreement
|
|
4
|
+
|
|
5
|
+
By submitting a pull request to this repository, you agree to the following:
|
|
6
|
+
|
|
7
|
+
1. **You grant WIP Computer, Inc. a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license** to use, reproduce, modify, distribute, sublicense, and otherwise exploit your contribution under any license, including commercial licenses.
|
|
8
|
+
|
|
9
|
+
2. **You retain copyright** to your contribution. This agreement does not transfer ownership. You can use your own code however you want.
|
|
10
|
+
|
|
11
|
+
3. **You confirm** that your contribution is your original work, or that you have the right to submit it under these terms.
|
|
12
|
+
|
|
13
|
+
4. **You understand** that your contribution may be used in both open source and commercial versions of this software.
|
|
14
|
+
|
|
15
|
+
This is standard open source governance. Apache, Google, Meta, and Anthropic all use similar agreements. The goal is simple: keep the tools free for everyone while allowing WIP Computer, Inc. to offer commercial licenses to companies that need them.
|
|
16
|
+
|
|
17
|
+
Using these tools to build your own software is always free. This agreement only matters if WIP Computer, Inc. needs to relicense the codebase commercially.
|
|
18
|
+
|
|
19
|
+
If you have questions, open an issue or reach out.
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
MIT
|
|
1
|
+
Dual License: MIT + AGPLv3
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2026
|
|
3
|
+
Copyright (c) 2026 WIP Computer, Inc.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
1. MIT License (local and personal use)
|
|
7
|
+
---------------------------------------
|
|
4
8
|
|
|
5
9
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
10
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -19,3 +23,30 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
19
23
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
24
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
25
|
SOFTWARE.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
2. GNU Affero General Public License v3.0 (commercial and cloud use)
|
|
29
|
+
--------------------------------------------------------------------
|
|
30
|
+
|
|
31
|
+
If you run this software as part of a hosted service, cloud platform,
|
|
32
|
+
marketplace listing, or any network-accessible offering for commercial
|
|
33
|
+
purposes, the AGPLv3 terms apply. You must either:
|
|
34
|
+
|
|
35
|
+
a) Release your complete source code under AGPLv3, or
|
|
36
|
+
b) Obtain a commercial license.
|
|
37
|
+
|
|
38
|
+
This program is free software: you can redistribute it and/or modify
|
|
39
|
+
it under the terms of the GNU Affero General Public License as published
|
|
40
|
+
by the Free Software Foundation, either version 3 of the License, or
|
|
41
|
+
(at your option) any later version.
|
|
42
|
+
|
|
43
|
+
This program is distributed in the hope that it will be useful,
|
|
44
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
45
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
46
|
+
GNU Affero General Public License for more details.
|
|
47
|
+
|
|
48
|
+
You should have received a copy of the GNU Affero General Public License
|
|
49
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
AGPLv3 for personal use is free. Commercial licenses available.
|
package/README.md
CHANGED
|
@@ -115,13 +115,35 @@ 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
|
+
|
|
118
120
|
```
|
|
119
|
-
|
|
120
|
-
|
|
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.
|
|
121
123
|
```
|
|
122
124
|
|
|
123
|
-
|
|
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
|
+
---
|
|
124
146
|
|
|
125
|
-
Built by Parker Todd Brooks, Lēsa (OpenClaw, Claude Opus 4.6), Claude Code
|
|
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).
|
|
126
148
|
|
|
127
|
-
|
|
149
|
+
*WIP.computer. Learning Dreaming Machines.*
|
package/dist/cc-hook.js
CHANGED