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.
- package/.env.example +13 -3
- package/README.md +88 -44
- package/dist/src/config/model-constants.js +121 -91
- package/dist/src/config/model-defaults.js +35 -21
- package/dist/src/config/model-preferences.js +5 -4
- package/dist/src/config.js +2 -1
- package/dist/src/mcp-client.js +3 -3
- package/dist/src/modes/scout.js +2 -1
- package/dist/src/optimization/model-router.js +19 -16
- package/dist/src/orchestrator-instructions.js +1 -1
- package/dist/src/orchestrator-lite.js +1 -1
- package/dist/src/orchestrator.js +1 -1
- package/dist/src/profiles/balanced.js +1 -2
- package/dist/src/profiles/code_focus.js +1 -2
- package/dist/src/profiles/full.js +1 -2
- package/dist/src/profiles/minimal.js +1 -2
- package/dist/src/profiles/research_power.js +1 -2
- package/dist/src/server.js +13 -12
- package/dist/src/tools/gemini-tools.js +32 -16
- package/dist/src/tools/grok-enhanced.js +18 -17
- package/dist/src/tools/grok-tools.js +34 -20
- package/dist/src/tools/openai-tools.js +52 -61
- package/dist/src/tools/tool-router.js +53 -52
- package/dist/src/tools/unified-ai-provider.js +90 -9
- package/dist/src/tools/workflow-runner.js +16 -0
- package/dist/src/tools/workflow-validator-tool.js +1 -1
- package/dist/src/utils/api-keys.js +20 -0
- package/dist/src/utils/openrouter-gateway.js +117 -0
- package/dist/src/validators/interpolation-validator.js +4 -0
- package/dist/src/validators/tool-registry-validator.js +1 -1
- package/dist/src/validators/tool-types.js +0 -1
- package/dist/src/workflows/custom-workflows.js +4 -3
- package/dist/src/workflows/engine/VariableInterpolator.js +30 -3
- package/dist/src/workflows/engine/WorkflowExecutionEngine.js +2 -2
- package/dist/src/workflows/engine/WorkflowOutputFormatter.js +27 -4
- package/dist/src/workflows/fallback-strategies.js +2 -2
- package/dist/src/workflows/model-router.js +20 -11
- package/dist/src/workflows/tool-mapper.js +51 -24
- package/docs/API_KEYS.md +52 -18
- package/docs/CONFIGURATION.md +25 -8
- package/docs/TOOLS_REFERENCE.md +12 -48
- package/docs/TOOL_PARAMETERS.md +19 -16
- package/docs/WORKFLOWS.md +7 -7
- package/package.json +1 -1
- package/profiles/balanced.json +1 -2
- package/profiles/code_focus.json +1 -2
- package/profiles/debug_intensive.json +0 -1
- package/profiles/full.json +2 -3
- package/profiles/minimal.json +1 -2
- package/profiles/research_power.json +1 -2
- package/profiles/workflow_builder.json +1 -2
- package/tools.config.json +15 -3
- package/workflows/code-architecture-review.yaml +5 -3
- package/workflows/creative-brainstorm-yaml.yaml +1 -1
- package/workflows/pingpong.yaml +5 -3
- package/workflows/system/README.md +1 -1
- package/workflows/system/verifier.yaml +8 -5
- package/workflows/ultra-creative-brainstorm.yaml +3 -3
package/workflows/pingpong.yaml
CHANGED
|
@@ -121,10 +121,12 @@ steps:
|
|
|
121
121
|
# ═══════════════════════════════════════════════════════════════════════════
|
|
122
122
|
|
|
123
123
|
- name: consensus
|
|
124
|
-
tool:
|
|
124
|
+
tool: openai_brainstorm
|
|
125
125
|
input:
|
|
126
|
-
|
|
127
|
-
|
|
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 (
|
|
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:
|
|
13
|
+
tool: openai_brainstorm
|
|
14
14
|
input:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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:
|
|
11
|
+
smartRouting: false # Disabled - was selecting invalid gpt-5-nano model
|
|
12
12
|
compressPrompts: false
|
|
13
13
|
autoSynthesis:
|
|
14
|
-
enabled:
|
|
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
|