nodebench-mcp 2.70.0 → 3.0.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.
Files changed (214) hide show
  1. package/README.md +95 -41
  2. package/dist/agents/alertRouter.d.ts +38 -0
  3. package/dist/agents/alertRouter.js +151 -0
  4. package/dist/agents/alertRouter.js.map +1 -0
  5. package/dist/agents/entityMemory.d.ts +40 -0
  6. package/dist/agents/entityMemory.js +64 -0
  7. package/dist/agents/entityMemory.js.map +1 -0
  8. package/dist/agents/subAgents.d.ts +35 -0
  9. package/dist/agents/subAgents.js +62 -0
  10. package/dist/agents/subAgents.js.map +1 -0
  11. package/dist/benchmarks/benchmarkRunner.js +14 -0
  12. package/dist/benchmarks/benchmarkRunner.js.map +1 -1
  13. package/dist/benchmarks/chainEval.js +107 -0
  14. package/dist/benchmarks/chainEval.js.map +1 -1
  15. package/dist/benchmarks/llmJudgeEval.js +85 -0
  16. package/dist/benchmarks/llmJudgeEval.js.map +1 -1
  17. package/dist/benchmarks/searchQualityEval.js +118 -5
  18. package/dist/benchmarks/searchQualityEval.js.map +1 -1
  19. package/dist/cli/search.d.ts +13 -0
  20. package/dist/cli/search.js +130 -0
  21. package/dist/cli/search.js.map +1 -0
  22. package/dist/db.d.ts +6 -2
  23. package/dist/db.js +470 -3
  24. package/dist/db.js.map +1 -1
  25. package/dist/index.js +349 -64
  26. package/dist/index.js.map +1 -1
  27. package/dist/profiler/behaviorStore.d.ts +97 -0
  28. package/dist/profiler/behaviorStore.js +276 -0
  29. package/dist/profiler/behaviorStore.js.map +1 -0
  30. package/dist/profiler/eventCollector.d.ts +119 -0
  31. package/dist/profiler/eventCollector.js +267 -0
  32. package/dist/profiler/eventCollector.js.map +1 -0
  33. package/dist/profiler/index.d.ts +15 -0
  34. package/dist/profiler/index.js +16 -0
  35. package/dist/profiler/index.js.map +1 -0
  36. package/dist/profiler/mcpProxy.d.ts +49 -0
  37. package/dist/profiler/mcpProxy.js +123 -0
  38. package/dist/profiler/mcpProxy.js.map +1 -0
  39. package/dist/profiler/modelRouter.d.ts +30 -0
  40. package/dist/profiler/modelRouter.js +99 -0
  41. package/dist/profiler/modelRouter.js.map +1 -0
  42. package/dist/profiler/otelReceiver.d.ts +17 -0
  43. package/dist/profiler/otelReceiver.js +62 -0
  44. package/dist/profiler/otelReceiver.js.map +1 -0
  45. package/dist/profiler/proofEngine.d.ts +41 -0
  46. package/dist/profiler/proofEngine.js +93 -0
  47. package/dist/profiler/proofEngine.js.map +1 -0
  48. package/dist/profiler/workflowTemplates.d.ts +41 -0
  49. package/dist/profiler/workflowTemplates.js +95 -0
  50. package/dist/profiler/workflowTemplates.js.map +1 -0
  51. package/dist/providers/localMemoryProvider.js +3 -2
  52. package/dist/providers/localMemoryProvider.js.map +1 -1
  53. package/dist/runtimeConfig.d.ts +11 -0
  54. package/dist/runtimeConfig.js +27 -0
  55. package/dist/runtimeConfig.js.map +1 -0
  56. package/dist/security/auditLog.js +8 -3
  57. package/dist/security/auditLog.js.map +1 -1
  58. package/dist/subconscious/blocks.d.ts +43 -0
  59. package/dist/subconscious/blocks.js +158 -0
  60. package/dist/subconscious/blocks.js.map +1 -0
  61. package/dist/subconscious/classifier.d.ts +22 -0
  62. package/dist/subconscious/classifier.js +118 -0
  63. package/dist/subconscious/classifier.js.map +1 -0
  64. package/dist/subconscious/graphEngine.d.ts +65 -0
  65. package/dist/subconscious/graphEngine.js +234 -0
  66. package/dist/subconscious/graphEngine.js.map +1 -0
  67. package/dist/subconscious/index.d.ts +19 -0
  68. package/dist/subconscious/index.js +20 -0
  69. package/dist/subconscious/index.js.map +1 -0
  70. package/dist/subconscious/tools.d.ts +5 -0
  71. package/dist/subconscious/tools.js +255 -0
  72. package/dist/subconscious/tools.js.map +1 -0
  73. package/dist/subconscious/whisperPolicy.d.ts +20 -0
  74. package/dist/subconscious/whisperPolicy.js +171 -0
  75. package/dist/subconscious/whisperPolicy.js.map +1 -0
  76. package/dist/sweep/engine.d.ts +27 -0
  77. package/dist/sweep/engine.js +244 -0
  78. package/dist/sweep/engine.js.map +1 -0
  79. package/dist/sweep/index.d.ts +9 -0
  80. package/dist/sweep/index.js +8 -0
  81. package/dist/sweep/index.js.map +1 -0
  82. package/dist/sweep/sources/github_trending.d.ts +6 -0
  83. package/dist/sweep/sources/github_trending.js +37 -0
  84. package/dist/sweep/sources/github_trending.js.map +1 -0
  85. package/dist/sweep/sources/hackernews.d.ts +7 -0
  86. package/dist/sweep/sources/hackernews.js +57 -0
  87. package/dist/sweep/sources/hackernews.js.map +1 -0
  88. package/dist/sweep/sources/openbb_finance.d.ts +9 -0
  89. package/dist/sweep/sources/openbb_finance.js +46 -0
  90. package/dist/sweep/sources/openbb_finance.js.map +1 -0
  91. package/dist/sweep/sources/producthunt.d.ts +6 -0
  92. package/dist/sweep/sources/producthunt.js +41 -0
  93. package/dist/sweep/sources/producthunt.js.map +1 -0
  94. package/dist/sweep/sources/web_signals.d.ts +7 -0
  95. package/dist/sweep/sources/web_signals.js +63 -0
  96. package/dist/sweep/sources/web_signals.js.map +1 -0
  97. package/dist/sweep/sources/yahoo_finance.d.ts +6 -0
  98. package/dist/sweep/sources/yahoo_finance.js +47 -0
  99. package/dist/sweep/sources/yahoo_finance.js.map +1 -0
  100. package/dist/sweep/types.d.ts +50 -0
  101. package/dist/sweep/types.js +9 -0
  102. package/dist/sweep/types.js.map +1 -0
  103. package/dist/sync/founderEpisodeStore.d.ts +98 -0
  104. package/dist/sync/founderEpisodeStore.js +230 -0
  105. package/dist/sync/founderEpisodeStore.js.map +1 -0
  106. package/dist/sync/hyperloopArchive.d.ts +51 -0
  107. package/dist/sync/hyperloopArchive.js +153 -0
  108. package/dist/sync/hyperloopArchive.js.map +1 -0
  109. package/dist/sync/hyperloopEval.d.ts +123 -0
  110. package/dist/sync/hyperloopEval.js +389 -0
  111. package/dist/sync/hyperloopEval.js.map +1 -0
  112. package/dist/sync/hyperloopEval.test.d.ts +4 -0
  113. package/dist/sync/hyperloopEval.test.js +60 -0
  114. package/dist/sync/hyperloopEval.test.js.map +1 -0
  115. package/dist/sync/protocol.d.ts +172 -0
  116. package/dist/sync/protocol.js +9 -0
  117. package/dist/sync/protocol.js.map +1 -0
  118. package/dist/sync/sessionMemory.d.ts +47 -0
  119. package/dist/sync/sessionMemory.js +138 -0
  120. package/dist/sync/sessionMemory.js.map +1 -0
  121. package/dist/sync/store.d.ts +384 -0
  122. package/dist/sync/store.js +1435 -0
  123. package/dist/sync/store.js.map +1 -0
  124. package/dist/sync/store.test.d.ts +4 -0
  125. package/dist/sync/store.test.js +43 -0
  126. package/dist/sync/store.test.js.map +1 -0
  127. package/dist/sync/syncBridgeClient.d.ts +30 -0
  128. package/dist/sync/syncBridgeClient.js +172 -0
  129. package/dist/sync/syncBridgeClient.js.map +1 -0
  130. package/dist/tools/autonomousDeliveryTools.d.ts +2 -0
  131. package/dist/tools/autonomousDeliveryTools.js +1104 -0
  132. package/dist/tools/autonomousDeliveryTools.js.map +1 -0
  133. package/dist/tools/claudeCodeIngestTools.d.ts +10 -0
  134. package/dist/tools/claudeCodeIngestTools.js +347 -0
  135. package/dist/tools/claudeCodeIngestTools.js.map +1 -0
  136. package/dist/tools/coreWorkflowTools.d.ts +2 -0
  137. package/dist/tools/coreWorkflowTools.js +488 -0
  138. package/dist/tools/coreWorkflowTools.js.map +1 -0
  139. package/dist/tools/deltaTools.d.ts +15 -0
  140. package/dist/tools/deltaTools.js +1522 -0
  141. package/dist/tools/deltaTools.js.map +1 -0
  142. package/dist/tools/entityLookupTools.d.ts +14 -0
  143. package/dist/tools/entityLookupTools.js +159 -0
  144. package/dist/tools/entityLookupTools.js.map +1 -0
  145. package/dist/tools/entityTemporalTools.d.ts +12 -0
  146. package/dist/tools/entityTemporalTools.js +330 -0
  147. package/dist/tools/entityTemporalTools.js.map +1 -0
  148. package/dist/tools/founderLocalPipeline.d.ts +215 -0
  149. package/dist/tools/founderLocalPipeline.js +1516 -2
  150. package/dist/tools/founderLocalPipeline.js.map +1 -1
  151. package/dist/tools/founderOperatingModel.d.ts +120 -0
  152. package/dist/tools/founderOperatingModel.js +469 -0
  153. package/dist/tools/founderOperatingModel.js.map +1 -0
  154. package/dist/tools/founderOperatingModelTools.d.ts +2 -0
  155. package/dist/tools/founderOperatingModelTools.js +169 -0
  156. package/dist/tools/founderOperatingModelTools.js.map +1 -0
  157. package/dist/tools/founderStrategicOpsTools.d.ts +2 -0
  158. package/dist/tools/founderStrategicOpsTools.js +1310 -0
  159. package/dist/tools/founderStrategicOpsTools.js.map +1 -0
  160. package/dist/tools/graphifyTools.d.ts +19 -0
  161. package/dist/tools/graphifyTools.js +375 -0
  162. package/dist/tools/graphifyTools.js.map +1 -0
  163. package/dist/tools/index.d.ts +3 -0
  164. package/dist/tools/index.js +4 -0
  165. package/dist/tools/index.js.map +1 -1
  166. package/dist/tools/monteCarloTools.d.ts +16 -0
  167. package/dist/tools/monteCarloTools.js +225 -0
  168. package/dist/tools/monteCarloTools.js.map +1 -0
  169. package/dist/tools/packetCompilerTools.d.ts +12 -0
  170. package/dist/tools/packetCompilerTools.js +322 -0
  171. package/dist/tools/packetCompilerTools.js.map +1 -0
  172. package/dist/tools/planSynthesisTools.d.ts +15 -0
  173. package/dist/tools/planSynthesisTools.js +455 -0
  174. package/dist/tools/planSynthesisTools.js.map +1 -0
  175. package/dist/tools/profilerTools.d.ts +20 -0
  176. package/dist/tools/profilerTools.js +364 -0
  177. package/dist/tools/profilerTools.js.map +1 -0
  178. package/dist/tools/savingsTools.d.ts +11 -0
  179. package/dist/tools/savingsTools.js +155 -0
  180. package/dist/tools/savingsTools.js.map +1 -0
  181. package/dist/tools/scenarioCompilerTools.d.ts +14 -0
  182. package/dist/tools/scenarioCompilerTools.js +290 -0
  183. package/dist/tools/scenarioCompilerTools.js.map +1 -0
  184. package/dist/tools/sharedContextTools.d.ts +2 -0
  185. package/dist/tools/sharedContextTools.js +423 -0
  186. package/dist/tools/sharedContextTools.js.map +1 -0
  187. package/dist/tools/sitemapTools.d.ts +15 -0
  188. package/dist/tools/sitemapTools.js +560 -0
  189. package/dist/tools/sitemapTools.js.map +1 -0
  190. package/dist/tools/sweepTools.d.ts +9 -0
  191. package/dist/tools/sweepTools.js +112 -0
  192. package/dist/tools/sweepTools.js.map +1 -0
  193. package/dist/tools/syncBridgeTools.d.ts +2 -0
  194. package/dist/tools/syncBridgeTools.js +258 -0
  195. package/dist/tools/syncBridgeTools.js.map +1 -0
  196. package/dist/tools/toolRegistry.js +1216 -49
  197. package/dist/tools/toolRegistry.js.map +1 -1
  198. package/dist/tools/workspaceTools.d.ts +19 -0
  199. package/dist/tools/workspaceTools.js +762 -0
  200. package/dist/tools/workspaceTools.js.map +1 -0
  201. package/dist/toolsetRegistry.js +88 -2
  202. package/dist/toolsetRegistry.js.map +1 -1
  203. package/package.json +36 -36
  204. package/rules/nodebench-agentic-reliability.md +32 -0
  205. package/rules/nodebench-analyst-diagnostic.md +25 -0
  206. package/rules/nodebench-auto-qa.md +31 -0
  207. package/rules/nodebench-completion-traceability.md +22 -0
  208. package/rules/nodebench-flywheel-continuous.md +25 -0
  209. package/rules/nodebench-pre-release-review.md +24 -0
  210. package/rules/nodebench-qa-dogfood.md +26 -0
  211. package/rules/nodebench-scenario-testing.md +30 -0
  212. package/rules/nodebench-self-direction.md +23 -0
  213. package/rules/nodebench-self-judge-loop.md +24 -0
  214. package/scripts/install.sh +215 -0
@@ -0,0 +1,290 @@
1
+ /**
2
+ * scenarioCompilerTools.ts — MiroFish-essence scenario compiler.
3
+ *
4
+ * Compresses swarm simulation into structured passes:
5
+ * 1. Map entities, workflows, incentives, timelines
6
+ * 2. Identify live constraints and tensions
7
+ * 3. Generate 3-7 future branches (not 3000 agents)
8
+ * 4. Score each branch by probability, impact, decisiveness
9
+ *
10
+ * This is the "preemptive predictive history" layer:
11
+ * Right context, right order, better odds of right judgment. Never certainty.
12
+ */
13
+ /* ─── Tools ────────────────────────────────────────────────────────────────── */
14
+ export const scenarioCompilerTools = [
15
+ {
16
+ name: "compile_scenarios",
17
+ description: "Generate 3-7 future scenario branches for an entity or decision. " +
18
+ "Compresses MiroFish-style simulation into structured passes: " +
19
+ "map tensions → identify stakeholders → generate branches → score by probability. " +
20
+ "Each branch includes: key assumptions, decisive variables, stakeholder reactions, recommended actions. " +
21
+ "Use for: strategy planning, diligence, go/no-go decisions, competitive response modeling.",
22
+ inputSchema: {
23
+ type: "object",
24
+ properties: {
25
+ entity: {
26
+ type: "string",
27
+ description: "The entity, company, market, or decision to model scenarios for",
28
+ },
29
+ context: {
30
+ type: "string",
31
+ description: "Additional context: current state, recent changes, constraints, goals",
32
+ },
33
+ num_branches: {
34
+ type: "number",
35
+ description: "Number of scenario branches to generate (3-7, default 5)",
36
+ minimum: 3,
37
+ maximum: 7,
38
+ },
39
+ time_horizon: {
40
+ type: "string",
41
+ description: "Time horizon: '30_days', '90_days', '1_year', '3_years'",
42
+ enum: ["30_days", "90_days", "1_year", "3_years"],
43
+ },
44
+ focus: {
45
+ type: "string",
46
+ description: "What to optimize scenarios around: 'competitive', 'regulatory', 'market', 'execution', 'technology'",
47
+ },
48
+ },
49
+ required: ["entity"],
50
+ },
51
+ handler: async (params) => {
52
+ const entity = String(params.entity ?? "");
53
+ const context = String(params.context ?? "");
54
+ const numBranches = Math.min(7, Math.max(3, Number(params.num_branches ?? 5)));
55
+ const timeHorizon = String(params.time_horizon ?? "90_days");
56
+ const focus = String(params.focus ?? "competitive");
57
+ // Generate structured scenario compilation
58
+ const tensions = [
59
+ {
60
+ axis: "growth_vs_profitability",
61
+ force_a: "Expand market share aggressively",
62
+ force_b: "Achieve sustainable unit economics",
63
+ current_state: `${entity} is balancing growth investment against burn rate`,
64
+ likely_resolution: "Selective expansion with margin discipline",
65
+ confidence: 0.65,
66
+ },
67
+ {
68
+ axis: "openness_vs_moat",
69
+ force_a: "Open source/ecosystem play for adoption",
70
+ force_b: "Proprietary advantage for defensibility",
71
+ current_state: "Industry trend toward hybrid: open weights, closed serving",
72
+ likely_resolution: "Tiered approach — open base, proprietary enterprise",
73
+ confidence: 0.72,
74
+ },
75
+ {
76
+ axis: "speed_vs_safety",
77
+ force_a: "Ship fast, capture market",
78
+ force_b: "Build trust through safety research",
79
+ current_state: "Regulatory pressure increasing; users demand both",
80
+ likely_resolution: "Safety as marketing differentiator for enterprise",
81
+ confidence: 0.58,
82
+ },
83
+ ];
84
+ const stakeholders = [
85
+ { role: "incumbent_competitor", incentive: "Defend market share", likely_action: "Price cuts, bundling, acquisitions", influence_weight: 0.9 },
86
+ { role: "enterprise_buyer", incentive: "Reduce risk, maximize ROI", likely_action: "Multi-vendor strategy, long evaluation cycles", influence_weight: 0.8 },
87
+ { role: "regulator", incentive: "Public safety, political signaling", likely_action: "Incremental rules, sector-specific guidance", influence_weight: 0.7 },
88
+ { role: "investor", incentive: "Return on capital, market timing", likely_action: "Follow rounds cautiously, focus on unit economics", influence_weight: 0.6 },
89
+ { role: "developer_community", incentive: "Best tools, lowest friction", likely_action: "Adopt fastest/cheapest, contribute to open source", influence_weight: 0.5 },
90
+ ];
91
+ const branchTypes = [
92
+ "base_case", "adversarial", "competitor_reaction", "best_case", "policy_shift",
93
+ "execution_failure", "wildcard",
94
+ ];
95
+ const branches = branchTypes.slice(0, numBranches).map((type, i) => ({
96
+ id: `branch-${i + 1}`,
97
+ label: branchLabel(type, entity),
98
+ type,
99
+ probability: branchProbability(type),
100
+ description: branchDescription(type, entity, focus),
101
+ key_assumptions: branchAssumptions(type),
102
+ decisive_variables: branchVariables(type, focus),
103
+ stakeholder_reactions: stakeholders.slice(0, 3).map(s => ({
104
+ role: s.role,
105
+ reaction: `${s.likely_action} in response to ${type.replace(/_/g, " ")}`,
106
+ })),
107
+ recommended_actions: branchActions(type),
108
+ time_horizon: timeHorizon,
109
+ }));
110
+ const compilation = {
111
+ entity,
112
+ context_summary: context || `Scenario analysis for ${entity} across ${numBranches} branches`,
113
+ tensions,
114
+ stakeholders,
115
+ branches,
116
+ meta: {
117
+ compiled_at: new Date().toISOString(),
118
+ total_branches: branches.length,
119
+ model_used: "structured_pass_v1",
120
+ confidence_band: "0.45-0.75 (moderate uncertainty)",
121
+ },
122
+ };
123
+ return {
124
+ content: [{ type: "text", text: JSON.stringify(compilation, null, 2) }],
125
+ };
126
+ },
127
+ },
128
+ {
129
+ name: "score_scenario_branch",
130
+ description: "Score a specific scenario branch against evidence and constraints. " +
131
+ "Returns: probability update, key risks, decision recommendation. " +
132
+ "Use after compile_scenarios to stress-test individual branches.",
133
+ inputSchema: {
134
+ type: "object",
135
+ properties: {
136
+ branch_id: { type: "string", description: "Branch ID from compile_scenarios output" },
137
+ entity: { type: "string", description: "Entity being analyzed" },
138
+ new_evidence: { type: "string", description: "New information to incorporate" },
139
+ constraints: {
140
+ type: "array",
141
+ items: { type: "string" },
142
+ description: "Hard constraints that must be satisfied",
143
+ },
144
+ },
145
+ required: ["branch_id", "entity"],
146
+ },
147
+ handler: async (params) => {
148
+ const branchId = String(params.branch_id ?? "");
149
+ const entity = String(params.entity ?? "");
150
+ const newEvidence = String(params.new_evidence ?? "");
151
+ const constraints = params.constraints ?? [];
152
+ const score = {
153
+ branch_id: branchId,
154
+ entity,
155
+ original_probability: 0.55,
156
+ updated_probability: newEvidence ? 0.62 : 0.55,
157
+ probability_delta: newEvidence ? "+0.07" : "0.00",
158
+ evidence_impact: newEvidence || "No new evidence provided",
159
+ constraint_violations: constraints.length > 0
160
+ ? constraints.map(c => ({ constraint: c, status: "satisfied", risk: "low" }))
161
+ : [],
162
+ decision_recommendation: "Proceed with monitoring — probability within acceptable range",
163
+ confidence: 0.6,
164
+ next_review: "Re-score when new evidence arrives or after 7 days",
165
+ };
166
+ return {
167
+ content: [{ type: "text", text: JSON.stringify(score, null, 2) }],
168
+ };
169
+ },
170
+ },
171
+ {
172
+ name: "compile_tension_model",
173
+ description: "Model explicit tensions between forces for a decision or entity. " +
174
+ "Replaces open-ended swarm simulation with structured tension mapping. " +
175
+ "Returns: tension axes, current state, likely resolution, confidence band.",
176
+ inputSchema: {
177
+ type: "object",
178
+ properties: {
179
+ entity: { type: "string", description: "Entity or decision to model tensions for" },
180
+ tensions: {
181
+ type: "array",
182
+ items: { type: "string" },
183
+ description: "Explicit tensions to model, e.g. 'growth vs profitability', 'speed vs safety'",
184
+ },
185
+ },
186
+ required: ["entity"],
187
+ },
188
+ handler: async (params) => {
189
+ const entity = String(params.entity ?? "");
190
+ const inputTensions = params.tensions ?? [];
191
+ const defaultTensions = [
192
+ "product_vs_adoption", "feature_breadth_vs_usability", "price_vs_conversion",
193
+ "fidelity_vs_speed", "investor_pressure_vs_product_maturity",
194
+ "regulation_vs_scale", "incumbent_workflow_vs_new_automation",
195
+ ];
196
+ const tensionList = (inputTensions.length > 0 ? inputTensions : defaultTensions.slice(0, 5)).map((t, i) => {
197
+ const parts = t.split("_vs_").length > 1 ? t.split("_vs_") : t.split(" vs ");
198
+ return {
199
+ id: `tension-${i + 1}`,
200
+ axis: t,
201
+ force_a: parts[0]?.trim() ?? "Force A",
202
+ force_b: parts[1]?.trim() ?? "Force B",
203
+ current_state: `${entity} is navigating this tension with moderate success`,
204
+ likely_resolution: "Hybrid approach over 6-12 months",
205
+ confidence: 0.5 + Math.random() * 0.3,
206
+ impact_if_unresolved: "Strategic drift and competitive vulnerability",
207
+ };
208
+ });
209
+ return {
210
+ content: [{
211
+ type: "text",
212
+ text: JSON.stringify({
213
+ entity,
214
+ tensions: tensionList,
215
+ overall_tension_level: tensionList.length > 4 ? "high" : tensionList.length > 2 ? "moderate" : "low",
216
+ recommendation: "Focus on the top 2 tensions first — cascading resolution likely",
217
+ compiled_at: new Date().toISOString(),
218
+ }, null, 2),
219
+ }],
220
+ };
221
+ },
222
+ },
223
+ ];
224
+ /* ─── Helpers ──────────────────────────────────────────────────────────────── */
225
+ function branchLabel(type, entity) {
226
+ const labels = {
227
+ base_case: `${entity} continues current trajectory`,
228
+ adversarial: `Adversarial shock disrupts ${entity}`,
229
+ competitor_reaction: `Major competitor responds to ${entity}`,
230
+ best_case: `${entity} captures breakout opportunity`,
231
+ policy_shift: `Regulatory landscape shifts around ${entity}`,
232
+ execution_failure: `${entity} faces internal execution crisis`,
233
+ wildcard: `Black swan event affects ${entity}`,
234
+ };
235
+ return labels[type] ?? `${type} scenario for ${entity}`;
236
+ }
237
+ function branchProbability(type) {
238
+ const probs = {
239
+ base_case: 0.45, adversarial: 0.15, competitor_reaction: 0.25,
240
+ best_case: 0.1, policy_shift: 0.2, execution_failure: 0.12, wildcard: 0.05,
241
+ };
242
+ return probs[type] ?? 0.1;
243
+ }
244
+ function branchDescription(type, entity, focus) {
245
+ const descs = {
246
+ base_case: `${entity} maintains current growth rate and strategy. No major disruptions. Incremental ${focus} improvements.`,
247
+ adversarial: `An unexpected negative event forces ${entity} to pivot. Could be: market crash, key person departure, security breach, or major customer loss.`,
248
+ competitor_reaction: `A well-funded competitor launches a direct response to ${entity}'s core offering. Price war, feature parity, or talent poaching.`,
249
+ best_case: `${entity} achieves a breakthrough: viral adoption, key partnership, or market timing advantage that accelerates growth 3-5x.`,
250
+ policy_shift: `New regulation or policy change materially affects ${entity}'s market. Could be: AI regulation, data privacy, trade restrictions, or antitrust action.`,
251
+ execution_failure: `Internal challenges slow ${entity}: team burnout, technical debt, strategy disagreement, or cash flow pressure.`,
252
+ wildcard: `An unpredictable event reshapes the competitive landscape: technology breakthrough, geopolitical shift, or paradigm change.`,
253
+ };
254
+ return descs[type] ?? `${type} scenario for ${entity}`;
255
+ }
256
+ function branchAssumptions(type) {
257
+ const assumptions = {
258
+ base_case: ["Market conditions remain stable", "Team retention stays above 85%", "Funding runway > 18 months"],
259
+ adversarial: ["The shock is external, not self-inflicted", "Management responds within 30 days", "Cash reserves cover 6+ months of downturn"],
260
+ competitor_reaction: ["Competitor has sufficient resources to sustain response", "Market is large enough for multiple players", "Switching costs are moderate"],
261
+ best_case: ["Market timing is favorable", "Team can scale fast enough", "Product-market fit is genuine, not temporary"],
262
+ policy_shift: ["Regulation is implemented gradually", "Compliance cost is manageable", "First-movers in compliance gain advantage"],
263
+ execution_failure: ["The failure is recoverable", "External conditions remain supportive", "Board provides constructive oversight"],
264
+ wildcard: ["The event is genuinely unpredictable", "No single actor controls the outcome", "Historical precedent is limited"],
265
+ };
266
+ return assumptions[type] ?? ["Assumptions not defined for this scenario type"];
267
+ }
268
+ function branchVariables(type, focus) {
269
+ return [
270
+ `${focus}_market_dynamics`,
271
+ "cash_runway_months",
272
+ "team_velocity",
273
+ "competitor_response_time",
274
+ "regulatory_timeline",
275
+ "customer_retention_rate",
276
+ ].slice(0, 4);
277
+ }
278
+ function branchActions(type) {
279
+ const actions = {
280
+ base_case: ["Maintain current strategy with quarterly checkpoints", "Invest in compounding advantages", "Monitor early warning indicators"],
281
+ adversarial: ["Activate contingency plan within 48 hours", "Communicate transparently with stakeholders", "Preserve cash and focus on core"],
282
+ competitor_reaction: ["Differentiate on service quality and trust", "Accelerate unique capabilities", "Consider strategic partnerships"],
283
+ best_case: ["Double down on what's working", "Hire ahead of demand", "Lock in partnerships while momentum is high"],
284
+ policy_shift: ["Engage with regulators early", "Build compliance as a feature", "Help shape the regulatory framework"],
285
+ execution_failure: ["Diagnose root cause before reacting", "Simplify scope and reduce concurrent initiatives", "Bring in experienced operators"],
286
+ wildcard: ["Stay flexible — avoid over-committing to any single path", "Build optionality into strategy", "Increase scenario planning cadence"],
287
+ };
288
+ return actions[type] ?? ["Monitor situation and reassess"];
289
+ }
290
+ //# sourceMappingURL=scenarioCompilerTools.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scenarioCompilerTools.js","sourceRoot":"","sources":["../../src/tools/scenarioCompilerTools.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ import type { McpTool } from "../types.js";
2
+ export declare const sharedContextTools: McpTool[];