xspoonai/spoon-awesome-skill4 installs
spoon-agent-development
Build AI agents with SpoonReactMCP. Use when creating custom agents, configuring tool chains, designing system prompts, or implementing concurrent agent patterns.
How do I install this agent skill?
npx skills add https://github.com/xspoonai/spoon-awesome-skill --skill spoon-agent-developmentIs this agent skill safe to install?
- Gen Agent Trust Hubpass
This skill provides a framework for building AI agents using the Spoon AI ReAct framework and Model Context Protocol (MCP). It enables tool integration through subprocess execution and remote service connections, which are standard practices for this type of development environment.
- Socketfail
3 alerts: gptAnomaly, obfuscatedFile
- Snykwarn
Risk: MEDIUM · 2 issues
What does this agent skill do?
Agent Development
Build AI agents using the Spoon AI ReAct framework.
Agent Hierarchy
SpoonReactSkill → Skills + x402 Payments
↓
SpoonReactMCP → MCP Tool Integration
↓
SpoonReactAI → Base ReAct + Tool Calling
↓
ToolCallAgent → Tool Execution
↓
BaseAgent → Pydantic Foundation
Quick Start
from spoon_ai.agents import SpoonReactMCP
from spoon_ai.chat import ChatBot
from spoon_ai.tools import ToolManager
from spoon_ai.tools.mcp_tool import MCPTool
# Create agent with MCP tool
agent = SpoonReactMCP(
name="my_agent",
llm=ChatBot(model_name="gpt-4o"),
tools=ToolManager([MCPTool(...)]),
max_steps=15
)
await agent.initialize()
result = await agent.run("Your query here")
Scripts
| Script | Purpose |
|---|---|
| basic_agent.py | Simple SpoonReactAI agent |
| mcp_agent.py | MCP-enabled agent |
| custom_tool.py | Custom BaseTool implementation |
| concurrent_agents.py | Multi-agent parallel execution |
References
| Reference | Content |
|---|---|
| prompts.md | System prompt templates |
| mcp_config.md | MCP configuration options |
Configuration
| Parameter | Type | Default | Description |
|---|---|---|---|
name | str | "spoon_react" | Agent identifier |
max_steps | int | 10 | Max ReAct iterations |
tool_choice | str | "required" | "auto", "required", "none" |
system_prompt | str | None | Custom system prompt |
Best Practices
- Pre-load MCP tool parameters before use
- Use concurrent execution for independent tools
- Implement retry with exponential backoff
- Keep system prompts focused and specific
- Never hardcode API keys
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/xspoonai/spoon-awesome-skill/spoon-agent-development">View spoon-agent-development on skillZs</a>