@wipcomputer/wip-ldm-os 0.4.73-alpha.3 → 0.4.73-alpha.31

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.
Files changed (58) hide show
  1. package/LICENSE +52 -0
  2. package/bin/ldm.js +512 -95
  3. package/dist/bridge/chunk-3RG5ZIWI.js +10 -0
  4. package/dist/bridge/{chunk-LF7EMFBY.js → chunk-7NH6JBIO.js} +127 -49
  5. package/dist/bridge/cli.js +2 -1
  6. package/dist/bridge/core.d.ts +13 -1
  7. package/dist/bridge/core.js +4 -1
  8. package/dist/bridge/mcp-server.js +52 -7
  9. package/dist/bridge/openclaw.d.ts +5 -0
  10. package/dist/bridge/openclaw.js +11 -0
  11. package/docs/doc-pipeline/README.md +74 -0
  12. package/docs/doc-pipeline/TECHNICAL.md +79 -0
  13. package/lib/deploy.mjs +94 -10
  14. package/lib/detect.mjs +20 -6
  15. package/package.json +2 -2
  16. package/shared/docs/README.md.tmpl +2 -2
  17. package/shared/docs/how-install-works.md.tmpl +22 -2
  18. package/shared/docs/how-releases-work.md.tmpl +58 -42
  19. package/shared/docs/how-worktrees-work.md.tmpl +12 -7
  20. package/shared/rules/git-conventions.md +3 -3
  21. package/shared/rules/release-pipeline.md +1 -1
  22. package/shared/rules/security.md +1 -1
  23. package/shared/rules/workspace-boundaries.md +1 -1
  24. package/shared/rules/writing-style.md +1 -1
  25. package/shared/templates/claude-md-level1.md +7 -3
  26. package/src/bridge/core.ts +160 -56
  27. package/src/bridge/mcp-server.ts +93 -8
  28. package/src/bridge/openclaw.ts +14 -0
  29. package/src/hooks/inbox-check-hook.mjs +232 -0
  30. package/src/hooks/inbox-rewake-hook.mjs +388 -0
  31. package/src/hosted-mcp/.env.example +3 -0
  32. package/src/hosted-mcp/demo/agent.html +300 -0
  33. package/src/hosted-mcp/demo/agent.txt +84 -0
  34. package/src/hosted-mcp/demo/fallback.jpg +0 -0
  35. package/src/hosted-mcp/demo/footer.js +74 -0
  36. package/src/hosted-mcp/demo/index.html +1303 -0
  37. package/src/hosted-mcp/demo/login.html +548 -0
  38. package/src/hosted-mcp/demo/privacy.html +223 -0
  39. package/src/hosted-mcp/demo/sprites.jpg +0 -0
  40. package/src/hosted-mcp/demo/sprites.png +0 -0
  41. package/src/hosted-mcp/demo/tos.html +198 -0
  42. package/src/hosted-mcp/deploy.sh +70 -0
  43. package/src/hosted-mcp/ecosystem.config.cjs +14 -0
  44. package/src/hosted-mcp/inbox.mjs +64 -0
  45. package/src/hosted-mcp/legal/internet-services/terms/site.html +205 -0
  46. package/src/hosted-mcp/legal/privacy/en-ww/index.html +230 -0
  47. package/src/hosted-mcp/nginx/mcp-oauth.conf +98 -0
  48. package/src/hosted-mcp/nginx/mcp-server.conf +17 -0
  49. package/src/hosted-mcp/nginx/wip.computer.conf +45 -0
  50. package/src/hosted-mcp/package-lock.json +2092 -0
  51. package/src/hosted-mcp/package.json +23 -0
  52. package/src/hosted-mcp/prisma/migrations/20260406233014_init/migration.sql +68 -0
  53. package/src/hosted-mcp/prisma/migrations/migration_lock.toml +3 -0
  54. package/src/hosted-mcp/prisma/schema.prisma +57 -0
  55. package/src/hosted-mcp/prisma.config.ts +14 -0
  56. package/src/hosted-mcp/server.mjs +2079 -0
  57. package/src/hosted-mcp/tools.mjs +73 -0
  58. package/templates/hooks/pre-commit +5 -0
package/LICENSE ADDED
@@ -0,0 +1,52 @@
1
+ Dual License: MIT + AGPLv3
2
+
3
+ Copyright (c) 2026 WIP Computer, Inc.
4
+
5
+
6
+ 1. MIT License (local and personal use)
7
+ ---------------------------------------
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
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.