@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.
- package/AGENTS.md +10 -0
- package/package.json +12 -1
- package/scripts/install-boomerang.js +943 -0
- package/.github/workflows/npm-publish.yml +0 -58
- package/docs/CONCURRENCY_ARCHITECTURE.md +0 -610
- package/docs/CONFIG_RESEARCH.md +0 -104
- package/docs/PHASE3_DESIGN.md +0 -706
- package/docs/design-context-preservation.md +0 -329
- package/eslint.config.js +0 -27
- package/packages/opencode-plugin/src/asset-loader.ts +0 -201
- package/packages/opencode-plugin/src/git.ts +0 -77
- package/packages/opencode-plugin/src/index.ts +0 -346
- package/packages/opencode-plugin/src/memory.ts +0 -109
- package/packages/opencode-plugin/src/orchestrator.ts +0 -263
- package/packages/opencode-plugin/src/quality-gates.ts +0 -75
- package/packages/opencode-plugin/src/types.ts +0 -141
- package/src/concurrency/index.ts +0 -3
- package/src/concurrency/retry-executor.ts +0 -56
- package/src/concurrency/task-limiter.ts +0 -67
- package/src/concurrency/timeout-enforcer.ts +0 -57
- package/src/execution/task-runner.ts +0 -25
- package/src/index.ts +0 -35
- package/src/memini-client/index.ts +0 -762
- package/src/memini-client/schema.ts +0 -60
- package/src/memory/contradictions.ts +0 -164
- package/src/memory/graph.ts +0 -116
- package/src/memory/index.ts +0 -422
- package/src/memory/kg.ts +0 -166
- package/src/memory/schema.ts +0 -274
- package/src/memory/tiered.ts +0 -133
- package/src/memory/trust.ts +0 -218
- package/src/orchestrator.ts +0 -152
- package/src/protocol/types.ts +0 -79
- package/src/types.ts +0 -56
- package/tests/concurrency/retry-executor.test.ts +0 -82
- package/tests/concurrency/task-limiter.test.ts +0 -78
- package/tests/concurrency/timeout-enforcer.test.ts +0 -80
- package/tests/index.test.ts +0 -58
- package/tests/memini-client.test.ts +0 -321
- package/tests/memory/index.test.ts +0 -214
- package/tsconfig.json +0 -17
- 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.
|
|
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"
|