tachibot-mcp 2.0.6 → 2.1.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 (58) hide show
  1. package/.env.example +13 -3
  2. package/README.md +88 -44
  3. package/dist/src/config/model-constants.js +121 -91
  4. package/dist/src/config/model-defaults.js +35 -21
  5. package/dist/src/config/model-preferences.js +5 -4
  6. package/dist/src/config.js +2 -1
  7. package/dist/src/mcp-client.js +3 -3
  8. package/dist/src/modes/scout.js +2 -1
  9. package/dist/src/optimization/model-router.js +19 -16
  10. package/dist/src/orchestrator-instructions.js +1 -1
  11. package/dist/src/orchestrator-lite.js +1 -1
  12. package/dist/src/orchestrator.js +1 -1
  13. package/dist/src/profiles/balanced.js +1 -2
  14. package/dist/src/profiles/code_focus.js +1 -2
  15. package/dist/src/profiles/full.js +1 -2
  16. package/dist/src/profiles/minimal.js +1 -2
  17. package/dist/src/profiles/research_power.js +1 -2
  18. package/dist/src/server.js +13 -12
  19. package/dist/src/tools/gemini-tools.js +32 -16
  20. package/dist/src/tools/grok-enhanced.js +18 -17
  21. package/dist/src/tools/grok-tools.js +34 -20
  22. package/dist/src/tools/openai-tools.js +52 -61
  23. package/dist/src/tools/tool-router.js +53 -52
  24. package/dist/src/tools/unified-ai-provider.js +90 -9
  25. package/dist/src/tools/workflow-runner.js +16 -0
  26. package/dist/src/tools/workflow-validator-tool.js +1 -1
  27. package/dist/src/utils/api-keys.js +20 -0
  28. package/dist/src/utils/openrouter-gateway.js +117 -0
  29. package/dist/src/validators/interpolation-validator.js +4 -0
  30. package/dist/src/validators/tool-registry-validator.js +1 -1
  31. package/dist/src/validators/tool-types.js +0 -1
  32. package/dist/src/workflows/custom-workflows.js +4 -3
  33. package/dist/src/workflows/engine/VariableInterpolator.js +30 -3
  34. package/dist/src/workflows/engine/WorkflowExecutionEngine.js +2 -2
  35. package/dist/src/workflows/engine/WorkflowOutputFormatter.js +27 -4
  36. package/dist/src/workflows/fallback-strategies.js +2 -2
  37. package/dist/src/workflows/model-router.js +20 -11
  38. package/dist/src/workflows/tool-mapper.js +51 -24
  39. package/docs/API_KEYS.md +52 -18
  40. package/docs/CONFIGURATION.md +25 -8
  41. package/docs/TOOLS_REFERENCE.md +12 -48
  42. package/docs/TOOL_PARAMETERS.md +19 -16
  43. package/docs/WORKFLOWS.md +7 -7
  44. package/package.json +1 -1
  45. package/profiles/balanced.json +1 -2
  46. package/profiles/code_focus.json +1 -2
  47. package/profiles/debug_intensive.json +0 -1
  48. package/profiles/full.json +2 -3
  49. package/profiles/minimal.json +1 -2
  50. package/profiles/research_power.json +1 -2
  51. package/profiles/workflow_builder.json +1 -2
  52. package/tools.config.json +15 -3
  53. package/workflows/code-architecture-review.yaml +5 -3
  54. package/workflows/creative-brainstorm-yaml.yaml +1 -1
  55. package/workflows/pingpong.yaml +5 -3
  56. package/workflows/system/README.md +1 -1
  57. package/workflows/system/verifier.yaml +8 -5
  58. package/workflows/ultra-creative-brainstorm.yaml +3 -3
@@ -121,10 +121,12 @@ steps:
121
121
  # ═══════════════════════════════════════════════════════════════════════════
122
122
 
123
123
  - name: consensus
124
- tool: openai_compare
124
+ tool: openai_brainstorm
125
125
  input:
126
- topic: "Final consensus on: ${query}"
127
- options:
126
+ problem: |
127
+ Synthesize final consensus on: ${query}
128
+
129
+ Analyze these perspectives and provide a unified recommendation:
128
130
  - "Grok's analysis: ${challenge-grok.output}"
129
131
  - "Gemini's synthesis: ${challenge-gemini.output}"
130
132
  - "Qwen's technical review: ${challenge-qwen.output}"
@@ -25,7 +25,7 @@ workflow verifier --query "Python is faster than JavaScript for all use cases"
25
25
  ```
26
26
 
27
27
  **Models Used:**
28
- 1. GPT-5 Mini (openai_compare)
28
+ 1. GPT-5 Mini (openai_brainstorm)
29
29
  2. Gemini 2.5 (gemini_analyze_text)
30
30
  3. Grok 4 (grok_code)
31
31
  4. Qwen Coder (qwen_coder)
@@ -10,12 +10,15 @@ steps:
10
10
  # Each model gets 10k tokens, saved to disk
11
11
 
12
12
  - name: verify_gpt5_mini
13
- tool: openai_compare
13
+ tool: openai_brainstorm
14
14
  input:
15
- topic: "Verify the following claim or statement"
16
- options:
17
- - "${query}"
18
- includeRecommendation: false
15
+ problem: |
16
+ Verify the following claim or statement:
17
+ ${query}
18
+
19
+ Provide verification analysis including accuracy assessment, evidence, and confidence level.
20
+ style: "systematic"
21
+ quantity: 3
19
22
  saveToFile: true
20
23
  maxTokens: 10000
21
24
  output:
@@ -8,10 +8,10 @@ version: "3.0"
8
8
  settings:
9
9
  optimization:
10
10
  enabled: true
11
- smartRouting: true
11
+ smartRouting: false # Disabled - was selecting invalid gpt-5-nano model
12
12
  compressPrompts: false
13
13
  autoSynthesis:
14
- enabled: true
14
+ enabled: false # Disabled for testing
15
15
  tokenThreshold: 25000
16
16
  checkpointInterval: 12000
17
17
  synthesisTool: 'gemini_analyze_text'
@@ -195,7 +195,7 @@ steps:
195
195
  input:
196
196
  query: "${query} - explore creative applications across domains"
197
197
  mode: "code-brainstorm"
198
- models: ["gpt-5.1", "gemini-2.5", "grok-4-fast-reasoning"]
198
+ models: ["gpt-5.1", "gemini-2.5-flash", "grok-4-1-fast-reasoning"]
199
199
  rounds: 3
200
200
  context: "Research: ${research_findings}\nIdeas: ${innovative_solutions}\nPatterns: ${patterns}"
201
201
  saveToFile: true