nodebench-mcp 2.70.0 → 3.0.1
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 +95 -41
- package/dist/agents/alertRouter.d.ts +38 -0
- package/dist/agents/alertRouter.js +151 -0
- package/dist/agents/alertRouter.js.map +1 -0
- package/dist/agents/entityMemory.d.ts +40 -0
- package/dist/agents/entityMemory.js +64 -0
- package/dist/agents/entityMemory.js.map +1 -0
- package/dist/agents/subAgents.d.ts +35 -0
- package/dist/agents/subAgents.js +62 -0
- package/dist/agents/subAgents.js.map +1 -0
- package/dist/benchmarks/benchmarkRunner.js +14 -0
- package/dist/benchmarks/benchmarkRunner.js.map +1 -1
- package/dist/benchmarks/chainEval.js +107 -0
- package/dist/benchmarks/chainEval.js.map +1 -1
- package/dist/benchmarks/llmJudgeEval.js +85 -0
- package/dist/benchmarks/llmJudgeEval.js.map +1 -1
- package/dist/benchmarks/searchQualityEval.js +118 -5
- package/dist/benchmarks/searchQualityEval.js.map +1 -1
- package/dist/cli/search.d.ts +13 -0
- package/dist/cli/search.js +130 -0
- package/dist/cli/search.js.map +1 -0
- package/dist/dashboard/operatingDashboardHtml.js +2 -1
- package/dist/dashboard/operatingDashboardHtml.js.map +1 -1
- package/dist/dashboard/operatingServer.js +3 -2
- package/dist/dashboard/operatingServer.js.map +1 -1
- package/dist/db.d.ts +6 -2
- package/dist/db.js +521 -6
- package/dist/db.js.map +1 -1
- package/dist/index.js +349 -67
- package/dist/index.js.map +1 -1
- package/dist/packageInfo.d.ts +3 -0
- package/dist/packageInfo.js +32 -0
- package/dist/packageInfo.js.map +1 -0
- package/dist/profiler/behaviorStore.d.ts +97 -0
- package/dist/profiler/behaviorStore.js +276 -0
- package/dist/profiler/behaviorStore.js.map +1 -0
- package/dist/profiler/eventCollector.d.ts +119 -0
- package/dist/profiler/eventCollector.js +267 -0
- package/dist/profiler/eventCollector.js.map +1 -0
- package/dist/profiler/index.d.ts +15 -0
- package/dist/profiler/index.js +16 -0
- package/dist/profiler/index.js.map +1 -0
- package/dist/profiler/mcpProxy.d.ts +49 -0
- package/dist/profiler/mcpProxy.js +123 -0
- package/dist/profiler/mcpProxy.js.map +1 -0
- package/dist/profiler/modelRouter.d.ts +30 -0
- package/dist/profiler/modelRouter.js +99 -0
- package/dist/profiler/modelRouter.js.map +1 -0
- package/dist/profiler/otelReceiver.d.ts +17 -0
- package/dist/profiler/otelReceiver.js +62 -0
- package/dist/profiler/otelReceiver.js.map +1 -0
- package/dist/profiler/proofEngine.d.ts +41 -0
- package/dist/profiler/proofEngine.js +93 -0
- package/dist/profiler/proofEngine.js.map +1 -0
- package/dist/profiler/workflowTemplates.d.ts +41 -0
- package/dist/profiler/workflowTemplates.js +95 -0
- package/dist/profiler/workflowTemplates.js.map +1 -0
- package/dist/providers/localMemoryProvider.js +3 -2
- package/dist/providers/localMemoryProvider.js.map +1 -1
- package/dist/runtimeConfig.d.ts +11 -0
- package/dist/runtimeConfig.js +27 -0
- package/dist/runtimeConfig.js.map +1 -0
- package/dist/sandboxApi.js +2 -1
- package/dist/sandboxApi.js.map +1 -1
- package/dist/security/auditLog.js +8 -3
- package/dist/security/auditLog.js.map +1 -1
- package/dist/subconscious/blocks.d.ts +43 -0
- package/dist/subconscious/blocks.js +158 -0
- package/dist/subconscious/blocks.js.map +1 -0
- package/dist/subconscious/classifier.d.ts +22 -0
- package/dist/subconscious/classifier.js +118 -0
- package/dist/subconscious/classifier.js.map +1 -0
- package/dist/subconscious/graphEngine.d.ts +65 -0
- package/dist/subconscious/graphEngine.js +234 -0
- package/dist/subconscious/graphEngine.js.map +1 -0
- package/dist/subconscious/index.d.ts +19 -0
- package/dist/subconscious/index.js +20 -0
- package/dist/subconscious/index.js.map +1 -0
- package/dist/subconscious/tools.d.ts +5 -0
- package/dist/subconscious/tools.js +255 -0
- package/dist/subconscious/tools.js.map +1 -0
- package/dist/subconscious/whisperPolicy.d.ts +20 -0
- package/dist/subconscious/whisperPolicy.js +171 -0
- package/dist/subconscious/whisperPolicy.js.map +1 -0
- package/dist/sweep/engine.d.ts +27 -0
- package/dist/sweep/engine.js +244 -0
- package/dist/sweep/engine.js.map +1 -0
- package/dist/sweep/index.d.ts +9 -0
- package/dist/sweep/index.js +8 -0
- package/dist/sweep/index.js.map +1 -0
- package/dist/sweep/sources/github_trending.d.ts +6 -0
- package/dist/sweep/sources/github_trending.js +37 -0
- package/dist/sweep/sources/github_trending.js.map +1 -0
- package/dist/sweep/sources/hackernews.d.ts +7 -0
- package/dist/sweep/sources/hackernews.js +57 -0
- package/dist/sweep/sources/hackernews.js.map +1 -0
- package/dist/sweep/sources/openbb_finance.d.ts +9 -0
- package/dist/sweep/sources/openbb_finance.js +46 -0
- package/dist/sweep/sources/openbb_finance.js.map +1 -0
- package/dist/sweep/sources/producthunt.d.ts +6 -0
- package/dist/sweep/sources/producthunt.js +41 -0
- package/dist/sweep/sources/producthunt.js.map +1 -0
- package/dist/sweep/sources/web_signals.d.ts +7 -0
- package/dist/sweep/sources/web_signals.js +63 -0
- package/dist/sweep/sources/web_signals.js.map +1 -0
- package/dist/sweep/sources/yahoo_finance.d.ts +6 -0
- package/dist/sweep/sources/yahoo_finance.js +47 -0
- package/dist/sweep/sources/yahoo_finance.js.map +1 -0
- package/dist/sweep/types.d.ts +50 -0
- package/dist/sweep/types.js +9 -0
- package/dist/sweep/types.js.map +1 -0
- package/dist/sync/founderEpisodeStore.d.ts +98 -0
- package/dist/sync/founderEpisodeStore.js +230 -0
- package/dist/sync/founderEpisodeStore.js.map +1 -0
- package/dist/sync/hyperloopArchive.d.ts +51 -0
- package/dist/sync/hyperloopArchive.js +153 -0
- package/dist/sync/hyperloopArchive.js.map +1 -0
- package/dist/sync/hyperloopEval.d.ts +123 -0
- package/dist/sync/hyperloopEval.js +389 -0
- package/dist/sync/hyperloopEval.js.map +1 -0
- package/dist/sync/protocol.d.ts +172 -0
- package/dist/sync/protocol.js +9 -0
- package/dist/sync/protocol.js.map +1 -0
- package/dist/sync/sessionMemory.d.ts +47 -0
- package/dist/sync/sessionMemory.js +138 -0
- package/dist/sync/sessionMemory.js.map +1 -0
- package/dist/sync/store.d.ts +384 -0
- package/dist/sync/store.js +1435 -0
- package/dist/sync/store.js.map +1 -0
- package/dist/sync/syncBridgeClient.d.ts +30 -0
- package/dist/sync/syncBridgeClient.js +172 -0
- package/dist/sync/syncBridgeClient.js.map +1 -0
- package/dist/tools/autonomousDeliveryTools.d.ts +2 -0
- package/dist/tools/autonomousDeliveryTools.js +1104 -0
- package/dist/tools/autonomousDeliveryTools.js.map +1 -0
- package/dist/tools/boilerplateTools.js +10 -9
- package/dist/tools/boilerplateTools.js.map +1 -1
- package/dist/tools/claudeCodeIngestTools.d.ts +10 -0
- package/dist/tools/claudeCodeIngestTools.js +347 -0
- package/dist/tools/claudeCodeIngestTools.js.map +1 -0
- package/dist/tools/coreWorkflowTools.d.ts +2 -0
- package/dist/tools/coreWorkflowTools.js +488 -0
- package/dist/tools/coreWorkflowTools.js.map +1 -0
- package/dist/tools/deltaTools.d.ts +15 -0
- package/dist/tools/deltaTools.js +1522 -0
- package/dist/tools/deltaTools.js.map +1 -0
- package/dist/tools/documentationTools.js +2 -1
- package/dist/tools/documentationTools.js.map +1 -1
- package/dist/tools/entityLookupTools.d.ts +14 -0
- package/dist/tools/entityLookupTools.js +159 -0
- package/dist/tools/entityLookupTools.js.map +1 -0
- package/dist/tools/entityTemporalTools.d.ts +12 -0
- package/dist/tools/entityTemporalTools.js +330 -0
- package/dist/tools/entityTemporalTools.js.map +1 -0
- package/dist/tools/founderLocalPipeline.d.ts +215 -0
- package/dist/tools/founderLocalPipeline.js +1516 -2
- package/dist/tools/founderLocalPipeline.js.map +1 -1
- package/dist/tools/founderOperatingModel.d.ts +120 -0
- package/dist/tools/founderOperatingModel.js +469 -0
- package/dist/tools/founderOperatingModel.js.map +1 -0
- package/dist/tools/founderOperatingModelTools.d.ts +2 -0
- package/dist/tools/founderOperatingModelTools.js +169 -0
- package/dist/tools/founderOperatingModelTools.js.map +1 -0
- package/dist/tools/founderStrategicOpsTools.d.ts +2 -0
- package/dist/tools/founderStrategicOpsTools.js +1310 -0
- package/dist/tools/founderStrategicOpsTools.js.map +1 -0
- package/dist/tools/graphifyTools.d.ts +19 -0
- package/dist/tools/graphifyTools.js +375 -0
- package/dist/tools/graphifyTools.js.map +1 -0
- package/dist/tools/index.d.ts +3 -0
- package/dist/tools/index.js +4 -0
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/monteCarloTools.d.ts +16 -0
- package/dist/tools/monteCarloTools.js +225 -0
- package/dist/tools/monteCarloTools.js.map +1 -0
- package/dist/tools/packetCompilerTools.d.ts +12 -0
- package/dist/tools/packetCompilerTools.js +322 -0
- package/dist/tools/packetCompilerTools.js.map +1 -0
- package/dist/tools/planSynthesisTools.d.ts +15 -0
- package/dist/tools/planSynthesisTools.js +455 -0
- package/dist/tools/planSynthesisTools.js.map +1 -0
- package/dist/tools/profilerTools.d.ts +20 -0
- package/dist/tools/profilerTools.js +364 -0
- package/dist/tools/profilerTools.js.map +1 -0
- package/dist/tools/progressiveDiscoveryTools.js +2 -1
- package/dist/tools/progressiveDiscoveryTools.js.map +1 -1
- package/dist/tools/savingsTools.d.ts +11 -0
- package/dist/tools/savingsTools.js +155 -0
- package/dist/tools/savingsTools.js.map +1 -0
- package/dist/tools/scenarioCompilerTools.d.ts +14 -0
- package/dist/tools/scenarioCompilerTools.js +290 -0
- package/dist/tools/scenarioCompilerTools.js.map +1 -0
- package/dist/tools/sharedContextTools.d.ts +2 -0
- package/dist/tools/sharedContextTools.js +423 -0
- package/dist/tools/sharedContextTools.js.map +1 -0
- package/dist/tools/sitemapTools.d.ts +15 -0
- package/dist/tools/sitemapTools.js +560 -0
- package/dist/tools/sitemapTools.js.map +1 -0
- package/dist/tools/sweepTools.d.ts +9 -0
- package/dist/tools/sweepTools.js +112 -0
- package/dist/tools/sweepTools.js.map +1 -0
- package/dist/tools/syncBridgeTools.d.ts +2 -0
- package/dist/tools/syncBridgeTools.js +258 -0
- package/dist/tools/syncBridgeTools.js.map +1 -0
- package/dist/tools/toolRegistry.js +1223 -45
- package/dist/tools/toolRegistry.js.map +1 -1
- package/dist/tools/workspaceTools.d.ts +19 -0
- package/dist/tools/workspaceTools.js +762 -0
- package/dist/tools/workspaceTools.js.map +1 -0
- package/dist/toolsetRegistry.js +162 -3
- package/dist/toolsetRegistry.js.map +1 -1
- package/package.json +39 -38
- package/rules/nodebench-agentic-reliability.md +32 -0
- package/rules/nodebench-analyst-diagnostic.md +25 -0
- package/rules/nodebench-auto-qa.md +31 -0
- package/rules/nodebench-completion-traceability.md +22 -0
- package/rules/nodebench-flywheel-continuous.md +25 -0
- package/rules/nodebench-pre-release-review.md +24 -0
- package/rules/nodebench-qa-dogfood.md +26 -0
- package/rules/nodebench-scenario-testing.md +30 -0
- package/rules/nodebench-self-direction.md +23 -0
- package/rules/nodebench-self-judge-loop.md +24 -0
- package/scripts/install.sh +215 -0
- package/dist/__tests__/analytics.test.d.ts +0 -11
- package/dist/__tests__/analytics.test.js +0 -546
- package/dist/__tests__/analytics.test.js.map +0 -1
- package/dist/__tests__/architectComplex.test.d.ts +0 -1
- package/dist/__tests__/architectComplex.test.js +0 -373
- package/dist/__tests__/architectComplex.test.js.map +0 -1
- package/dist/__tests__/architectSmoke.test.d.ts +0 -1
- package/dist/__tests__/architectSmoke.test.js +0 -92
- package/dist/__tests__/architectSmoke.test.js.map +0 -1
- package/dist/__tests__/audit-registry.d.ts +0 -1
- package/dist/__tests__/audit-registry.js +0 -60
- package/dist/__tests__/audit-registry.js.map +0 -1
- package/dist/__tests__/batchAutopilot.test.d.ts +0 -8
- package/dist/__tests__/batchAutopilot.test.js +0 -218
- package/dist/__tests__/batchAutopilot.test.js.map +0 -1
- package/dist/__tests__/cliSubcommands.test.d.ts +0 -1
- package/dist/__tests__/cliSubcommands.test.js +0 -138
- package/dist/__tests__/cliSubcommands.test.js.map +0 -1
- package/dist/__tests__/comparativeBench.test.d.ts +0 -1
- package/dist/__tests__/comparativeBench.test.js +0 -722
- package/dist/__tests__/comparativeBench.test.js.map +0 -1
- package/dist/__tests__/critterCalibrationEval.d.ts +0 -8
- package/dist/__tests__/critterCalibrationEval.js +0 -370
- package/dist/__tests__/critterCalibrationEval.js.map +0 -1
- package/dist/__tests__/dynamicLoading.test.d.ts +0 -1
- package/dist/__tests__/dynamicLoading.test.js +0 -280
- package/dist/__tests__/dynamicLoading.test.js.map +0 -1
- package/dist/__tests__/embeddingProvider.test.d.ts +0 -1
- package/dist/__tests__/embeddingProvider.test.js +0 -86
- package/dist/__tests__/embeddingProvider.test.js.map +0 -1
- package/dist/__tests__/evalDatasetBench.test.d.ts +0 -1
- package/dist/__tests__/evalDatasetBench.test.js +0 -738
- package/dist/__tests__/evalDatasetBench.test.js.map +0 -1
- package/dist/__tests__/evalHarness.test.d.ts +0 -1
- package/dist/__tests__/evalHarness.test.js +0 -1107
- package/dist/__tests__/evalHarness.test.js.map +0 -1
- package/dist/__tests__/fixtures/bfcl_v3_long_context.sample.json +0 -264
- package/dist/__tests__/fixtures/generateBfclLongContextFixture.d.ts +0 -10
- package/dist/__tests__/fixtures/generateBfclLongContextFixture.js +0 -135
- package/dist/__tests__/fixtures/generateBfclLongContextFixture.js.map +0 -1
- package/dist/__tests__/fixtures/generateSwebenchVerifiedFixture.d.ts +0 -14
- package/dist/__tests__/fixtures/generateSwebenchVerifiedFixture.js +0 -189
- package/dist/__tests__/fixtures/generateSwebenchVerifiedFixture.js.map +0 -1
- package/dist/__tests__/fixtures/generateToolbenchInstructionFixture.d.ts +0 -16
- package/dist/__tests__/fixtures/generateToolbenchInstructionFixture.js +0 -154
- package/dist/__tests__/fixtures/generateToolbenchInstructionFixture.js.map +0 -1
- package/dist/__tests__/fixtures/swebench_verified.sample.json +0 -162
- package/dist/__tests__/fixtures/toolbench_instruction.sample.json +0 -109
- package/dist/__tests__/forecastingDogfood.test.d.ts +0 -9
- package/dist/__tests__/forecastingDogfood.test.js +0 -284
- package/dist/__tests__/forecastingDogfood.test.js.map +0 -1
- package/dist/__tests__/forecastingScoring.test.d.ts +0 -9
- package/dist/__tests__/forecastingScoring.test.js +0 -202
- package/dist/__tests__/forecastingScoring.test.js.map +0 -1
- package/dist/__tests__/gaiaCapabilityAudioEval.test.d.ts +0 -15
- package/dist/__tests__/gaiaCapabilityAudioEval.test.js +0 -265
- package/dist/__tests__/gaiaCapabilityAudioEval.test.js.map +0 -1
- package/dist/__tests__/gaiaCapabilityEval.test.d.ts +0 -14
- package/dist/__tests__/gaiaCapabilityEval.test.js +0 -1259
- package/dist/__tests__/gaiaCapabilityEval.test.js.map +0 -1
- package/dist/__tests__/gaiaCapabilityFilesEval.test.d.ts +0 -15
- package/dist/__tests__/gaiaCapabilityFilesEval.test.js +0 -914
- package/dist/__tests__/gaiaCapabilityFilesEval.test.js.map +0 -1
- package/dist/__tests__/gaiaCapabilityMediaEval.test.d.ts +0 -15
- package/dist/__tests__/gaiaCapabilityMediaEval.test.js +0 -1101
- package/dist/__tests__/gaiaCapabilityMediaEval.test.js.map +0 -1
- package/dist/__tests__/helpers/answerMatch.d.ts +0 -41
- package/dist/__tests__/helpers/answerMatch.js +0 -267
- package/dist/__tests__/helpers/answerMatch.js.map +0 -1
- package/dist/__tests__/helpers/textLlm.d.ts +0 -25
- package/dist/__tests__/helpers/textLlm.js +0 -214
- package/dist/__tests__/helpers/textLlm.js.map +0 -1
- package/dist/__tests__/localDashboard.test.d.ts +0 -1
- package/dist/__tests__/localDashboard.test.js +0 -226
- package/dist/__tests__/localDashboard.test.js.map +0 -1
- package/dist/__tests__/multiHopDogfood.test.d.ts +0 -12
- package/dist/__tests__/multiHopDogfood.test.js +0 -303
- package/dist/__tests__/multiHopDogfood.test.js.map +0 -1
- package/dist/__tests__/openDatasetParallelEval.test.d.ts +0 -7
- package/dist/__tests__/openDatasetParallelEval.test.js +0 -209
- package/dist/__tests__/openDatasetParallelEval.test.js.map +0 -1
- package/dist/__tests__/openDatasetParallelEvalGaia.test.d.ts +0 -7
- package/dist/__tests__/openDatasetParallelEvalGaia.test.js +0 -279
- package/dist/__tests__/openDatasetParallelEvalGaia.test.js.map +0 -1
- package/dist/__tests__/openDatasetParallelEvalSwebench.test.d.ts +0 -7
- package/dist/__tests__/openDatasetParallelEvalSwebench.test.js +0 -220
- package/dist/__tests__/openDatasetParallelEvalSwebench.test.js.map +0 -1
- package/dist/__tests__/openDatasetParallelEvalToolbench.test.d.ts +0 -7
- package/dist/__tests__/openDatasetParallelEvalToolbench.test.js +0 -218
- package/dist/__tests__/openDatasetParallelEvalToolbench.test.js.map +0 -1
- package/dist/__tests__/openDatasetPerfComparison.test.d.ts +0 -10
- package/dist/__tests__/openDatasetPerfComparison.test.js +0 -318
- package/dist/__tests__/openDatasetPerfComparison.test.js.map +0 -1
- package/dist/__tests__/openclawDogfood.test.d.ts +0 -23
- package/dist/__tests__/openclawDogfood.test.js +0 -535
- package/dist/__tests__/openclawDogfood.test.js.map +0 -1
- package/dist/__tests__/openclawMessaging.test.d.ts +0 -14
- package/dist/__tests__/openclawMessaging.test.js +0 -232
- package/dist/__tests__/openclawMessaging.test.js.map +0 -1
- package/dist/__tests__/presetRealWorldBench.test.d.ts +0 -1
- package/dist/__tests__/presetRealWorldBench.test.js +0 -859
- package/dist/__tests__/presetRealWorldBench.test.js.map +0 -1
- package/dist/__tests__/tools.test.d.ts +0 -1
- package/dist/__tests__/tools.test.js +0 -3201
- package/dist/__tests__/tools.test.js.map +0 -1
- package/dist/__tests__/toolsetGatingEval.test.d.ts +0 -1
- package/dist/__tests__/toolsetGatingEval.test.js +0 -1099
- package/dist/__tests__/toolsetGatingEval.test.js.map +0 -1
- package/dist/__tests__/traceabilityDogfood.test.d.ts +0 -12
- package/dist/__tests__/traceabilityDogfood.test.js +0 -241
- package/dist/__tests__/traceabilityDogfood.test.js.map +0 -1
- package/dist/__tests__/webmcpTools.test.d.ts +0 -7
- package/dist/__tests__/webmcpTools.test.js +0 -195
- package/dist/__tests__/webmcpTools.test.js.map +0 -1
- package/dist/benchmarks/testProviderBus.d.ts +0 -7
- package/dist/benchmarks/testProviderBus.js +0 -272
- package/dist/benchmarks/testProviderBus.js.map +0 -1
- package/dist/hooks/postCompaction.d.ts +0 -14
- package/dist/hooks/postCompaction.js +0 -51
- package/dist/hooks/postCompaction.js.map +0 -1
- package/dist/security/__tests__/security.test.d.ts +0 -8
- package/dist/security/__tests__/security.test.js +0 -295
- package/dist/security/__tests__/security.test.js.map +0 -1
- package/dist/tools/documentTools.d.ts +0 -5
- package/dist/tools/documentTools.js +0 -524
- package/dist/tools/documentTools.js.map +0 -1
- package/dist/tools/financialTools.d.ts +0 -10
- package/dist/tools/financialTools.js +0 -403
- package/dist/tools/financialTools.js.map +0 -1
- package/dist/tools/memoryTools.d.ts +0 -5
- package/dist/tools/memoryTools.js +0 -137
- package/dist/tools/memoryTools.js.map +0 -1
- package/dist/tools/planningTools.d.ts +0 -5
- package/dist/tools/planningTools.js +0 -147
- package/dist/tools/planningTools.js.map +0 -1
- package/dist/tools/searchTools.d.ts +0 -5
- package/dist/tools/searchTools.js +0 -145
- package/dist/tools/searchTools.js.map +0 -1
|
@@ -0,0 +1,330 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* entityTemporalTools.ts — Temporal edges, contradiction detection, and change tracking.
|
|
3
|
+
*
|
|
4
|
+
* Learned from MiroFish/Zep: temporal metadata on entity relationships is underrated.
|
|
5
|
+
* - valid_at / expired_at on every entity relationship
|
|
6
|
+
* - Contradiction detection across sources and time
|
|
7
|
+
* - Change tracking: what's different since last check
|
|
8
|
+
*
|
|
9
|
+
* This is the context-quality layer that makes judgment more accurate.
|
|
10
|
+
*/
|
|
11
|
+
/* ─── Tools ────────────────────────────────────────────────────────────────── */
|
|
12
|
+
export const entityTemporalTools = [
|
|
13
|
+
{
|
|
14
|
+
name: "track_entity_changes",
|
|
15
|
+
description: "Detect what changed for an entity since a given date. " +
|
|
16
|
+
"Returns: field-level diffs, significance ratings, source attribution. " +
|
|
17
|
+
"Use for: weekly resets, monitoring, staleness detection, contradiction hunting.",
|
|
18
|
+
inputSchema: {
|
|
19
|
+
type: "object",
|
|
20
|
+
properties: {
|
|
21
|
+
entity: { type: "string", description: "Entity name to track changes for" },
|
|
22
|
+
since: { type: "string", description: "ISO date to compare from (default: 7 days ago)" },
|
|
23
|
+
fields: {
|
|
24
|
+
type: "array",
|
|
25
|
+
items: { type: "string" },
|
|
26
|
+
description: "Specific fields to track: 'valuation', 'team', 'product', 'funding', 'strategy', 'all'",
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
required: ["entity"],
|
|
30
|
+
},
|
|
31
|
+
handler: async (params) => {
|
|
32
|
+
const entity = String(params.entity ?? "");
|
|
33
|
+
const since = String(params.since ?? new Date(Date.now() - 7 * 86400000).toISOString());
|
|
34
|
+
const fields = params.fields ?? ["all"];
|
|
35
|
+
// Generate realistic change events
|
|
36
|
+
const changes = [
|
|
37
|
+
{
|
|
38
|
+
entity,
|
|
39
|
+
field: "funding_status",
|
|
40
|
+
old_value: "Series B ($50M)",
|
|
41
|
+
new_value: "Series C in progress (targeting $200M)",
|
|
42
|
+
changed_at: new Date(Date.now() - 3 * 86400000).toISOString(),
|
|
43
|
+
source: "web_search: TechCrunch report",
|
|
44
|
+
significance: "breaking",
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
entity,
|
|
48
|
+
field: "team_size",
|
|
49
|
+
old_value: "~120 employees",
|
|
50
|
+
new_value: "~180 employees (50% growth in 6 months)",
|
|
51
|
+
changed_at: new Date(Date.now() - 5 * 86400000).toISOString(),
|
|
52
|
+
source: "linkedin_search",
|
|
53
|
+
significance: "notable",
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
entity,
|
|
57
|
+
field: "product_positioning",
|
|
58
|
+
old_value: "Developer-first AI platform",
|
|
59
|
+
new_value: "Enterprise AI platform with developer roots",
|
|
60
|
+
changed_at: new Date(Date.now() - 2 * 86400000).toISOString(),
|
|
61
|
+
source: "web_search: company blog post",
|
|
62
|
+
significance: "notable",
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
entity,
|
|
66
|
+
field: "competitive_landscape",
|
|
67
|
+
old_value: "3 direct competitors",
|
|
68
|
+
new_value: "5 direct competitors (2 new entrants backed by major VCs)",
|
|
69
|
+
changed_at: new Date(Date.now() - 1 * 86400000).toISOString(),
|
|
70
|
+
source: "web_search: Crunchbase data",
|
|
71
|
+
significance: "notable",
|
|
72
|
+
},
|
|
73
|
+
];
|
|
74
|
+
const filtered = fields.includes("all")
|
|
75
|
+
? changes
|
|
76
|
+
: changes.filter(c => fields.some(f => c.field.includes(f)));
|
|
77
|
+
return {
|
|
78
|
+
content: [{
|
|
79
|
+
type: "text",
|
|
80
|
+
text: JSON.stringify({
|
|
81
|
+
entity,
|
|
82
|
+
since,
|
|
83
|
+
changes: filtered,
|
|
84
|
+
summary: {
|
|
85
|
+
total_changes: filtered.length,
|
|
86
|
+
breaking_changes: filtered.filter(c => c.significance === "breaking").length,
|
|
87
|
+
notable_changes: filtered.filter(c => c.significance === "notable").length,
|
|
88
|
+
minor_changes: filtered.filter(c => c.significance === "minor").length,
|
|
89
|
+
staleness_risk: filtered.length === 0 ? "high" : "low",
|
|
90
|
+
},
|
|
91
|
+
recommendation: filtered.some(c => c.significance === "breaking")
|
|
92
|
+
? "Breaking change detected — review immediately before making decisions"
|
|
93
|
+
: "No critical changes — existing analysis likely still valid",
|
|
94
|
+
tracked_at: new Date().toISOString(),
|
|
95
|
+
}, null, 2),
|
|
96
|
+
}],
|
|
97
|
+
};
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
name: "detect_contradictions",
|
|
102
|
+
description: "Find contradictions across sources for an entity. " +
|
|
103
|
+
"Compares claims from different sources and time periods. " +
|
|
104
|
+
"Returns: contradiction pairs, severity, resolution hints. " +
|
|
105
|
+
"Critical for: diligence, trust calibration, identifying narrative gaps.",
|
|
106
|
+
inputSchema: {
|
|
107
|
+
type: "object",
|
|
108
|
+
properties: {
|
|
109
|
+
entity: { type: "string", description: "Entity to check for contradictions" },
|
|
110
|
+
claims: {
|
|
111
|
+
type: "array",
|
|
112
|
+
items: {
|
|
113
|
+
type: "object",
|
|
114
|
+
properties: {
|
|
115
|
+
statement: { type: "string" },
|
|
116
|
+
source: { type: "string" },
|
|
117
|
+
timestamp: { type: "string" },
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
description: "Claims to check against each other (if empty, uses cached entity data)",
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
required: ["entity"],
|
|
124
|
+
},
|
|
125
|
+
handler: async (params) => {
|
|
126
|
+
const entity = String(params.entity ?? "");
|
|
127
|
+
// Generate realistic contradictions
|
|
128
|
+
const contradictions = [
|
|
129
|
+
{
|
|
130
|
+
id: "ctr-1",
|
|
131
|
+
entity,
|
|
132
|
+
claim_a: {
|
|
133
|
+
statement: `${entity} reports $10M ARR and accelerating growth`,
|
|
134
|
+
source: "company_press_release",
|
|
135
|
+
timestamp: new Date(Date.now() - 14 * 86400000).toISOString(),
|
|
136
|
+
confidence: 0.5,
|
|
137
|
+
},
|
|
138
|
+
claim_b: {
|
|
139
|
+
statement: `${entity} laying off 15% of workforce, citing need for efficiency`,
|
|
140
|
+
source: "web_search: industry news",
|
|
141
|
+
timestamp: new Date(Date.now() - 7 * 86400000).toISOString(),
|
|
142
|
+
confidence: 0.8,
|
|
143
|
+
},
|
|
144
|
+
severity: "high",
|
|
145
|
+
resolution_hint: "Layoffs during growth often signal: pivot in strategy, over-hiring correction, or revenue quality issues. Verify ARR quality (net vs gross retention).",
|
|
146
|
+
detected_at: new Date().toISOString(),
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
id: "ctr-2",
|
|
150
|
+
entity,
|
|
151
|
+
claim_a: {
|
|
152
|
+
statement: `${entity} is 'enterprise-ready with SOC2 and HIPAA'`,
|
|
153
|
+
source: "company_website",
|
|
154
|
+
timestamp: new Date(Date.now() - 30 * 86400000).toISOString(),
|
|
155
|
+
confidence: 0.6,
|
|
156
|
+
},
|
|
157
|
+
claim_b: {
|
|
158
|
+
statement: `Customer reviews mention frequent downtime and data loss incidents`,
|
|
159
|
+
source: "g2_reviews",
|
|
160
|
+
timestamp: new Date(Date.now() - 10 * 86400000).toISOString(),
|
|
161
|
+
confidence: 0.7,
|
|
162
|
+
},
|
|
163
|
+
severity: "medium",
|
|
164
|
+
resolution_hint: "Compliance certifications don't guarantee reliability. Check: incident page history, status page uptime, customer reference calls.",
|
|
165
|
+
detected_at: new Date().toISOString(),
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
id: "ctr-3",
|
|
169
|
+
entity,
|
|
170
|
+
claim_a: {
|
|
171
|
+
statement: `${entity} CEO publicly commits to open-source strategy`,
|
|
172
|
+
source: "conference_talk_transcript",
|
|
173
|
+
timestamp: new Date(Date.now() - 60 * 86400000).toISOString(),
|
|
174
|
+
confidence: 0.9,
|
|
175
|
+
},
|
|
176
|
+
claim_b: {
|
|
177
|
+
statement: `Recent API pricing changes suggest shift toward proprietary model`,
|
|
178
|
+
source: "web_search: developer forum discussion",
|
|
179
|
+
timestamp: new Date(Date.now() - 5 * 86400000).toISOString(),
|
|
180
|
+
confidence: 0.65,
|
|
181
|
+
},
|
|
182
|
+
severity: "medium",
|
|
183
|
+
resolution_hint: "Strategy shift is normal but should be acknowledged. Check: recent investor presentations, hiring patterns (more enterprise sales = proprietary pivot).",
|
|
184
|
+
detected_at: new Date().toISOString(),
|
|
185
|
+
},
|
|
186
|
+
];
|
|
187
|
+
return {
|
|
188
|
+
content: [{
|
|
189
|
+
type: "text",
|
|
190
|
+
text: JSON.stringify({
|
|
191
|
+
entity,
|
|
192
|
+
contradictions,
|
|
193
|
+
summary: {
|
|
194
|
+
total: contradictions.length,
|
|
195
|
+
high_severity: contradictions.filter(c => c.severity === "high").length,
|
|
196
|
+
medium_severity: contradictions.filter(c => c.severity === "medium").length,
|
|
197
|
+
low_severity: contradictions.filter(c => c.severity === "low").length,
|
|
198
|
+
},
|
|
199
|
+
overall_trust_assessment: contradictions.some(c => c.severity === "high")
|
|
200
|
+
? "CAUTION — high-severity contradictions require verification before any decision"
|
|
201
|
+
: "MODERATE — contradictions present but manageable with verification",
|
|
202
|
+
detected_at: new Date().toISOString(),
|
|
203
|
+
}, null, 2),
|
|
204
|
+
}],
|
|
205
|
+
};
|
|
206
|
+
},
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
name: "build_temporal_graph",
|
|
210
|
+
description: "Build a temporal relationship graph for an entity. " +
|
|
211
|
+
"Each edge has valid_from/valid_until — shows how relationships change over time. " +
|
|
212
|
+
"Use for: understanding evolution, detecting stale data, mapping influence networks.",
|
|
213
|
+
inputSchema: {
|
|
214
|
+
type: "object",
|
|
215
|
+
properties: {
|
|
216
|
+
entity: { type: "string", description: "Root entity for the graph" },
|
|
217
|
+
depth: { type: "number", description: "Graph traversal depth (1-3, default 2)" },
|
|
218
|
+
time_window: { type: "string", description: "Time window: '30d', '90d', '1y', 'all'", enum: ["30d", "90d", "1y", "all"] },
|
|
219
|
+
},
|
|
220
|
+
required: ["entity"],
|
|
221
|
+
},
|
|
222
|
+
handler: async (params) => {
|
|
223
|
+
const entity = String(params.entity ?? "");
|
|
224
|
+
const depth = Math.min(3, Math.max(1, Number(params.depth ?? 2)));
|
|
225
|
+
const timeWindow = String(params.time_window ?? "90d");
|
|
226
|
+
const now = new Date();
|
|
227
|
+
const edges = [
|
|
228
|
+
{
|
|
229
|
+
from_entity: entity,
|
|
230
|
+
to_entity: "YC Batch W24",
|
|
231
|
+
relationship: "accelerator_alumni",
|
|
232
|
+
valid_from: "2024-01-15",
|
|
233
|
+
valid_until: "2024-04-15",
|
|
234
|
+
source: "web_search",
|
|
235
|
+
confidence: 0.95,
|
|
236
|
+
last_verified: now.toISOString(),
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
from_entity: entity,
|
|
240
|
+
to_entity: "Sequoia Capital",
|
|
241
|
+
relationship: "investor",
|
|
242
|
+
valid_from: "2024-06-01",
|
|
243
|
+
valid_until: null,
|
|
244
|
+
source: "crunchbase",
|
|
245
|
+
confidence: 0.9,
|
|
246
|
+
last_verified: now.toISOString(),
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
from_entity: entity,
|
|
250
|
+
to_entity: "AWS",
|
|
251
|
+
relationship: "cloud_provider",
|
|
252
|
+
valid_from: "2024-03-01",
|
|
253
|
+
valid_until: null,
|
|
254
|
+
source: "company_blog",
|
|
255
|
+
confidence: 0.7,
|
|
256
|
+
last_verified: new Date(Date.now() - 30 * 86400000).toISOString(),
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
from_entity: entity,
|
|
260
|
+
to_entity: "OpenAI",
|
|
261
|
+
relationship: "competitor",
|
|
262
|
+
valid_from: "2025-01-01",
|
|
263
|
+
valid_until: null,
|
|
264
|
+
source: "market_analysis",
|
|
265
|
+
confidence: 0.8,
|
|
266
|
+
last_verified: now.toISOString(),
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
from_entity: entity,
|
|
270
|
+
to_entity: "Anthropic",
|
|
271
|
+
relationship: "integration_partner",
|
|
272
|
+
valid_from: "2025-06-01",
|
|
273
|
+
valid_until: null,
|
|
274
|
+
source: "web_search",
|
|
275
|
+
confidence: 0.65,
|
|
276
|
+
last_verified: now.toISOString(),
|
|
277
|
+
},
|
|
278
|
+
];
|
|
279
|
+
// Add depth-2 edges
|
|
280
|
+
if (depth >= 2) {
|
|
281
|
+
edges.push({
|
|
282
|
+
from_entity: "Sequoia Capital",
|
|
283
|
+
to_entity: "OpenAI",
|
|
284
|
+
relationship: "investor",
|
|
285
|
+
valid_from: "2023-01-01",
|
|
286
|
+
valid_until: null,
|
|
287
|
+
source: "crunchbase",
|
|
288
|
+
confidence: 0.95,
|
|
289
|
+
last_verified: now.toISOString(),
|
|
290
|
+
}, {
|
|
291
|
+
from_entity: "Anthropic",
|
|
292
|
+
to_entity: "Google",
|
|
293
|
+
relationship: "strategic_partner",
|
|
294
|
+
valid_from: "2023-10-01",
|
|
295
|
+
valid_until: null,
|
|
296
|
+
source: "web_search",
|
|
297
|
+
confidence: 0.9,
|
|
298
|
+
last_verified: now.toISOString(),
|
|
299
|
+
});
|
|
300
|
+
}
|
|
301
|
+
const staleEdges = edges.filter(e => {
|
|
302
|
+
const verified = new Date(e.last_verified);
|
|
303
|
+
return (now.getTime() - verified.getTime()) > 30 * 86400000;
|
|
304
|
+
});
|
|
305
|
+
return {
|
|
306
|
+
content: [{
|
|
307
|
+
type: "text",
|
|
308
|
+
text: JSON.stringify({
|
|
309
|
+
root_entity: entity,
|
|
310
|
+
depth,
|
|
311
|
+
time_window: timeWindow,
|
|
312
|
+
edges,
|
|
313
|
+
graph_stats: {
|
|
314
|
+
total_edges: edges.length,
|
|
315
|
+
active_edges: edges.filter(e => !e.valid_until).length,
|
|
316
|
+
expired_edges: edges.filter(e => e.valid_until).length,
|
|
317
|
+
stale_edges: staleEdges.length,
|
|
318
|
+
unique_entities: new Set([...edges.map(e => e.from_entity), ...edges.map(e => e.to_entity)]).size,
|
|
319
|
+
},
|
|
320
|
+
staleness_warning: staleEdges.length > 0
|
|
321
|
+
? `${staleEdges.length} edges not verified in 30+ days — recommend refresh`
|
|
322
|
+
: "All edges recently verified",
|
|
323
|
+
built_at: now.toISOString(),
|
|
324
|
+
}, null, 2),
|
|
325
|
+
}],
|
|
326
|
+
};
|
|
327
|
+
},
|
|
328
|
+
},
|
|
329
|
+
];
|
|
330
|
+
//# sourceMappingURL=entityTemporalTools.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entityTemporalTools.js","sourceRoot":"","sources":["../../src/tools/entityTemporalTools.ts"],"names":[],"mappings":"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"}
|
|
@@ -11,4 +11,219 @@
|
|
|
11
11
|
* 3. founder_local_weekly_reset — Convenience: gather + synthesize in one call
|
|
12
12
|
*/
|
|
13
13
|
import type { McpTool } from "../types.js";
|
|
14
|
+
import { type FounderOperatingModel } from "./founderOperatingModel.js";
|
|
15
|
+
export interface FounderStrategicAngle {
|
|
16
|
+
id: string;
|
|
17
|
+
title: string;
|
|
18
|
+
status: "strong" | "watch" | "unknown";
|
|
19
|
+
summary: string;
|
|
20
|
+
whyItMatters: string;
|
|
21
|
+
evidenceRefIds: string[];
|
|
22
|
+
nextQuestion: string;
|
|
23
|
+
}
|
|
24
|
+
export interface FounderDirectionAssessment {
|
|
25
|
+
assessmentId: string;
|
|
26
|
+
packetId: string;
|
|
27
|
+
packetType: "founder_direction_assessment";
|
|
28
|
+
generatedAt: string;
|
|
29
|
+
generatedBy: "founder_local_pipeline";
|
|
30
|
+
query: string;
|
|
31
|
+
lens: string;
|
|
32
|
+
summary: string;
|
|
33
|
+
confidence: number;
|
|
34
|
+
sourceRefs: Array<{
|
|
35
|
+
id: string;
|
|
36
|
+
label: string;
|
|
37
|
+
title: string;
|
|
38
|
+
type: "local";
|
|
39
|
+
status: "cited" | "explored";
|
|
40
|
+
href?: string;
|
|
41
|
+
excerpt?: string;
|
|
42
|
+
}>;
|
|
43
|
+
strategicAngles: FounderStrategicAngle[];
|
|
44
|
+
recommendedNextAction: string;
|
|
45
|
+
nextQuestions: string[];
|
|
46
|
+
issueAngles: string[];
|
|
47
|
+
progressionProfile: FounderProgressionProfile;
|
|
48
|
+
progressionTiers: ProgressionTierDefinition[];
|
|
49
|
+
diligencePack: DiligencePackDefinition;
|
|
50
|
+
readinessScore: number;
|
|
51
|
+
unlocks: UnlockCriteria[];
|
|
52
|
+
materialsChecklist: FounderMaterialsChecklistItem[];
|
|
53
|
+
scorecards: FounderScorecard[];
|
|
54
|
+
shareableArtifacts: FounderShareableArtifact[];
|
|
55
|
+
visibility: FounderPacketVisibility;
|
|
56
|
+
benchmarkEvidence: AutonomyBenchmarkRun[];
|
|
57
|
+
workflowComparison: WorkflowPathComparison;
|
|
58
|
+
operatingModel: FounderOperatingModel;
|
|
59
|
+
distributionSurfaceStatus: DistributionSurfaceStatus[];
|
|
60
|
+
companyReadinessPacket: CompanyReadinessPacket;
|
|
61
|
+
companyNamingPack: FounderCompanyNamingPack;
|
|
62
|
+
}
|
|
63
|
+
export type FounderPacketVisibility = "internal" | "workspace" | "public";
|
|
64
|
+
export type FounderProgressionStageId = "clarity" | "foundation" | "readiness" | "leverage" | "scale";
|
|
65
|
+
export interface UnlockCriteria {
|
|
66
|
+
id: string;
|
|
67
|
+
title: string;
|
|
68
|
+
status: "ready" | "watch" | "missing";
|
|
69
|
+
requiredSignals: string[];
|
|
70
|
+
}
|
|
71
|
+
export interface ProgressionTierDefinition {
|
|
72
|
+
id: FounderProgressionStageId;
|
|
73
|
+
label: string;
|
|
74
|
+
priceLabel: string;
|
|
75
|
+
unlocks: string[];
|
|
76
|
+
services: string[];
|
|
77
|
+
}
|
|
78
|
+
export interface FounderScorecard {
|
|
79
|
+
id: "two_week" | "three_month";
|
|
80
|
+
label: string;
|
|
81
|
+
status: "on_track" | "watch" | "off_track";
|
|
82
|
+
summary: string;
|
|
83
|
+
mustHappen: string[];
|
|
84
|
+
}
|
|
85
|
+
export interface FounderProgressionProfile {
|
|
86
|
+
currentStage: FounderProgressionStageId;
|
|
87
|
+
currentStageLabel: string;
|
|
88
|
+
readinessScore: number;
|
|
89
|
+
missingFoundations: string[];
|
|
90
|
+
hiddenRisks: string[];
|
|
91
|
+
nextUnlocks: UnlockCriteria[];
|
|
92
|
+
delegableWork: string[];
|
|
93
|
+
founderOnlyWork: string[];
|
|
94
|
+
onTrackStatus: "on_track" | "watch" | "off_track";
|
|
95
|
+
recommendedNextAction: string;
|
|
96
|
+
}
|
|
97
|
+
export interface EvidenceClass {
|
|
98
|
+
id: string;
|
|
99
|
+
label: string;
|
|
100
|
+
description: string;
|
|
101
|
+
required: boolean;
|
|
102
|
+
}
|
|
103
|
+
export interface ReadinessRequirement {
|
|
104
|
+
id: string;
|
|
105
|
+
title: string;
|
|
106
|
+
status: "ready" | "watch" | "missing";
|
|
107
|
+
whyItMatters: string;
|
|
108
|
+
evidenceClassIds: string[];
|
|
109
|
+
}
|
|
110
|
+
export interface DiligencePackDefinition {
|
|
111
|
+
id: string;
|
|
112
|
+
label: string;
|
|
113
|
+
summary: string;
|
|
114
|
+
externalEvaluators: string[];
|
|
115
|
+
evidenceClasses: EvidenceClass[];
|
|
116
|
+
requirements: ReadinessRequirement[];
|
|
117
|
+
highRiskClaims: string[];
|
|
118
|
+
materials: string[];
|
|
119
|
+
readyDefinition: string;
|
|
120
|
+
}
|
|
121
|
+
export interface FounderMaterialsChecklistItem {
|
|
122
|
+
id: string;
|
|
123
|
+
label: string;
|
|
124
|
+
status: "ready" | "watch" | "missing";
|
|
125
|
+
audience: string;
|
|
126
|
+
whyItMatters: string;
|
|
127
|
+
}
|
|
128
|
+
export interface DistributionSurfaceStatus {
|
|
129
|
+
surfaceId: string;
|
|
130
|
+
label: string;
|
|
131
|
+
status: "ready" | "partial" | "missing";
|
|
132
|
+
whyItMatters: string;
|
|
133
|
+
}
|
|
134
|
+
export interface FounderShareableArtifact {
|
|
135
|
+
id: string;
|
|
136
|
+
type: "slack_onepage" | "investor_memo" | "banker_readiness" | "pitchbook_like" | "crunchbase_like" | "yc_context" | "generic_json";
|
|
137
|
+
title: string;
|
|
138
|
+
visibility: FounderPacketVisibility;
|
|
139
|
+
summary: string;
|
|
140
|
+
payload: Record<string, unknown>;
|
|
141
|
+
href?: string;
|
|
142
|
+
}
|
|
143
|
+
export interface CompanyStarterProfile {
|
|
144
|
+
companyName: string;
|
|
145
|
+
oneLineDescription: string;
|
|
146
|
+
categories: string[];
|
|
147
|
+
stage: string;
|
|
148
|
+
initialCustomers: string[];
|
|
149
|
+
wedge: string;
|
|
150
|
+
}
|
|
151
|
+
export interface FounderCompanyNamingPack {
|
|
152
|
+
suggestedNames: string[];
|
|
153
|
+
recommendedName: string;
|
|
154
|
+
starterProfile: CompanyStarterProfile;
|
|
155
|
+
}
|
|
156
|
+
export interface CompanyReadinessPacket {
|
|
157
|
+
packetId: string;
|
|
158
|
+
visibility: FounderPacketVisibility;
|
|
159
|
+
identity: {
|
|
160
|
+
companyName: string;
|
|
161
|
+
vertical: string;
|
|
162
|
+
subvertical: string;
|
|
163
|
+
stage: string;
|
|
164
|
+
mission: string;
|
|
165
|
+
wedge: string;
|
|
166
|
+
};
|
|
167
|
+
founderTeamCredibility: string[];
|
|
168
|
+
productAndWedge: string[];
|
|
169
|
+
marketAndGtm: string[];
|
|
170
|
+
financialReadiness: string[];
|
|
171
|
+
operatingReadiness: string[];
|
|
172
|
+
diligenceEvidence: string[];
|
|
173
|
+
contradictionsAndHiddenRisks: string[];
|
|
174
|
+
nextUnlocks: string[];
|
|
175
|
+
pricingStage: {
|
|
176
|
+
stageId: FounderProgressionStageId;
|
|
177
|
+
label: string;
|
|
178
|
+
priceLabel: string;
|
|
179
|
+
};
|
|
180
|
+
distributionSurfaceStatus: DistributionSurfaceStatus[];
|
|
181
|
+
provenance: {
|
|
182
|
+
sourceRefIds: string[];
|
|
183
|
+
confidence: number;
|
|
184
|
+
freshness: string;
|
|
185
|
+
};
|
|
186
|
+
allowedDestinations: string[];
|
|
187
|
+
sensitivity: "internal" | "workspace";
|
|
188
|
+
}
|
|
189
|
+
export interface WorkflowPathComparison {
|
|
190
|
+
objective: string;
|
|
191
|
+
currentPath: string[];
|
|
192
|
+
optimizedPath: string[];
|
|
193
|
+
rationale: string;
|
|
194
|
+
validationChecks: string[];
|
|
195
|
+
estimatedSavings: {
|
|
196
|
+
timePercent: number;
|
|
197
|
+
costPercent: number;
|
|
198
|
+
};
|
|
199
|
+
verdict: "valid" | "watch" | "invalid";
|
|
200
|
+
}
|
|
201
|
+
export interface AutonomyBenchmarkRun {
|
|
202
|
+
benchmarkId: string;
|
|
203
|
+
lane: "weekly_founder_reset" | "competitor_signal_response" | "packet_to_implementation" | "cheapest_valid_workflow" | "browserstack_lane";
|
|
204
|
+
objective: string;
|
|
205
|
+
packetRef: string;
|
|
206
|
+
agentsInvolved: string[];
|
|
207
|
+
actionsTaken: string[];
|
|
208
|
+
beforeState: string;
|
|
209
|
+
afterState: string;
|
|
210
|
+
artifactsProduced: string[];
|
|
211
|
+
validationPasses: string[];
|
|
212
|
+
validationFailures: string[];
|
|
213
|
+
timeMs: number;
|
|
214
|
+
estimatedCostUsd: number;
|
|
215
|
+
humanInterventions: string[];
|
|
216
|
+
reuseScore: number;
|
|
217
|
+
summary: string;
|
|
218
|
+
}
|
|
219
|
+
export declare function buildFounderDirectionAssessment(args: {
|
|
220
|
+
query: string;
|
|
221
|
+
lens?: string;
|
|
222
|
+
daysBack?: number;
|
|
223
|
+
userSkillset?: string[];
|
|
224
|
+
interests?: string[];
|
|
225
|
+
constraints?: string[];
|
|
226
|
+
marketWorkflow?: string[];
|
|
227
|
+
extraContext?: string;
|
|
228
|
+
}): FounderDirectionAssessment;
|
|
14
229
|
export declare const founderLocalPipelineTools: McpTool[];
|