@wrongstack/core 0.305.1 → 0.306.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/coordination/agents/index.js +3 -2
- package/dist/coordination/agents/types.d.ts +1 -1
- package/dist/coordination/index.js +3 -2
- package/dist/core/index.d.ts +2 -1
- package/dist/core/index.js +2764 -2632
- package/dist/core/system-prompt-blocks.d.ts +1 -1
- package/dist/core/system-prompt-builder.d.ts +7 -1
- package/dist/core/system-prompt-glossary.d.ts +0 -23
- package/dist/defaults/index.js +3 -2
- package/dist/execution/index.js +3 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +875 -530
- package/dist/observability/index.js +7 -3
- package/dist/plugin/index.d.ts +4 -3
- package/dist/plugin/index.js +589 -143
- package/dist/plugins/auto-review-plugin.d.ts +14 -7
- package/dist/plugins/chimera-plugin.d.ts +15 -1
- package/dist/plugins/review-finding-integration.d.ts +15 -3
- package/dist/plugins/review-finding-parser.d.ts +36 -0
- package/dist/plugins/review-finding-types.d.ts +46 -0
- package/dist/plugins/review-finding-verification.d.ts +53 -0
- package/dist/plugins/review-report-integration.d.ts +1 -0
- package/dist/plugins/review-report-store.d.ts +7 -0
- package/dist/plugins/review-report-types.d.ts +14 -0
- package/dist/plugins/review-types.d.ts +74 -0
- package/dist/replay/replay-provider-runner.d.ts +5 -4
- package/dist/tools/fallback-manage-tool-options.d.ts +9 -0
- package/dist/tools/index.js +91 -38
- package/dist/tools/one-shot-llm-tool.d.ts +6 -0
- package/dist/types/blocks.d.ts +10 -0
- package/dist/utils/index.js +8 -9
- package/instructions/agents/browser.md +1 -0
- package/instructions/agents/e2e.md +2 -0
- package/instructions/llm/chimera-review.md +52 -1
- package/instructions/system-lite.md +17 -6
- package/instructions/system-pro.md +25 -20
- package/instructions/system.md +25 -12
- package/package.json +3 -3
|
@@ -3650,6 +3650,7 @@ var TOOLS = {
|
|
|
3650
3650
|
"glob",
|
|
3651
3651
|
"search",
|
|
3652
3652
|
"tree",
|
|
3653
|
+
"diff",
|
|
3653
3654
|
"write",
|
|
3654
3655
|
"edit",
|
|
3655
3656
|
"replace",
|
|
@@ -4681,7 +4682,7 @@ var VERIFY_AGENTS = [
|
|
|
4681
4682
|
id: "e2e",
|
|
4682
4683
|
name: "E2E",
|
|
4683
4684
|
role: "e2e",
|
|
4684
|
-
tools: [...TOOLS.build, "fetch", ...SPECIALIST_TOOLS.browser],
|
|
4685
|
+
tools: [...TOOLS.build, "fetch", "e2e_plan", ...SPECIALIST_TOOLS.browser],
|
|
4685
4686
|
prompt: agentPrompt("e2e")
|
|
4686
4687
|
},
|
|
4687
4688
|
budget: HEAVY_BUDGET,
|
|
@@ -5194,7 +5195,7 @@ var DOMAIN_AGENTS = [
|
|
|
5194
5195
|
id: "designer",
|
|
5195
5196
|
name: "Designer",
|
|
5196
5197
|
role: "designer",
|
|
5197
|
-
tools: [...TOOLS.docs],
|
|
5198
|
+
tools: [...TOOLS.docs, "design"],
|
|
5198
5199
|
prompt: agentPrompt("designer")
|
|
5199
5200
|
},
|
|
5200
5201
|
budget: MEDIUM_BUDGET,
|
|
@@ -90,7 +90,7 @@ export declare const TOOLS: {
|
|
|
90
90
|
/** Read + edit (no shell). For agents that write code/docs but don't run it. */
|
|
91
91
|
readonly write: readonly ["read", "grep", "glob", "search", "tree", "write", "edit", "replace", "patch", "mailbox"];
|
|
92
92
|
/** Full build loop: edit + run (lint/format/typecheck/test/bash). */
|
|
93
|
-
readonly build: readonly ["read", "grep", "glob", "search", "tree", "write", "edit", "replace", "patch", "bash", "exec", "lint", "format", "typecheck", "test", "mailbox"];
|
|
93
|
+
readonly build: readonly ["read", "grep", "glob", "search", "tree", "diff", "write", "edit", "replace", "patch", "bash", "exec", "lint", "format", "typecheck", "test", "mailbox"];
|
|
94
94
|
/**
|
|
95
95
|
* Version control.
|
|
96
96
|
*
|
|
@@ -4748,6 +4748,7 @@ var TOOLS = {
|
|
|
4748
4748
|
"glob",
|
|
4749
4749
|
"search",
|
|
4750
4750
|
"tree",
|
|
4751
|
+
"diff",
|
|
4751
4752
|
"write",
|
|
4752
4753
|
"edit",
|
|
4753
4754
|
"replace",
|
|
@@ -5779,7 +5780,7 @@ var VERIFY_AGENTS = [
|
|
|
5779
5780
|
id: "e2e",
|
|
5780
5781
|
name: "E2E",
|
|
5781
5782
|
role: "e2e",
|
|
5782
|
-
tools: [...TOOLS.build, "fetch", ...SPECIALIST_TOOLS.browser],
|
|
5783
|
+
tools: [...TOOLS.build, "fetch", "e2e_plan", ...SPECIALIST_TOOLS.browser],
|
|
5783
5784
|
prompt: agentPrompt("e2e")
|
|
5784
5785
|
},
|
|
5785
5786
|
budget: HEAVY_BUDGET,
|
|
@@ -6292,7 +6293,7 @@ var DOMAIN_AGENTS = [
|
|
|
6292
6293
|
id: "designer",
|
|
6293
6294
|
name: "Designer",
|
|
6294
6295
|
role: "designer",
|
|
6295
|
-
tools: [...TOOLS.docs],
|
|
6296
|
+
tools: [...TOOLS.docs, "design"],
|
|
6296
6297
|
prompt: agentPrompt("designer")
|
|
6297
6298
|
},
|
|
6298
6299
|
budget: MEDIUM_BUDGET,
|
package/dist/core/index.d.ts
CHANGED
|
@@ -13,5 +13,6 @@ export { formatModelRef, type ModelRef, normalizeModelRef, parseModelRef, } from
|
|
|
13
13
|
export { clearPendingNextSteps, hasNextStepsTag, MAX_PENDING_NEXT_STEPS, maybeAppendPendingNextSteps, type PendingNextStep, readPendingNextSteps, renderNextStepsBlock, writePendingNextSteps, } from './next-steps-slot.js';
|
|
14
14
|
export { runProviderWithRetry } from './provider-runner.js';
|
|
15
15
|
export { setQueuedMessagesSnapshot } from './queued-messages.js';
|
|
16
|
-
export { DefaultSystemPromptBuilder, type DefaultSystemPromptBuilderOptions, type SystemBlockSource, } from './system-prompt-builder.js';
|
|
16
|
+
export { buildIdentityLayer, DefaultSystemPromptBuilder, type DefaultSystemPromptBuilderOptions, type SystemBlockSource, } from './system-prompt-builder.js';
|
|
17
|
+
export { type DomainGlossaryOptions, renderDomainGlossary, } from './system-prompt-glossary.js';
|
|
17
18
|
//# sourceMappingURL=index.d.ts.map
|