@veedubin/boomerang-v3 0.3.2 → 0.3.3

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 (41) hide show
  1. package/package.json +12 -1
  2. package/scripts/install-boomerang.js +835 -0
  3. package/.github/workflows/npm-publish.yml +0 -58
  4. package/docs/CONCURRENCY_ARCHITECTURE.md +0 -610
  5. package/docs/CONFIG_RESEARCH.md +0 -104
  6. package/docs/PHASE3_DESIGN.md +0 -706
  7. package/docs/design-context-preservation.md +0 -329
  8. package/eslint.config.js +0 -27
  9. package/packages/opencode-plugin/src/asset-loader.ts +0 -201
  10. package/packages/opencode-plugin/src/git.ts +0 -77
  11. package/packages/opencode-plugin/src/index.ts +0 -346
  12. package/packages/opencode-plugin/src/memory.ts +0 -109
  13. package/packages/opencode-plugin/src/orchestrator.ts +0 -263
  14. package/packages/opencode-plugin/src/quality-gates.ts +0 -75
  15. package/packages/opencode-plugin/src/types.ts +0 -141
  16. package/src/concurrency/index.ts +0 -3
  17. package/src/concurrency/retry-executor.ts +0 -56
  18. package/src/concurrency/task-limiter.ts +0 -67
  19. package/src/concurrency/timeout-enforcer.ts +0 -57
  20. package/src/execution/task-runner.ts +0 -25
  21. package/src/index.ts +0 -35
  22. package/src/memini-client/index.ts +0 -762
  23. package/src/memini-client/schema.ts +0 -60
  24. package/src/memory/contradictions.ts +0 -164
  25. package/src/memory/graph.ts +0 -116
  26. package/src/memory/index.ts +0 -422
  27. package/src/memory/kg.ts +0 -166
  28. package/src/memory/schema.ts +0 -274
  29. package/src/memory/tiered.ts +0 -133
  30. package/src/memory/trust.ts +0 -218
  31. package/src/orchestrator.ts +0 -152
  32. package/src/protocol/types.ts +0 -79
  33. package/src/types.ts +0 -56
  34. package/tests/concurrency/retry-executor.test.ts +0 -82
  35. package/tests/concurrency/task-limiter.test.ts +0 -78
  36. package/tests/concurrency/timeout-enforcer.test.ts +0 -80
  37. package/tests/index.test.ts +0 -58
  38. package/tests/memini-client.test.ts +0 -321
  39. package/tests/memory/index.test.ts +0 -214
  40. package/tsconfig.json +0 -17
  41. package/vitest.config.ts +0 -19
package/package.json CHANGED
@@ -1,10 +1,21 @@
1
1
  {
2
2
  "name": "@veedubin/boomerang-v3",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Multi-agent orchestration plugin for OpenCode with memini-ai memory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "boomerang-setup": "./scripts/install-boomerang.js"
10
+ },
11
+ "files": [
12
+ "dist/",
13
+ "scripts/",
14
+ ".opencode/",
15
+ "AGENTS.md",
16
+ "package.json",
17
+ "README.md"
18
+ ],
8
19
  "repository": {
9
20
  "type": "git",
10
21
  "url": "https://github.com/Veedubin/Boomerang-v3"