44eceee1adf5e281828aedfb4e6f00daa58c2dbesource_git · dnnyngyen/gemini-cli-orchestrator · current release
Observed 2026-08-25T08:50:16.724Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
gemini_craft_promptHelps you write better prompts for Gemini by suggesting effective commands and context.
This tool guides you on crafting effective bash commands for gemini collaboration:
- How to write focused, specific prompts that get better results
- How to select the right files for each analysis step
- How to structure your bash commands for optimal collaboration
- How to interpret and build on gemini's responses
You execute the suggested commands yourself using your bash tools.Input schema{
"type": "object",
"properties": {
"step_description": {
"type": "string",
"description": "What you want to analyze in this step. Be specific about your focus and intent."
},
"context": {
"type": "string",
"description": "Context from previous steps or additional context about your codebase that should inform this step."
}
},
"required": [
"step_description"
]
} | — | — · — | — |
gemini_iterate_analysisGuide iterative analysis using observe-think-act cycles for dynamic problem-solving.
This tool helps you implement iterative analysis patterns that adapt based on findings:
- How to structure reasoning before taking action
- How to observe and interpret results effectively
- How to reflect on findings and adjust strategy dynamically
- How to decide when to continue iterating vs. when to conclude
- How to handle unexpected results and pivot approaches
Based on ReAct patterns used by Gemini CLI itself for complex problem-solving workflows.Input schema{
"type": "object",
"properties": {
"current_understanding": {
"type": "string",
"description": "What you currently understand about the problem/codebase from previous analysis steps."
},
"iteration_goal": {
"type": "string",
"description": "What specific aspect you want to investigate in this ReAct iteration."
},
"unexpected_findings": {
"type": "string",
"description": "Optional: Any unexpected results from previous iterations that require strategy adjustment."
}
},
"required": [
"current_understanding",
"iteration_goal"
]
} | — | — · — | — |
gemini_plan_analysisBreaks down complex analysis goals into a step-by-step plan. Gives you the roadmap, you execute the steps.
This tool helps you plan multi-step analysis by guiding your thinking about:
- How to decompose complex goals into manageable steps
- What order to approach different aspects of your analysis
- How to build understanding incrementally
- How to use each step to inform the next
You execute the suggested gemini commands yourself using your bash tools.Input schema{
"type": "object",
"properties": {
"goal": {
"type": "string",
"description": "Your overall analysis objective. Be specific about what you want to understand and why."
}
},
"required": [
"goal"
]
} | — | — · — | — |
gemini_synthesize_findingsCombine insights from multiple analysis steps into comprehensive understanding.
This tool helps you synthesize results from multiple gemini interactions:
- How to identify patterns and themes across different analyses
- How to structure synthesis prompts that connect insights
- How to build comprehensive understanding from incremental steps
- How to formulate actionable conclusions
You execute the synthesis commands yourself using your bash tools.Input schema{
"type": "object",
"properties": {
"steps_summary": {
"type": "string",
"description": "A brief summary of the analysis steps you have taken so far and what you learned."
},
"synthesis_goal": {
"type": "string",
"description": "What you want to achieve with the synthesis - what kind of comprehensive understanding or conclusions you are seeking."
}
},
"required": [
"steps_summary",
"synthesis_goal"
]
} | — | — · — | — |