mixdog 0.7.13 → 0.7.14
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/defaults/user-workflow.json +3 -2
- package/defaults/user-workflow.md +14 -13
- package/native/prebuilt/windows-x86_64/mixdog-shim.exe +0 -0
- package/package.json +1 -1
- package/src/agent/orchestrator/tools/graph-manifest.json +11 -11
- package/src/agent/orchestrator/tools/patch-manifest.json +7 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mixdog",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.14",
|
|
4
4
|
"description": "Claude Code all-in-one agent plugin — autonomous agents, continuous memory, cost-aware sub-agents, and syntax-aware code editing.",
|
|
5
5
|
"hooks": "./hooks/hooks.json",
|
|
6
6
|
"mcpServers": {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"roles": [
|
|
3
3
|
{ "name": "worker", "preset": "sonnet-high", "permission": "full" },
|
|
4
|
-
{ "name": "
|
|
5
|
-
{ "name": "
|
|
4
|
+
{ "name": "heavy-worker", "preset": "opus-high", "permission": "full" },
|
|
5
|
+
{ "name": "reviewer", "preset": "opus-xhigh", "permission": "full" },
|
|
6
|
+
{ "name": "debugger", "preset": "opus-xhigh", "permission": "full" }
|
|
6
7
|
]
|
|
7
8
|
}
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
Default
|
|
2
|
-
- Implementation → worker
|
|
3
|
-
- Verification → reviewer
|
|
4
|
-
- Debugging → debugger
|
|
1
|
+
Default roles:
|
|
2
|
+
- Implementation → worker for clear, well-specified, mechanical changes of contained scope; heavy-worker when the brief is vague/open-ended or the change is bulk/multi-file. The axis is brief clarity + scope, not raw difficulty — a hard but well-specified, contained task still goes to worker. Pair either tier with a reviewer identically.
|
|
3
|
+
- Verification → reviewer. Debugging → debugger.
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
- Pair every implementation worker 1:1 with its own reviewer: the moment a worker completes, immediately dispatch a dedicated reviewer scoped to that worker's files. Parallel fix workers get parallel paired reviewers — reviews never serialize behind one combined pass. Start the Lead self-check (syntax check, diff inspection, invariant verification) in parallel too.
|
|
8
|
-
- When several workers touched interacting files, the LEAD performs ONE thin integration pass DIRECTLY (Lead self-check — NOT a dispatched reviewer; spawning another reviewer adds latency) to catch cross-file effects. Never replace the 1:1 paired reviewers with a single combined reviewer.
|
|
9
|
-
- If a reviewer returns issues, dispatch a fix worker → re-pair it 1:1 with a reviewer. Repeat until every reviewer issues a clean verdict ("all issues resolved" / "ship-ready").
|
|
10
|
-
- If issues require changing the original plan/spec (not just fixable bugs), halt the loop and report to the user. Resume only after the user updates the plan.
|
|
11
|
-
- Do not report completion to the user before every reviewer's clean verdict. Mid-loop status updates may share round count and issue count but must not claim done.
|
|
5
|
+
Who edits — delegate by default. Implementation and other state-changing edits go to a worker with a paired reviewer, even when the change looks small. The Lead edits directly only when all three hold: it already has full context from its own investigation, the change is genuinely small (a few lines across 1-2 files), and there is nothing else to parallelize. Lead-owned config and git work is always direct. When in doubt, or as soon as scope grows, delegate. A reviewer pairs 1:1 regardless of who made the edit.
|
|
12
6
|
|
|
13
|
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
7
|
+
Cross-verification loop (1:1 worker↔reviewer pairing is the default):
|
|
8
|
+
- The moment a worker finishes, first dispatch a reviewer scoped to its files, then immediately run the Lead self-check (syntax, diff, invariants) while the reviewer works. Parallel workers get parallel reviewers — reviews never queue behind one combined pass.
|
|
9
|
+
- When workers touched interacting files, the Lead does one thin integration pass directly (a Lead self-check, not another dispatched reviewer) to catch cross-file effects. Never collapse the paired reviewers into a single combined review.
|
|
10
|
+
- If a reviewer finds issues, dispatch a fix worker and re-pair it with a reviewer; repeat until every reviewer is clean ("ship-ready").
|
|
11
|
+
- If an issue requires changing the plan/spec rather than just fixing a bug, halt and report to the user; resume only after the plan is updated.
|
|
12
|
+
- Don't report completion before every reviewer's clean verdict. Mid-loop updates may share round/issue counts but must not claim done.
|
|
13
|
+
|
|
14
|
+
Fan-out (dispatching N agents in parallel) is a shared technique any role can use — worker, reviewer, debugger, explore. Use a debugger when a bug's root cause is unclear; plain code search and location stay explore's (explorer) job.
|
|
15
|
+
- For a hard bug (unknown cause, intermittent repro, multi-subsystem, or a fix worker's first attempt failed), fan out N debuggers, each investigating independently from a distinct angle (data flow, state/lifecycle, boundary/concurrency), blind to the others.
|
|
16
|
+
- Each debugger only diagnoses — root cause, minimal repro, proposed fix — and never implements. The Lead converges the diagnoses (agreement raises confidence, divergence triggers a cross-check), then hands the agreed cause to a fix worker paired 1:1 with a reviewer.
|
|
16
17
|
- Skip the fan-out for an obvious diff mistake — go straight to a fix worker.
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mixdog",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.14",
|
|
4
4
|
"description": "Claude Code all-in-one bridge plugin: role-based bridge workers, continuous memory, and syntax-aware code editing.",
|
|
5
5
|
"author": "mixdog contributors <dev@tribgames.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.7.
|
|
2
|
+
"version": "0.7.14",
|
|
3
3
|
"_comment": "Rewritten by .github/workflows/graph-release.yml on each tagged release. assets maps platformKey (process.platform-process.arch, e.g. win32-x64, linux-x64, darwin-arm64) to { url, sha256 } of the mixdog-graph binary on the GitHub release. A local cargo build under native/mixdog-graph/target/release always takes precedence at runtime. (v0.5.236 entries were filled manually after CI's commit step hit detached HEAD; the workflow now checks out ref: main so future releases self-update.)",
|
|
4
4
|
"assets": {
|
|
5
5
|
"darwin-arm64": {
|
|
6
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
7
|
-
"sha256": "
|
|
6
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-graph-darwin-arm64",
|
|
7
|
+
"sha256": "53f45f8373000fb55ccb49f9b03af0275ca2a663f924b68ee8ded4535e14445a"
|
|
8
8
|
},
|
|
9
9
|
"darwin-x64": {
|
|
10
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
11
|
-
"sha256": "
|
|
10
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-graph-darwin-x64",
|
|
11
|
+
"sha256": "347dc5e1b39dfc33ae07e01319b085c1f1ee775a70be1ac09f7b0d2954b36591"
|
|
12
12
|
},
|
|
13
13
|
"linux-arm64": {
|
|
14
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
15
|
-
"sha256": "
|
|
14
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-graph-linux-arm64",
|
|
15
|
+
"sha256": "7648be2c4bc89bef837b4843639a9ab38c382ba103518ad52d4439587521542f"
|
|
16
16
|
},
|
|
17
17
|
"linux-x64": {
|
|
18
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
19
|
-
"sha256": "
|
|
18
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-graph-linux-x64",
|
|
19
|
+
"sha256": "6e5a1b548c69c3a51170eb11c769985be7ca7029ede2597b19304c8dc106eded"
|
|
20
20
|
},
|
|
21
21
|
"win32-x64": {
|
|
22
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
23
|
-
"sha256": "
|
|
22
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-graph-win32-x64.exe",
|
|
23
|
+
"sha256": "2ca840a008a26a6ebdeab2803a994c6b2a462b178269cc3e2ab5a005c51d3663"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.7.
|
|
2
|
+
"version": "0.7.14",
|
|
3
3
|
"_comment": "Rewritten by .github/workflows/patch-release.yml on each tagged release. assets maps platformKey (process.platform-process.arch, e.g. win32-x64, linux-x64, darwin-arm64) to { url, sha256 } of the mixdog-patch binary on the GitHub release. A local cargo build under native/mixdog-patch/target/release always takes precedence; otherwise the binary is fetched per this manifest into the data dir (apply is native-only — no JS apply engine).",
|
|
4
4
|
"assets": {
|
|
5
5
|
"darwin-arm64": {
|
|
6
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
6
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-patch-darwin-arm64",
|
|
7
7
|
"sha256": "836a0b60a443b0a6a8c1bbe24d15a79ed70ee92c2f0fbc05374c4e9ed2536415"
|
|
8
8
|
},
|
|
9
9
|
"darwin-x64": {
|
|
10
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
10
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-patch-darwin-x64",
|
|
11
11
|
"sha256": "cab10c4e1e8b72d3958241dffdff764712ed74f4861d105bafa8258961215c98"
|
|
12
12
|
},
|
|
13
13
|
"linux-arm64": {
|
|
14
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
14
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-patch-linux-arm64",
|
|
15
15
|
"sha256": "a90c32ce3417a7d853f2723f82f3613cf2cd030fe885cf710cfc9f8e4b193264"
|
|
16
16
|
},
|
|
17
17
|
"linux-x64": {
|
|
18
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
18
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-patch-linux-x64",
|
|
19
19
|
"sha256": "0fea40ab98acd35bfb47515756024d1882a2abbaddce8a0b51642d20ac405577"
|
|
20
20
|
},
|
|
21
21
|
"win32-x64": {
|
|
22
|
-
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.
|
|
23
|
-
"sha256": "
|
|
22
|
+
"url": "https://github.com/trib-plugin/mixdog/releases/download/v0.7.14/mixdog-patch-win32-x64.exe",
|
|
23
|
+
"sha256": "d6e7d19bf48c55f3a54bf5183546b657f2a34ebb235f25304d2d37b74017c873"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|