skillZs
LIVE SKILL TAGS
>>> LIVE SKILLS INDEX <<<
* OPEN SOURCE *
NO LOGIN, NO TRACKING
REAL INSTALL DATA
← back to all skills
gabssama12/spoon-awesome-skill1 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/gabssama12/spoon-awesome-skill --skill spoon-agent-development
view source ↗

Is this agent skill safe to install?

  • Gen Agent Trust Hubpass

    This skill facilitates the development of AI agents using the Spoon AI ReAct framework and Model Context Protocol (MCP). It allows agents to perform tasks by executing system commands and downloading external tools from package registries. While it implements security best practices like environment variable usage for secrets, it presents a surface for indirect prompt injection when agents process external data.

  • Socketwarn

    2 alerts: gptAnomaly

  • 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

ScriptPurpose
basic_agent.pySimple SpoonReactAI agent
mcp_agent.pyMCP-enabled agent
custom_tool.pyCustom BaseTool implementation
concurrent_agents.pyMulti-agent parallel execution

References

ReferenceContent
prompts.mdSystem prompt templates
mcp_config.mdMCP configuration options

Configuration

ParameterTypeDefaultDescription
namestr"spoon_react"Agent identifier
max_stepsint10Max ReAct iterations
tool_choicestr"required""auto", "required", "none"
system_promptstrNoneCustom system prompt

Best Practices

  1. Pre-load MCP tool parameters before use
  2. Use concurrent execution for independent tools
  3. Implement retry with exponential backoff
  4. Keep system prompts focused and specific
  5. Never hardcode API keys

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/gabssama12/spoon-awesome-skill/spoon-agent-development">View spoon-agent-development on skillZs</a>