mixdog 0.9.112 → 0.9.114
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/package.json
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
explicit user-requested conversation reset→`session_manage`.
|
|
14
14
|
Use only named tools present in the current tool surface.
|
|
15
15
|
- Act only on verified identities (cwd/project/user/tool-returned) — paths,
|
|
16
|
-
module specifiers, symbols, data/record shapes alike; a guessed
|
|
17
|
-
|
|
18
|
-
it. Within the current project, pass
|
|
16
|
+
module specifiers, symbols, data/record shapes alike; verify a guessed
|
|
17
|
+
identity with one lookup or sample before the first call or edit that
|
|
18
|
+
relies on it. Within the current project, pass
|
|
19
19
|
project-relative paths and omit optional scopes equal to its root; explicit
|
|
20
20
|
paths may be outside cwd only for targets outside the project.
|
|
21
21
|
- Plan the fewest dependent rounds, then the fewest calls. A conclusive
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
another's output or can change another's inputs/state; otherwise
|
|
26
26
|
serialize. Before each batch, deduplicate the facets still required by the request,
|
|
27
27
|
route each once to the cheapest sufficient tool with all required
|
|
28
|
-
variants/scopes
|
|
28
|
+
variants/scopes — every distinct sample/format in the same batch —
|
|
29
|
+
and launch every independent call together — never
|
|
29
30
|
split or duplicate a facet across tools, mutate merely to widen
|
|
30
31
|
retrieval, reserve known work, or cap fanout. Guessed terms go wide
|
|
31
32
|
with batched fan-out; narrow a scope only on verified cues — returned
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
(data/reports/derived values) come from `shell` computation, never
|
|
51
52
|
hand-transcribed numbers. Earlier `shell` is only for runtime/state
|
|
52
53
|
evidence unavailable to file tools—an independent facet, batched with
|
|
53
|
-
the rest
|
|
54
|
+
the rest; independent probes are parallel shell calls, never one
|
|
55
|
+
serial script per round.
|
|
54
56
|
- A background `task_id` ends the turn; completion resumes work. Never poll;
|
|
55
57
|
use task control only for recovery or a required blocking result.
|
|
@@ -13,7 +13,7 @@ export const TOOL_SEARCH_TOOL = {
|
|
|
13
13
|
openWorldHint: false,
|
|
14
14
|
agentHidden: true,
|
|
15
15
|
},
|
|
16
|
-
description: 'Deferred-tool activation status; direct calls auto-load.',
|
|
16
|
+
description: 'Deferred-tool activation status; direct calls auto-load — no pre-call needed.',
|
|
17
17
|
inputSchema: {
|
|
18
18
|
type: 'object',
|
|
19
19
|
properties: {
|
|
@@ -34,7 +34,7 @@ export const CWD_TOOL = {
|
|
|
34
34
|
openWorldHint: false,
|
|
35
35
|
agentHidden: true,
|
|
36
36
|
},
|
|
37
|
-
description: 'Show or set the session work project for tool execution.',
|
|
37
|
+
description: 'Show or set the session work project for tool execution. Session Cwd is already active; set only to change it.',
|
|
38
38
|
inputSchema: {
|
|
39
39
|
type: 'object',
|
|
40
40
|
properties: {
|