← ClaudeAtlas

spoonos-application-templateslisted

Ready-to-use agent application templates for common Web3 use cases. Use when building trading bots, NFT minters, DAO assistants, portfolio managers, or research agents with SpoonOS framework.
Gabssama12/spoon-awesome-skill · ★ 1 · AI & Automation · score 64
Install: claude install-skill Gabssama12/spoon-awesome-skill
# Application Templates Production-ready templates for building SpoonOS agents. ## Quick Start ```bash # Copy template cp -r templates/trading-bot my-trading-bot cd my-trading-bot # Install dependencies pip install -r requirements.txt # Configure cp .env.example .env # Edit .env with your API keys # Run python main.py ``` ## Available Templates | Template | Use Case | Key Features | |----------|----------|--------------| | `trading-bot` | DeFi trading automation | Price monitoring, swap execution, PnL tracking | | `nft-minter` | NFT creation & deployment | Metadata generation, IPFS upload, contract deployment | | `dao-assistant` | Governance participation | Proposal monitoring, voting automation, delegation | | `portfolio-manager` | Multi-chain asset tracking | Balance aggregation, performance analytics | | `research-agent` | Market analysis | News aggregation, sentiment analysis, report generation | ## Template Structure ``` template-name/ ├── main.py # Entry point ├── agent.py # Agent configuration ├── tools/ # Custom tools │ └── __init__.py ├── config/ │ └── settings.py # Configuration ├── requirements.txt ├── .env.example └── README.md ``` ## Trading Bot Template ### Configuration ```python # agent.py from spoon_ai.agents import SpoonReactMCP from spoon_ai.chat import ChatBot from spoon_ai.tools import ToolManager from tools import PriceMonitorTool, SwapExecutorTool, PositionTrackerTool class TradingAgent(Spoon