mancode 0.6.4 → 0.6.6

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 (34) hide show
  1. package/README.en.md +165 -45
  2. package/README.md +109 -28
  3. package/dist/{chunk-7HPP3KYG.js → chunk-D5ABGAF4.js} +2422 -1003
  4. package/dist/chunk-D5ABGAF4.js.map +1 -0
  5. package/dist/chunk-GI24QVXE.js +1099 -0
  6. package/dist/chunk-GI24QVXE.js.map +1 -0
  7. package/dist/chunk-IRZQYMHD.js +334 -0
  8. package/dist/chunk-IRZQYMHD.js.map +1 -0
  9. package/dist/{chunk-WJ6WARGG.js → chunk-RMHUYJXB.js} +46 -47
  10. package/dist/chunk-RMHUYJXB.js.map +1 -0
  11. package/dist/chunk-THOE33LU.js +1124 -0
  12. package/dist/chunk-THOE33LU.js.map +1 -0
  13. package/dist/chunk-WRBNOPFA.js +1235 -0
  14. package/dist/chunk-WRBNOPFA.js.map +1 -0
  15. package/dist/cli.js +15488 -15613
  16. package/dist/cli.js.map +1 -1
  17. package/dist/gateway/worker.d.ts +2 -0
  18. package/dist/gateway/worker.js +181 -0
  19. package/dist/gateway/worker.js.map +1 -0
  20. package/dist/privacy-gateway-Q4GD2JXF.js +20 -0
  21. package/dist/store-LLXL7QYG.js +11 -0
  22. package/dist/{v3-adapter-T3IKK3LU.js → v3-adapter-KA2NOVI5.js} +2 -2
  23. package/dist/v3-adapter-KA2NOVI5.js.map +1 -0
  24. package/docs/README.md +34 -0
  25. package/docs/privacy-guide.md +76 -0
  26. package/docs/privacy-implementation-plan.md +101 -0
  27. package/docs/privacy-rule-sources.md +22 -0
  28. package/docs/privacy-upstream-license.txt +661 -0
  29. package/package.json +10 -4
  30. package/dist/chunk-7HPP3KYG.js.map +0 -1
  31. package/dist/chunk-WJ6WARGG.js.map +0 -1
  32. package/dist/store-LN63OL66.js +0 -9
  33. /package/dist/{store-LN63OL66.js.map → privacy-gateway-Q4GD2JXF.js.map} +0 -0
  34. /package/dist/{v3-adapter-T3IKK3LU.js.map → store-LLXL7QYG.js.map} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mancode",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "description": "AI coding agent workflow harness with mancode Continuity for cross-conversation tasks, decisions, verification, and team coordination.",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-only",
@@ -53,7 +53,11 @@
53
53
  "README.md",
54
54
  "README.en.md",
55
55
  "logo.png",
56
- "LICENSE"
56
+ "LICENSE",
57
+ "docs/privacy-guide.md",
58
+ "docs/privacy-implementation-plan.md",
59
+ "docs/privacy-rule-sources.md",
60
+ "docs/privacy-upstream-license.txt"
57
61
  ],
58
62
  "scripts": {
59
63
  "build": "tsup",
@@ -71,7 +75,8 @@
71
75
  },
72
76
  "dependencies": {
73
77
  "commander": "^12.1.0",
74
- "js-tiktoken": "^1.0.21"
78
+ "js-tiktoken": "^1.0.21",
79
+ "jsonc-parser": "^3.3.1"
75
80
  },
76
81
  "devDependencies": {
77
82
  "@biomejs/biome": "^1.9.4",
@@ -83,5 +88,6 @@
83
88
  },
84
89
  "overrides": {
85
90
  "esbuild": "0.27.2"
86
- }
91
+ },
92
+ "gitHead": "adedcf29f316ffd6a5dbf099bb448e244c8138ac"
87
93
  }