← Back to list

gemini-agentic-react
by abhishekmmgn
agent skills
⭐ 0🍴 0📅 Jan 20, 2026
SKILL.md
name: gemini-agentic-react description: strategies for implementing the ReAct (Reason and Act) paradigm. Use this to enable Gemini to use external tools, APIs, and perform multi-step research.
Gemini Agentic ReAct Strategies
Goal
Enable Gemini to solve complex tasks by combining natural language reasoning with external actions (tools), mimicking how humans operate in the real world.
The ReAct Paradigm (Reason & Act)
1. The Thought-Action Loop
- Concept: Instead of answering immediately, the model enters a loop of reasoning and acting until the answer is found.
- Workflow:
- Reason (Thought): The model analyzes the request and generates a plan of action.
- Act (Action): The model performs a specific action (e.g.,
Search,CodeInterpreter). - Observe (Observation): The model waits for the result of that action from the external tool.
- Update: The model uses the new information to update its reasoning and determine the next step.
2. Example Structure
To implement ReAct, the prompt must enforce a strict format so the system knows when to stop generating and execute code.
Standard ReAct Format:
Question: [Input]
Thought: [Reasoning about what to do next]
Action: [Tool Name]
Action Input: [Arguments for the tool]
Observation: [Result from the tool - User/System provides this]
... (Repeat until solution is found)
Final Answer: [The conclusion]
Score
Total Score
40/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon