nodebench-mcp 2.40.0 → 2.42.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/benchmarks/dogfoodJudge.d.ts +11 -0
- package/dist/benchmarks/dogfoodJudge.js +288 -0
- package/dist/benchmarks/dogfoodJudge.js.map +1 -0
- package/dist/benchmarks/dogfoodRunner.d.ts +1 -1
- package/dist/benchmarks/dogfoodRunner.js +289 -1
- package/dist/benchmarks/dogfoodRunner.js.map +1 -1
- package/dist/tools/founderLocalPipeline.d.ts +14 -0
- package/dist/tools/founderLocalPipeline.js +491 -0
- package/dist/tools/founderLocalPipeline.js.map +1 -0
- package/dist/tools/founderTrackingTools.js +15 -5
- package/dist/tools/founderTrackingTools.js.map +1 -1
- package/dist/tools/reconTools.js +219 -58
- package/dist/tools/reconTools.js.map +1 -1
- package/dist/tools/toolRegistry.js +53 -0
- package/dist/tools/toolRegistry.js.map +1 -1
- package/dist/toolsetRegistry.js +3 -2
- package/dist/toolsetRegistry.js.map +1 -1
- package/package.json +2 -2
|
@@ -325,6 +325,19 @@ const REGISTRY_ENTRIES = [
|
|
|
325
325
|
},
|
|
326
326
|
phase: "research",
|
|
327
327
|
},
|
|
328
|
+
{
|
|
329
|
+
name: "enrich_recon",
|
|
330
|
+
category: "reconnaissance",
|
|
331
|
+
tags: ["recon", "enrich", "web", "search", "live", "data", "company", "competitor"],
|
|
332
|
+
quickRef: {
|
|
333
|
+
nextAction: "Web enrichment complete. Review auto-logged findings, then extract_variables or build_claim_graph.",
|
|
334
|
+
nextTools: ["extract_variables", "build_claim_graph", "get_recon_summary", "log_recon_finding"],
|
|
335
|
+
methodology: "reconnaissance",
|
|
336
|
+
tip: "Use after run_recon to add live web data. Requires GEMINI_API_KEY, OPENAI_API_KEY, or PERPLEXITY_API_KEY.",
|
|
337
|
+
},
|
|
338
|
+
phase: "research",
|
|
339
|
+
complexity: "medium",
|
|
340
|
+
},
|
|
328
341
|
{
|
|
329
342
|
name: "log_recon_finding",
|
|
330
343
|
category: "reconnaissance",
|
|
@@ -3917,6 +3930,46 @@ const REGISTRY_ENTRIES = [
|
|
|
3917
3930
|
phase: "research",
|
|
3918
3931
|
complexity: "medium",
|
|
3919
3932
|
},
|
|
3933
|
+
// ═══ FOUNDER LOCAL PIPELINE (end-to-end without Convex) ═══
|
|
3934
|
+
{
|
|
3935
|
+
name: "founder_local_gather",
|
|
3936
|
+
category: "founder",
|
|
3937
|
+
tags: ["founder", "local", "gather", "context", "git", "sqlite", "filesystem", "intelligence"],
|
|
3938
|
+
quickRef: {
|
|
3939
|
+
nextAction: "Context gathered from local sources. Call founder_local_synthesize to produce a packet, or review the gathered data first.",
|
|
3940
|
+
nextTools: ["founder_local_synthesize", "founder_local_weekly_reset"],
|
|
3941
|
+
methodology: "founder",
|
|
3942
|
+
tip: "No Convex or external APIs needed. Reads git log, CLAUDE.md, session memory, dogfood findings.",
|
|
3943
|
+
},
|
|
3944
|
+
phase: "research",
|
|
3945
|
+
complexity: "low",
|
|
3946
|
+
},
|
|
3947
|
+
{
|
|
3948
|
+
name: "founder_local_synthesize",
|
|
3949
|
+
category: "founder",
|
|
3950
|
+
tags: ["founder", "local", "synthesize", "packet", "contradiction", "signals", "memo", "intelligence"],
|
|
3951
|
+
quickRef: {
|
|
3952
|
+
nextAction: "Packet synthesized. Review contradictions and next actions. Export memo or feed into founder_packet_validate.",
|
|
3953
|
+
nextTools: ["founder_packet_validate", "track_milestone", "track_action"],
|
|
3954
|
+
methodology: "founder",
|
|
3955
|
+
tip: "Detects contradictions between CLAUDE.md, public surfaces, and dogfood findings automatically.",
|
|
3956
|
+
},
|
|
3957
|
+
phase: "ship",
|
|
3958
|
+
complexity: "medium",
|
|
3959
|
+
},
|
|
3960
|
+
{
|
|
3961
|
+
name: "founder_local_weekly_reset",
|
|
3962
|
+
category: "founder",
|
|
3963
|
+
tags: ["founder", "local", "weekly", "reset", "packet", "habit", "intelligence", "memo", "canonical"],
|
|
3964
|
+
quickRef: {
|
|
3965
|
+
nextAction: "Weekly reset packet generated. Share the memo, resolve top contradiction, then execute next 3 moves.",
|
|
3966
|
+
nextTools: ["track_action", "track_milestone", "founder_packet_validate"],
|
|
3967
|
+
methodology: "founder",
|
|
3968
|
+
tip: "One-call convenience: gather + synthesize + memo in one shot. First habit of the dogfood loop.",
|
|
3969
|
+
},
|
|
3970
|
+
phase: "ship",
|
|
3971
|
+
complexity: "medium",
|
|
3972
|
+
},
|
|
3920
3973
|
// ═══ DOGFOOD JUDGE (Phase 13 — compound verification) ═══
|
|
3921
3974
|
{
|
|
3922
3975
|
name: "start_dogfood_session",
|