Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is a collection of **Warden Community Agents and Tools** built with TypeScript or Python.

💫 The [Agent Builder Incentive Programme](https://wardenprotocol.org/blog/agent-builder-incentive-programme) is live!
💫 The [Agent Builder Incentive Programme](https://wardenprotocol.org/blog/agent-builder-incentive-programme) is live!
[Register now](https://docs.google.com/forms/d/e/1FAIpQLSdwTR0BL8-T3LLbJt6aIyjuEYjMAmJPMdwffwHcyW6gskDQsg/viewform) and get paid for building agents! Up to $10,000 in incentives for each agent in the Top 10 in the first month.

## 📚 Documentation
Expand All @@ -14,10 +14,11 @@ If you get stuck or you need to get in touch, join the [`#developers`](https://d
## 🤖 Example Agents

Each agent in the [`agents/`](agents) directory is completely self-sufficient and comes with its own:

- Dependencies and devDependencies
- Configuration files
- Build scripts
- Tests (excluding starter templates)
- Tests (excluding starter templates)

## Available Agents

Expand All @@ -26,6 +27,7 @@ Each agent in the [`agents/`](agents) directory is completely self-sufficient an
- **[weather-agent](agents/weather-agent)**: Beginner-friendly weather agent (less complex) **<- recommended for new agent developers**
- **[coingecko-agent](agents/coingecko-agent)**: CoinGecko agent for cryptocurrency data analysis (more complex)
- **[portfolio-agent](agents/portfolio-agent)**: Portfolio agent for cryptocurrency wallet performance analysis (more complex)
- **[Yield-Optimization-Agent](agents/Yield-Optimization-Agent)**: AI-powered agent for finding the best and safest staking opportunities across multiple DeFi protocols and chains (more complex)

## Requirements

Expand Down Expand Up @@ -53,7 +55,6 @@ Awesome agents and tools built by the community! Add yours by submitting a PR to

**Format:** `[Project Name](link): Short agent description`


### Agents

- [Travel DeFi Agent](https://github.com/Joshua15310/travel-defi-agent): LangGraph agent for travel planning and expense optimization using Gemini AI and DeFi strategies.
Expand Down
42 changes: 42 additions & 0 deletions agents/Yield-Optimization-Agent/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Dependencies
node_modules/
.pnp
.pnp.js

# Build outputs
build/
dist/
*.tsbuildinfo

# Environment variables
.env
.env.local
.env.*.local

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Testing
coverage/
.nyc_output/

# Temporary files
tmp/
temp/
*.tmp

Loading