mixdog 0.9.6 → 0.9.7

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/README.md CHANGED
@@ -32,14 +32,14 @@ repo-focused tools for reading, editing, testing, and reviewing code.
32
32
  ## Install
33
33
 
34
34
  ```bash
35
- npm install
35
+ npm install -g mixdog
36
+ mixdog --help
36
37
  ```
37
38
 
38
- To install the `mixdog` command globally from this checkout:
39
+ For local development from this checkout:
39
40
 
40
41
  ```bash
41
- npm install -g .
42
- mixdog --help
42
+ npm install
43
43
  ```
44
44
 
45
45
  ## Run
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mixdog",
3
- "version": "0.9.6",
3
+ "version": "0.9.7",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Standalone mixdog coding-agent CLI/TUI workspace.",
@@ -1060,7 +1060,7 @@ export async function sendViaWebSocket({
1060
1060
  });
1061
1061
  const chainFallback = mode !== 'delta'
1062
1062
  && deltaReason
1063
- && !['no_anchor', 'full_forced'].includes(deltaReason);
1063
+ && !['no_anchor', 'full_forced', 'full_default'].includes(deltaReason);
1064
1064
  if (chainFallback || (mode === 'delta' && deltaReason)) {
1065
1065
  appendAgentTrace({
1066
1066
  sessionId: poolKey,