@veedubin/boomerang-v3 0.3.2 → 0.3.4

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 (42) hide show
  1. package/AGENTS.md +10 -0
  2. package/package.json +12 -1
  3. package/scripts/install-boomerang.js +943 -0
  4. package/.github/workflows/npm-publish.yml +0 -58
  5. package/docs/CONCURRENCY_ARCHITECTURE.md +0 -610
  6. package/docs/CONFIG_RESEARCH.md +0 -104
  7. package/docs/PHASE3_DESIGN.md +0 -706
  8. package/docs/design-context-preservation.md +0 -329
  9. package/eslint.config.js +0 -27
  10. package/packages/opencode-plugin/src/asset-loader.ts +0 -201
  11. package/packages/opencode-plugin/src/git.ts +0 -77
  12. package/packages/opencode-plugin/src/index.ts +0 -346
  13. package/packages/opencode-plugin/src/memory.ts +0 -109
  14. package/packages/opencode-plugin/src/orchestrator.ts +0 -263
  15. package/packages/opencode-plugin/src/quality-gates.ts +0 -75
  16. package/packages/opencode-plugin/src/types.ts +0 -141
  17. package/src/concurrency/index.ts +0 -3
  18. package/src/concurrency/retry-executor.ts +0 -56
  19. package/src/concurrency/task-limiter.ts +0 -67
  20. package/src/concurrency/timeout-enforcer.ts +0 -57
  21. package/src/execution/task-runner.ts +0 -25
  22. package/src/index.ts +0 -35
  23. package/src/memini-client/index.ts +0 -762
  24. package/src/memini-client/schema.ts +0 -60
  25. package/src/memory/contradictions.ts +0 -164
  26. package/src/memory/graph.ts +0 -116
  27. package/src/memory/index.ts +0 -422
  28. package/src/memory/kg.ts +0 -166
  29. package/src/memory/schema.ts +0 -274
  30. package/src/memory/tiered.ts +0 -133
  31. package/src/memory/trust.ts +0 -218
  32. package/src/orchestrator.ts +0 -152
  33. package/src/protocol/types.ts +0 -79
  34. package/src/types.ts +0 -56
  35. package/tests/concurrency/retry-executor.test.ts +0 -82
  36. package/tests/concurrency/task-limiter.test.ts +0 -78
  37. package/tests/concurrency/timeout-enforcer.test.ts +0 -80
  38. package/tests/index.test.ts +0 -58
  39. package/tests/memini-client.test.ts +0 -321
  40. package/tests/memory/index.test.ts +0 -214
  41. package/tsconfig.json +0 -17
  42. package/vitest.config.ts +0 -19
package/AGENTS.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Boomerang Agent Roster
2
2
 
3
+ ## ⚡ CRITICAL: memini-ai Memory Protocol (MUST FOLLOW)
4
+
5
+ All agents **MUST** interact with memini-ai at every step:
6
+ 1. **Query FIRST** — Call `memini-ai-dev_query_memories` before starting work
7
+ 2. **Save DURING** — Call `memini-ai-dev_add_memory` after every meaningful decision
8
+ 3. **Preserve CONTEXT** — Save important context; query it back when continuing work
9
+
10
+ Failure to use memini-ai causes context loss, duplicate work, and wasted tokens.
11
+
12
+
3
13
  ## Core Agents
4
14
 
5
15
  > **Note**: Models are configurable. Use `install-agents.js --primary=<model> --secondary=<model>` to customize.
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.4",
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"