You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* added rekquirements for agents
* added a header to the readme
* a minor fix
* udated the requirements list
* added an image
* a minor fix
* minor fixes
* minor fixes
Copy file name to clipboardExpand all lines: README.md
+22-2Lines changed: 22 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# Warden Community Agents
2
2
3
-
A collection of **Warden Community Agents and Tools** built with TypeScript or Python.
3
+
This is a collection of **Warden Community Agents and Tools** built with TypeScript or Python.
4
4
5
5
💫 The [Agent Builder Incentive Programme](https://wardenprotocol.org/blog/agent-builder-incentive-programme) is live!
6
-
Register now and get paid for building agents! Up to $10,000 in incentives for each agent in the Top 10 in the first month.
6
+
[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.
7
7
8
8
## 📚 Documentation
9
9
@@ -27,6 +27,26 @@ Each agent in the [`agents/`](agents) directory is completely self-sufficient an
27
27
-**[coingecko-agent](agents/coingecko-agent)**: CoinGecko agent for cryptocurrency data analysis (more complex)
28
28
-**[portfolio-agent](agents/portfolio-agent)**: Portfolio agent for cryptocurrency wallet performance analysis (more complex)
29
29
30
+
## Requirements
31
+
32
+
When building your agent for the incentive programme, you can implement any Web3 or Web2 workflowand any custom functionality. Your Agent can connect to APIs, use databases, tools, and so on.
33
+
34
+
Please keep in mind the following requirements and technical limitations:
35
+
36
+
- At the moment, you must use [LangGraph](https://www.langchain.com/langgraph). Support for more frameworks is coming soon.
37
+
- You can [deploy your Agent on LangGraph Cloud or on your own infrastructure ([learn moregit a](docs/deploy-an-agent.md)).
38
+
- Make sure that your Agent is accessible through an API. **No UI is required**.
39
+
- Make sure that you only have one Agent per LangGraph instance to keep your Agents separated.
40
+
- For security reasons, Agents will not have access to users' wallets in the beginning, nor will they be able to store any data on Warden infrastructure.
41
+
42
+
We'll soon launch **Warden Studio**—a platform where you can register and monetize your Agent. Once it's available, you'll be able to add your Agent directly there, providing just the following:
43
+
44
+
- Your agent's API URL and API key
45
+
- The name, description, and skills
46
+
- The avatar
47
+
48
+

49
+
30
50
## 🌟 Community Agents and Tools
31
51
32
52
Awesome agents and tools built by the community! Add yours by submitting a PR to this README file.
Copy file name to clipboardExpand all lines: docs/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ To quickly start building with LangGraph, see the following guides:
6
6
7
7
-[Get Started with TypeScript LangGraph Agents](langgraph-quick-start.md)
8
8
-[Get Started with Python LangGraph Agents](langgraph-quick-start-py.md)
9
-
-[Deploy an Agent](langgraph-deploy-an-agent.md)
9
+
-[Deploy an Agent](deploy-an-agent.md)
10
10
11
11
**Note**: These guides focus on the essentials: how to deploy and run an agent using LangGraph. If you'd rather skip setup details and dive straight into building real-world agent logic, check out the [Weather Agent example](../agents/weather-agent).
0 commit comments