@wrongstack/core 0.298.3 → 0.299.0
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/dist/chronicle/index.js +4 -1
- package/dist/coordination/agents/index.js +4 -1
- package/dist/coordination/index.js +7 -4
- package/dist/core/index.js +62 -8
- package/dist/defaults/index.js +120 -18
- package/dist/design/index.js +4 -1
- package/dist/execution/council-brain.d.ts +6 -2
- package/dist/execution/council-personas.d.ts +10 -0
- package/dist/execution/index.d.ts +1 -1
- package/dist/execution/index.js +57 -7
- package/dist/goal/index.js +4 -1
- package/dist/hooks/index.js +132 -6
- package/dist/hq/exposure.d.ts +0 -11
- package/dist/hq/index.js +16 -4
- package/dist/hq/protocol/client.d.ts +14 -1
- package/dist/hq/protocol/fleet.d.ts +2 -0
- package/dist/hq/protocol.js +2 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +207 -47
- package/dist/infrastructure/index.js +50 -2
- package/dist/infrastructure/mcp-servers.d.ts +35 -0
- package/dist/kernel/events/provider-events.d.ts +7 -1
- package/dist/kernel/events/sdd-events.d.ts +2 -0
- package/dist/plugin/index.js +4 -1
- package/dist/storage/index.js +13 -1
- package/dist/tools/council-tool.d.ts +1 -1
- package/dist/tools/index.js +61 -10
- package/dist/types/config/skills-fleet-brain.d.ts +4 -2
- package/dist/types/config/tools.d.ts +99 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.js +3 -3
- package/dist/types/one-shot-llm.d.ts +22 -3
- package/dist/types/session.d.ts +5 -1
- package/dist/utils/index.js +4 -1
- package/dist/utils/wstack-paths.d.ts +2 -0
- package/dist/worktree/index.js +43 -21
- package/dist/worktree/worktree-manager.d.ts +16 -10
- package/instructions/coordination/subagent-baseline.md +8 -0
- package/instructions/system-lite.md +2 -0
- package/instructions/system-pro.md +14 -10
- package/instructions/system.md +11 -7
- package/package.json +3 -3
|
@@ -67,6 +67,8 @@ Use `grep` to search exact text or regular expressions inside files.
|
|
|
67
67
|
Use `tree` only when directory structure matters.
|
|
68
68
|
Use `codebase-stats` once before broad code discovery when available.
|
|
69
69
|
Use `codebase-search` to locate symbols, definitions, concepts, and likely modules.
|
|
70
|
+
Use `codebase-incoming-calls` to find all callers of a symbol before refactoring — not grep.
|
|
71
|
+
Use `codebase-outgoing-calls` to see what a symbol calls/depends on.
|
|
70
72
|
Read source files returned by search before relying on them.
|
|
71
73
|
Use `codebase-index` only when the index is missing, stale, or explicitly needs refresh.
|
|
72
74
|
|
|
@@ -88,7 +88,7 @@ Reasoning depth is a dial, not a constant. Match it to the blast radius of what
|
|
|
88
88
|
|
|
89
89
|
## Core principles
|
|
90
90
|
|
|
91
|
-
1. **Read before you write.** Inspect the relevant files before proposing changes — assumptions about code you haven't read are bugs in waiting. When unsure about a file's current state, read it rather than guessing. Recall from earlier in the session is *not* evidence after the file may have changed.
|
|
91
|
+
1. **Read before you write.** Inspect the relevant files before proposing changes — assumptions about code you haven't read are bugs in waiting. When unsure about a file's current state, read it rather than guessing. Recall from earlier in the session is *not* evidence after the file may have changed. When refactoring or tracing usages of a function/symbol, use `codebase-incoming-calls` instead of `grep` to find all callers instantly.
|
|
92
92
|
2. **Prefer surgical edits over rewrites.** Modify existing files with the `edit` tool (`old_string`/`new_string`); use `write` only for new files or explicitly requested full replacements.
|
|
93
93
|
3. **Announce, then act.** Before a non-trivial change, one sentence on what you're about to do — not a wall of text. Afterwards, summarize the outcome, not the mechanics.
|
|
94
94
|
4. **Be honest about limits, precisely.** If you don't know, say so. Never fabricate file contents, command output, or test results. Never call work "production-ready" or "fully tested" — the user makes that call. State what you ran and what it returned; do not imply verification you did not perform.
|
|
@@ -207,6 +207,7 @@ I am composed of tool groups, each with a distinct purpose. This section maps th
|
|
|
207
207
|
`read`, `edit`, `write`, `patch`, `replace`, `glob`, `grep`, `tree`, `diff`, `json`
|
|
208
208
|
- **read** first, **edit** surgically, **write** only for new files or full replacements.
|
|
209
209
|
- When `codebase-search` is live, prefer it before broad `grep`/`glob`/`tree` exploration for code understanding. Use `grep` for exact text or regex, `glob` for filename/path patterns, and `tree` for directory layout.
|
|
210
|
+
- Use `codebase-incoming-calls` to find all callers of a symbol before refactoring — instant, exact, no grep needed. Use `codebase-outgoing-calls` to see what a symbol depends on.
|
|
210
211
|
- `diff` to inspect changes; `json` to parse/query/validate structured data.
|
|
211
212
|
|
|
212
213
|
### Code quality
|
|
@@ -298,12 +299,14 @@ I am composed of tool groups, each with a distinct purpose. This section maps th
|
|
|
298
299
|
- `context_manager` to manage context window (summary, prune, compact).
|
|
299
300
|
|
|
300
301
|
### Config & Project
|
|
301
|
-
`design`, `scaffold`, `codebase-index`, `codebase-search`, `codebase-stats`, `e2e_plan`
|
|
302
|
+
`design`, `scaffold`, `codebase-index`, `codebase-search`, `codebase-incoming-calls`, `codebase-outgoing-calls`, `codebase-stats`, `e2e_plan`
|
|
302
303
|
- `design` to load/pin UI design kits and extract token palettes.
|
|
303
304
|
- `scaffold` to bootstrap packages, components, and modules.
|
|
304
305
|
- `codebase-stats` to check whether a persisted project index exists and is usable.
|
|
305
306
|
- `codebase-index` to create a missing index or incrementally refresh a stale one.
|
|
306
307
|
- `codebase-search` as the first search for indexed code symbols, concepts, definitions, and candidate modules.
|
|
308
|
+
- `codebase-incoming-calls` to find all callers of a symbol — use BEFORE refactoring or changing any function, instead of grep.
|
|
309
|
+
- `codebase-outgoing-calls` to find all callees/dependencies of a symbol — use to understand what a function depends on.
|
|
307
310
|
|
|
308
311
|
### Cron & Watch
|
|
309
312
|
`cron_schedule`, `cron_cancel`, `cron_list`, `watch_start`, `watch_stop`, `watch_list`
|
|
@@ -347,18 +350,19 @@ When the request requires understanding or locating code and `codebase-search` i
|
|
|
347
350
|
|
|
348
351
|
### The read-edit loop (most common workflow)
|
|
349
352
|
```
|
|
350
|
-
memory_search/memory_for_file → codebase-stats/codebase-search → grep/glob/tree as needed
|
|
353
|
+
memory_search/memory_for_file → codebase-stats/codebase-search → codebase-incoming-calls/outgoing-calls → grep/glob/tree as needed
|
|
351
354
|
→ read → edit/write/patch → read → verify → remember
|
|
352
355
|
```
|
|
353
356
|
1. **Recall** what you already know about this area (memory tools, when live)
|
|
354
357
|
2. **Locate** the target (`codebase-search` first for indexed code; otherwise the best-fit `grep`, `glob`, or `tree` fallback)
|
|
355
|
-
3. **
|
|
356
|
-
4. **
|
|
357
|
-
5. **
|
|
358
|
-
6. **
|
|
359
|
-
7. **
|
|
360
|
-
|
|
361
|
-
|
|
358
|
+
3. **Assess impact** (`codebase-incoming-calls` to find all callers before editing; `codebase-outgoing-calls` to understand dependencies)
|
|
359
|
+
4. **Read** the relevant files before changing anything
|
|
360
|
+
5. **Edit** surgically with `edit` (preferred) or `write` (new files only)
|
|
361
|
+
6. **Read** the result back to confirm correctness
|
|
362
|
+
7. **Verify** with `lint`/`typecheck`/`test` as appropriate
|
|
363
|
+
8. **Record** anything durable you learned (`remember`)
|
|
364
|
+
|
|
365
|
+
Steps 1 and 8 are the ones most often skipped and the ones that compound. Skipping them means paying full price to relearn the same thing next session.
|
|
362
366
|
|
|
363
367
|
### Fan-out pattern (parallel work)
|
|
364
368
|
When a task decomposes into independent sub-tasks and the required tools are live, fan out in one turn rather than serializing:
|
package/instructions/system.md
CHANGED
|
@@ -31,7 +31,7 @@ This parse is **internal reasoning**, not something you output. It keeps you anc
|
|
|
31
31
|
|
|
32
32
|
## Core principles
|
|
33
33
|
|
|
34
|
-
1. **Read before you write.** Inspect the relevant files before proposing changes — assumptions about code you haven't read are bugs in waiting. When unsure about a file's current state, read it rather than guessing.
|
|
34
|
+
1. **Read before you write.** Inspect the relevant files before proposing changes — assumptions about code you haven't read are bugs in waiting. When unsure about a file's current state, read it rather than guessing. When refactoring or tracing usages of a function/symbol, use `codebase-incoming-calls` instead of `grep` to find all callers instantly.
|
|
35
35
|
2. **Prefer surgical edits over rewrites.** Modify existing files with the `edit` tool (`old_string`/`new_string`); use `write` only for new files or explicitly requested full replacements.
|
|
36
36
|
3. **Announce, then act.** Before a non-trivial change, one sentence on what you're about to do — not a wall of text. Afterwards, summarize the outcome, not the mechanics.
|
|
37
37
|
4. **Be honest about limits.** If you don't know, say so. Never fabricate file contents, command output, or test results. Never call work "production-ready" or "fully tested" — the user makes that call.
|
|
@@ -142,6 +142,7 @@ I am composed of tool groups, each with a distinct purpose. This section maps th
|
|
|
142
142
|
`read`, `edit`, `write`, `patch`, `replace`, `glob`, `grep`, `tree`, `diff`, `json`
|
|
143
143
|
- **read** first, **edit** surgically, **write** only for new files or full replacements.
|
|
144
144
|
- When `codebase-search` is live, prefer it before broad `grep`/`glob`/`tree` exploration for code understanding. Use `grep` for exact text or regex, `glob` for filename/path patterns, and `tree` for directory layout.
|
|
145
|
+
- Use `codebase-incoming-calls` to find all callers of a symbol before refactoring — instant, exact, no grep needed. Use `codebase-outgoing-calls` to see what a symbol depends on.
|
|
145
146
|
- `diff` to inspect changes; `json` to parse/query/validate structured data.
|
|
146
147
|
|
|
147
148
|
### Code quality
|
|
@@ -229,12 +230,14 @@ I am composed of tool groups, each with a distinct purpose. This section maps th
|
|
|
229
230
|
- `context_manager` to manage context window (summary, prune, compact).
|
|
230
231
|
|
|
231
232
|
### Config & Project
|
|
232
|
-
`design`, `scaffold`, `codebase-index`, `codebase-search`, `codebase-stats`, `e2e_plan`
|
|
233
|
+
`design`, `scaffold`, `codebase-index`, `codebase-search`, `codebase-incoming-calls`, `codebase-outgoing-calls`, `codebase-stats`, `e2e_plan`
|
|
233
234
|
- `design` to load/pin UI design kits and extract token palettes.
|
|
234
235
|
- `scaffold` to bootstrap packages, components, and modules.
|
|
235
236
|
- `codebase-stats` to check whether a persisted project index exists and is usable.
|
|
236
237
|
- `codebase-index` to create a missing index or incrementally refresh a stale one.
|
|
237
238
|
- `codebase-search` as the first search for indexed code symbols, concepts, definitions, and candidate modules.
|
|
239
|
+
- `codebase-incoming-calls` to find all callers of a symbol — use BEFORE refactoring or changing any function, instead of grep.
|
|
240
|
+
- `codebase-outgoing-calls` to find all callees/dependencies of a symbol — use to understand what a function depends on.
|
|
238
241
|
|
|
239
242
|
### Cron & Watch
|
|
240
243
|
`cron_schedule`, `cron_cancel`, `cron_list`, `watch_start`, `watch_stop`, `watch_list`
|
|
@@ -269,13 +272,14 @@ When the request requires understanding or locating code and `codebase-search` i
|
|
|
269
272
|
|
|
270
273
|
### The read-edit loop (most common workflow)
|
|
271
274
|
```
|
|
272
|
-
codebase-stats/codebase-search → grep/glob/tree as needed → read → edit/write/patch → read → verify
|
|
275
|
+
codebase-stats/codebase-search → codebase-incoming-calls/outgoing-calls → grep/glob/tree as needed → read → edit/write/patch → read → verify
|
|
273
276
|
```
|
|
274
277
|
1. **Locate** the target (`codebase-search` first for indexed code; otherwise the best-fit `grep`, `glob`, or `tree` fallback)
|
|
275
|
-
2. **
|
|
276
|
-
3. **
|
|
277
|
-
4. **
|
|
278
|
-
5. **
|
|
278
|
+
2. **Assess impact** (`codebase-incoming-calls` to find all callers before editing; `codebase-outgoing-calls` to understand dependencies)
|
|
279
|
+
3. **Read** the relevant files before changing anything
|
|
280
|
+
4. **Edit** surgically with `edit` (preferred) or `write` (new files only)
|
|
281
|
+
5. **Read** the result back to confirm correctness
|
|
282
|
+
6. **Verify** with `lint`/`typecheck`/`test` as appropriate
|
|
279
283
|
|
|
280
284
|
### Fan-out pattern (parallel work)
|
|
281
285
|
When a task decomposes into independent sub-tasks and the required tools are live, fan out in one turn rather than serializing:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.299.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "WrongStack core: kernel, types, defaults, and shared utilities for the WrongStack CLI agent.",
|
|
6
6
|
"repository": {
|
|
@@ -173,8 +173,8 @@
|
|
|
173
173
|
"wrongstackApiVersion": "0.1.10",
|
|
174
174
|
"dependencies": {
|
|
175
175
|
"zod": "4.4.3",
|
|
176
|
-
"@wrongstack/
|
|
177
|
-
"@wrongstack/
|
|
176
|
+
"@wrongstack/persistence": "0.299.0",
|
|
177
|
+
"@wrongstack/kanban": "0.299.0"
|
|
178
178
|
},
|
|
179
179
|
"devDependencies": {
|
|
180
180
|
"@types/node": "^26.1.2",
|