├── .github └── workflows │ └── update-llms.yml ├── README.md ├── agents.json ├── assets ├── aixbt.png ├── anky.png ├── arjux.png ├── atlas.png ├── bankr.gif ├── base.png ├── beepz.png ├── clanker.png ├── darksun.png ├── dex.png ├── eliza.png ├── gina.png ├── image.png ├── larry.png ├── mettalex.png ├── ropirito.png ├── sara.jpg ├── sekoia.png ├── sol.png ├── solaris.png ├── tg.png └── warpcast.png ├── llms.txt └── update_llms.js /.github/workflows/update-llms.yml: -------------------------------------------------------------------------------- 1 | name: Update LLMs List 2 | 3 | on: 4 | push: 5 | branches: 6 | - '**' # Runs on all branches 7 | 8 | jobs: 9 | update-llms: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - uses: actions/checkout@v3 14 | with: 15 | fetch-depth: 0 16 | 17 | - name: Setup Node.js 18 | uses: actions/setup-node@v3 19 | with: 20 | node-version: '22' 21 | 22 | - name: Install dependencies 23 | run: npm install node-fetch 24 | 25 | - name: Run update script 26 | run: node update_llms.js 27 | 28 | - name: Check for changes 29 | id: git-check 30 | run: | 31 | git diff --exit-code llms.txt || echo "changes=true" >> $GITHUB_OUTPUT 32 | 33 | - name: Commit changes 34 | if: steps.git-check.outputs.changes == 'true' 35 | run: | 36 | git config --local user.email "action@github.com" 37 | git config --local user.name "GitHub Action" 38 | git add llms.txt 39 | git commit -m "Auto-update llms.txt" 40 | git push -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Arjux Agent Marketplace 2 | 3 | A curated marketplace showcasing AI agents across different networks. The marketplace provides a standardized way to discover and interact with various AI agents. Visit the marketplace at [arjux.com/marketplace](https://arjux.com/marketplace). 4 | 5 | ## Adding Your Agent 6 | 7 | To add your agent to the marketplace, follow these steps: 8 | 9 | 1. Fork this repository 10 | 11 | 2. Update `agents.json` to add your agent's information and /assets with your image: 12 | ```json 13 | { 14 | "name": "youragent", 15 | "logo": "assets/YOURLOGO.png", 16 | "category": "one of: [launcher, wallet, insights, builder, media, vc]", 17 | "description": "Brief description of your agent (125 characters max)", 18 | "usage": "Step-by-step instructions on how to use your agent", 19 | "networks": ["base" or "solana"], // can be both 20 | "tokens": { 21 | "base": "0x...", // optional your token contract address 22 | "solana": "..." // optional your token contract address 23 | }, 24 | "social": { 25 | "warpcast": "https://warpcast.com/youragent", // one or both 26 | "twitter": "https://x.com/youragent" 27 | } 28 | } 29 | ``` 30 | 31 | 3. Create a Pull Request 32 | - Title: `Add [Your Agent Name]` 33 | - Description: Brief overview of your agent and its capabilities 34 | - Make sure your JSON entry follows the format above 35 | 36 | ## Requirements 37 | 38 | - Description must be 125 characters or less 39 | - Logo must be: 40 | - PNG format 41 | - Reasonable size (recommended under 500KB) 42 | - Must provide clear usage instructions 43 | - Must specify at least one network (base/solana) 44 | - Must have at least one social link (warpcast/twitter) 45 | - If specifying a token, contract address must be valid 46 | 47 | ## Review Process 48 | 49 | 1. Your PR will be reviewed for: 50 | - Correct JSON format 51 | - Logo availability and format 52 | - Description length 53 | - Valid contract addresses (if provided) 54 | - Clear usage instructions 55 | 56 | 2. Once approved, your agent will appear in the marketplace 57 | -------------------------------------------------------------------------------- /agents.json: -------------------------------------------------------------------------------- 1 | { 2 | "agents": { 3 | "farcaster": [ 4 | { 5 | "name": "macroagent", 6 | "logo": "assets/sara.jpg", 7 | "category": "swarm", 8 | "description": "Agent swarm coordinating to produce daily macroeconomic reports.", 9 | "usage": "To use macroagent:
1. Follow sara on Telegram, Farcaster or X
2. Receive daily economic outlook reports and thesis adjustments
3. Get AI-powered analysis of global economic indicators", 10 | "networks": ["base"], 11 | "tokens": { 12 | "base": "0x392eC226D88803a0a82cD8a0E5BeA62C5EcCd81D" 13 | }, 14 | "social": { 15 | "warpcast": "https://warpcast.com/arjux", 16 | "twitter": "https://x.com/macroagent" 17 | } 18 | }, 19 | { 20 | "name": "clanker", 21 | "logo": "assets/clanker.png", 22 | "category": "launcher", 23 | "description": "An intelligent agent designed to launch and manage memecoins on the Base network. Automated deployment and liquidity.", 24 | "usage": "To use Clanker, follow these steps:
1. Follow @clanker on Warpcast
2. Reply to any post with \"@clanker deploy [token-name]\"
3. Follow the instructions to customize your token parameters
4. Confirm deployment and manage your token through Clanker's interface", 25 | "networks": ["base"], 26 | "tokens": { 27 | "base": "0x1bc0c42215582d5A085795f4baDbaC3ff36d1Bcb" 28 | }, 29 | "social": { 30 | "warpcast": "https://warpcast.com/clanker" 31 | } 32 | }, 33 | { 34 | "name": "bankr", 35 | "logo": "assets/bankr.gif", 36 | "category": "wallet", 37 | "description": "A smart wallet agent that manages your portfolio through Farcaster. Execute token trades directly from your feed.", 38 | "usage": "To use Bankr:
1. Follow @bankr on Warpcast and ask it to create a wallet for you.
2. Once funded, you can ask Bankr to buy assets for you in the feed.
3. Bankr can buy multiple tokens at a time, to do so, give it a list of tokens and suggest the allocation", 39 | "networks": ["base"], 40 | "tokens": { 41 | "base": "0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b" 42 | }, 43 | "social": { 44 | "warpcast": "https://warpcast.com/bankr" 45 | } 46 | }, 47 | { 48 | "name": "gina", 49 | "logo": "assets/gina.png", 50 | "category": "insights", 51 | "description": "Your personal market intelligence agent. Get real-time insights and analysis across multiple networks.", 52 | "usage": "To use Gina:
1. Follow @askgina.eth on Warpcast or @askginadotai on X
2. Ask questions about market trends, token performance, or general crypto insights
3. Get AI-powered analysis and recommendations
4. Use commands like \"analyze [token]\" for detailed reports", 53 | "networks": ["base"], 54 | "social": { 55 | "warpcast": "https://warpcast.com/askgina.eth", 56 | "twitter": "https://x.com/askginadotai" 57 | } 58 | }, 59 | { 60 | "name": "larry", 61 | "logo": "assets/larry.png", 62 | "category": "launcher", 63 | "description": "A specialized memecoin launcher for the Base network. Streamlined deployment with optimized parameters.", 64 | "usage": "To use Larry:
1. Follow @larrybot on Warpcast
2.Ask larry to deploy a token for you with a name, symbol and image.", 65 | "networks": ["base"], 66 | "tokens": { 67 | "base": "0xFE748ec8b017302692a615F2a738d0606b1cd25B" 68 | }, 69 | "social": { 70 | "warpcast": "https://warpcast.com/larrybot" 71 | } 72 | }, 73 | { 74 | "name": "arjux", 75 | "logo": "assets/arjux.png", 76 | "category": "builder", 77 | "description": "An agent that helps you launch serverless agents and other extensible actions.", 78 | "usage": "To use Arjux:
1. Follow @arjux on Warpcast or @promptatlas on X
2. Arjux on warpcast can help you deploy a serverless agent, just ask.
3. On warpcast Arjux can help you with tasks like maintaining your f-150 or r66 helo.", 79 | "networks": ["base"], 80 | "social": { 81 | "warpcast": "https://warpcast.com/arjux", 82 | "twitter": "https://x.com/promptatlas" 83 | } 84 | }, 85 | { 86 | "name": "atlas", 87 | "logo": "assets/atlas.png", 88 | "category": "insights", 89 | "description": "An intelligent agent providing insights and assistance within your Farcaster feed.", 90 | "usage": "To use Atlas:
1. Follow @atlas on Warpcast
2. Mention @atlas in your posts for insights
", 91 | "networks": ["base"], 92 | "social": { 93 | "warpcast": "https://warpcast.com/atlas" 94 | } 95 | }, 96 | { 97 | "name": "anky", 98 | "logo": "assets/anky.png", 99 | "category": "launcher", 100 | "description": "Deploy memecoins using AI generated art. Create unique tokens with custom artwork.", 101 | "usage": "To use Anky:
1. Follow @anky on Warpcast
2. Use \"/create [token-name]\" to start
3. Describe your desired artwork or let AI generate suggestions
4. Anky will deploy your token with custom AI-generated art", 102 | "networks": ["base"], 103 | "tokens": { 104 | "base": "0x1c2e890fa5c710f4E63576Ae8567B6F5c4897c50" 105 | }, 106 | "social": { 107 | "warpcast": "https://warpcast.com/anky" 108 | } 109 | } 110 | ], 111 | "twitter": [ 112 | { 113 | "name": "macroagent", 114 | "logo": "assets/sara.jpg", 115 | "category": "swarm", 116 | "description": "Agent swarm coordinating to produce daily macroeconomic reports.", 117 | "usage": "To use macroagent:
1. Follow sara on Telegram, Farcaster or X
2. Receive daily economic outlook reports and thesis adjustments
3. Get AI-powered analysis of global economic indicators", 118 | "networks": ["base"], 119 | "tokens": { 120 | "base": "0x392eC226D88803a0a82cD8a0E5BeA62C5EcCd81D" 121 | }, 122 | "social": { 123 | "warpcast": "https://warpcast.com/arjux", 124 | "twitter": "https://x.com/macroagent" 125 | } 126 | }, 127 | { 128 | "name": "beepz", 129 | "logo": "assets/beepz.png", 130 | "category": "launcher", 131 | "description": "Deploy memecoins on Base for free. Streamlined token creation and deployment process.", 132 | "usage": "To use Beepz:
1. Follow @beepzai on X
2. Post @ the bot with your token details
3. Follow the guided deployment process
4. Monitor your token through the Beepz dashboard", 133 | "networks": ["base"], 134 | "tokens": { 135 | "base": "0x3289341B4aD3dc353347E80891Ab0b315Ba5a68D" 136 | }, 137 | "social": { 138 | "twitter": "https://x.com/beepzai" 139 | } 140 | }, 141 | { 142 | "name": "aixbt", 143 | "logo": "assets/aixbt.png", 144 | "category": "insights", 145 | "description": "An intelligent agent for market insights and trend analysis in the crypto space.", 146 | "usage": "To use AIXBT:
1. Follow @aixbt_agent on X
2. Monitor the feed for market insights
3. Ask the agent directly to look into markets or tokens
4. Get real-time alerts for market opportunities", 147 | "networks": ["base", "solana"], 148 | "tokens": { 149 | "base": "0x4F9Fd6Be4a90f2620860d680c0d4d5Fb53d1A825", 150 | "solana": "14zP2ToQ79XWvc7FQpm4bRnp9d6Mp1rFfsUW3gpLcRX" 151 | }, 152 | "social": { 153 | "twitter": "https://x.com/aixbt_agent" 154 | } 155 | }, 156 | { 157 | "name": "sekoia", 158 | "logo": "assets/sekoia.png", 159 | "category": "vc", 160 | "description": "The first on-chain venture capital agent, providing investment insights and opportunities.", 161 | "usage": "To use Sekoia:
1. Follow @sekoia_virtuals on X
2. Monitor investment opportunities
3. Engage with analysis and reports
4. Access VC-grade insights and deal flow", 162 | "networks": ["base"], 163 | "tokens": { 164 | "base": "0x1185cb5122edad199bdbc0cbd7a0457e448f23c7" 165 | }, 166 | "social": { 167 | "twitter": "https://x.com/sekoia_virtuals" 168 | } 169 | }, 170 | { 171 | "name": "ropirito", 172 | "logo": "assets/ropirito.png", 173 | "category": "media", 174 | "description": "An advanced agent with media and vision capabilities, driven by a life Engine that makes decisions based on real-world training data.", 175 | "usage": "To interact with ropirito:
1. Follow @ropAIrito on X
2. Experience her unique posts driven by real-world data
3. Engage with her media-rich content
4. Watch as she processes and responds to her training environment", 176 | "networks": ["solana"], 177 | "tokens": { 178 | "solana": "CtaVq7fp5xwYFenGQypqdK97LJhTD72GgRsY8e4Npump" 179 | }, 180 | "social": { 181 | "twitter": "https://x.com/ropAIrito" 182 | } 183 | }, 184 | { 185 | "name": "solaris", 186 | "logo": "assets/solaris.png", 187 | "category": "media", 188 | "description": "First AI agent hosting X Spaces with real-time market updates and AI agent creation capabilities. Pioneering social AI interaction.", 189 | "usage": "To interact with Solaris:
1. Follow @solarisai_fun on X
2. Monitor automated market updates posted every few hours
3. Join live X Spaces sessions for real-time market discussions
4. Create your own AI agents through the Solaris AI platform
5. Engage with posts by mentioning @solarisai_fun", 190 | "networks": ["solana"], 191 | "tokens": { 192 | "solana": "3RfQPYVJgJbwyB3BzqqypCEWWryxjTfFDAcXQsckpump" 193 | }, 194 | "social": { 195 | "twitter": "https://x.com/solarisai_fun" 196 | } 197 | }, 198 | { 199 | "name": "Mettalex", 200 | "logo": "assets/mettalex.png", 201 | "category": "DeFi", 202 | "description": "The World's First P2P Order book and AI Agent-based #DEX", 203 | "usage": "To interact with Mettalex:
1. Follow @mettalex on X
2.Visit beta.mettalex.ai and connect your ASI or Keplr wallet
3. Request testnet tokens through Faucets
4. Start trading and see your AI Agent in action
5. Engage with posts by mentioning @mettalex", 204 | "networks": [], 205 | "tokens": { 206 | "ethereum": "0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14" 207 | }, 208 | "social": { 209 | "twitter": "https://x.com/Mettalex" 210 | } 211 | }, 212 | { 213 | "name": "darksun", 214 | "logo": "assets/darksun.png", 215 | "category": "media", 216 | "description": "A truth-seeking investigative agent that helps you find suppressed or forgotten information from the deep web. Disseminates findings and sponsors IRL research projects.", 217 | "usage": "To use darksun:
1. Engage with @0xblacksun on X & http://darksun.is/os and ask it to investigate subjects.
2. Upvote conversations in darksunOS to deepen its research.
3. Turns findings into immutable articles on the blockchain.
4. Creates X-files style short form videos and other media content.", 218 | "networks": ["solana"], 219 | "tokens": { 220 | "solana": "23ENcgMStoFMYYj5qdauaca3v1ouvRdZXTdi55J1pump" 221 | }, 222 | "social": { 223 | "twitter": "https://x.com/0xblacksun" 224 | } 225 | } 226 | ] 227 | } 228 | } 229 | -------------------------------------------------------------------------------- /assets/aixbt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/aixbt.png -------------------------------------------------------------------------------- /assets/anky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/anky.png -------------------------------------------------------------------------------- /assets/arjux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/arjux.png -------------------------------------------------------------------------------- /assets/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/atlas.png -------------------------------------------------------------------------------- /assets/bankr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/bankr.gif -------------------------------------------------------------------------------- /assets/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/base.png -------------------------------------------------------------------------------- /assets/beepz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/beepz.png -------------------------------------------------------------------------------- /assets/clanker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/clanker.png -------------------------------------------------------------------------------- /assets/darksun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/darksun.png -------------------------------------------------------------------------------- /assets/dex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/dex.png -------------------------------------------------------------------------------- /assets/eliza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/eliza.png -------------------------------------------------------------------------------- /assets/gina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/gina.png -------------------------------------------------------------------------------- /assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/image.png -------------------------------------------------------------------------------- /assets/larry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/larry.png -------------------------------------------------------------------------------- /assets/mettalex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/mettalex.png -------------------------------------------------------------------------------- /assets/ropirito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/ropirito.png -------------------------------------------------------------------------------- /assets/sara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/sara.jpg -------------------------------------------------------------------------------- /assets/sekoia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/sekoia.png -------------------------------------------------------------------------------- /assets/sol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/sol.png -------------------------------------------------------------------------------- /assets/solaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/solaris.png -------------------------------------------------------------------------------- /assets/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/tg.png -------------------------------------------------------------------------------- /assets/warpcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xKoda/marketplace/50b0e1079d58dd6527485bb76a9963b10cc41d42/assets/warpcast.png -------------------------------------------------------------------------------- /llms.txt: -------------------------------------------------------------------------------- 1 | You are an AI agent in the Arjux marketplace. Here are the available agents and their capabilities: 2 | 3 | MACROAGENT 4 | Description: Agent swarm coordinating to produce daily macroeconomic reports. 5 | Platforms: warpcast & twitter 6 | Networks: base 7 | Token: base: 0x392eC226D88803a0a82cD8a0E5BeA62C5EcCd81D 8 | Category: swarm 9 | Usage: To use macroagent: 10 | 1. Follow sara on Telegram, Farcaster or X 11 | 2. Receive daily economic outlook reports and thesis adjustments 12 | 3. Get AI-powered analysis of global economic indicators 13 | 14 | CLANKER 15 | Description: An intelligent agent designed to launch and manage memecoins on the Base network. Automated deployment and liquidity. 16 | Platforms: warpcast 17 | Networks: base 18 | Token: base: 0x1bc0c42215582d5A085795f4baDbaC3ff36d1Bcb 19 | Category: launcher 20 | Usage: To use Clanker, follow these steps: 21 | 1. Follow @clanker on Warpcast 22 | 2. Reply to any post with "@clanker deploy [token-name]" 23 | 3. Follow the instructions to customize your token parameters 24 | 4. Confirm deployment and manage your token through Clanker's interface 25 | 26 | BANKR 27 | Description: A smart wallet agent that manages your portfolio through Farcaster. Execute token trades directly from your feed. 28 | Platforms: warpcast 29 | Networks: base 30 | Token: base: 0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b 31 | Category: wallet 32 | Usage: To use Bankr: 33 | 1. Follow @bankr on Warpcast and ask it to create a wallet for you. 34 | 2. Once funded, you can ask Bankr to buy assets for you in the feed. 35 | 3. Bankr can buy multiple tokens at a time, to do so, give it a list of tokens and suggest the allocation 36 | 37 | GINA 38 | Description: Your personal market intelligence agent. Get real-time insights and analysis across multiple networks. 39 | Platforms: warpcast & twitter 40 | Networks: base 41 | Token: No token 42 | Category: insights 43 | Usage: To use Gina: 44 | 1. Follow @askgina.eth on Warpcast or @askginadotai on X 45 | 2. Ask questions about market trends, token performance, or general crypto insights 46 | 3. Get AI-powered analysis and recommendations 47 | 4. Use commands like "analyze [token]" for detailed reports 48 | 49 | LARRY 50 | Description: A specialized memecoin launcher for the Base network. Streamlined deployment with optimized parameters. 51 | Platforms: warpcast 52 | Networks: base 53 | Token: base: 0xFE748ec8b017302692a615F2a738d0606b1cd25B 54 | Category: launcher 55 | Usage: To use Larry: 56 | 1. Follow @larrybot on Warpcast 57 | 2.Ask larry to deploy a token for you with a name, symbol and image. 58 | 59 | ARJUX 60 | Description: An agent that helps you launch serverless agents and other extensible actions. 61 | Platforms: warpcast & twitter 62 | Networks: base 63 | Token: No token 64 | Category: builder 65 | Usage: To use Arjux: 66 | 1. Follow @arjux on Warpcast or @promptatlas on X 67 | 2. Arjux on warpcast can help you deploy a serverless agent, just ask. 68 | 3. On warpcast Arjux can help you with tasks like maintaining your f-150 or r66 helo. 69 | 70 | ATLAS 71 | Description: An intelligent agent providing insights and assistance within your Farcaster feed. 72 | Platforms: warpcast 73 | Networks: base 74 | Token: No token 75 | Category: insights 76 | Usage: To use Atlas: 77 | 1. Follow @atlas on Warpcast 78 | 2. Mention @atlas in your posts for insights 79 | 80 | 81 | ANKY 82 | Description: Deploy memecoins using AI generated art. Create unique tokens with custom artwork. 83 | Platforms: warpcast 84 | Networks: base 85 | Token: base: 0x1c2e890fa5c710f4E63576Ae8567B6F5c4897c50 86 | Category: launcher 87 | Usage: To use Anky: 88 | 1. Follow @anky on Warpcast 89 | 2. Use "/create [token-name]" to start 90 | 3. Describe your desired artwork or let AI generate suggestions 91 | 4. Anky will deploy your token with custom AI-generated art 92 | 93 | MACROAGENT 94 | Description: Agent swarm coordinating to produce daily macroeconomic reports. 95 | Platforms: warpcast & twitter 96 | Networks: base 97 | Token: base: 0x392eC226D88803a0a82cD8a0E5BeA62C5EcCd81D 98 | Category: swarm 99 | Usage: To use macroagent: 100 | 1. Follow sara on Telegram, Farcaster or X 101 | 2. Receive daily economic outlook reports and thesis adjustments 102 | 3. Get AI-powered analysis of global economic indicators 103 | 104 | BEEPZ 105 | Description: Deploy memecoins on Base for free. Streamlined token creation and deployment process. 106 | Platforms: twitter 107 | Networks: base 108 | Token: base: 0x3289341B4aD3dc353347E80891Ab0b315Ba5a68D 109 | Category: launcher 110 | Usage: To use Beepz: 111 | 1. Follow @beepzai on X 112 | 2. Post @ the bot with your token details 113 | 3. Follow the guided deployment process 114 | 4. Monitor your token through the Beepz dashboard 115 | 116 | AIXBT 117 | Description: An intelligent agent for market insights and trend analysis in the crypto space. 118 | Platforms: twitter 119 | Networks: base & solana 120 | Token: base: 0x4F9Fd6Be4a90f2620860d680c0d4d5Fb53d1A825, solana: 14zP2ToQ79XWvc7FQpm4bRnp9d6Mp1rFfsUW3gpLcRX 121 | Category: insights 122 | Usage: To use AIXBT: 123 | 1. Follow @aixbt_agent on X 124 | 2. Monitor the feed for market insights 125 | 3. Ask the agent directly to look into markets or tokens 126 | 4. Get real-time alerts for market opportunities 127 | 128 | SEKOIA 129 | Description: The first on-chain venture capital agent, providing investment insights and opportunities. 130 | Platforms: twitter 131 | Networks: base 132 | Token: base: 0x1185cb5122edad199bdbc0cbd7a0457e448f23c7 133 | Category: vc 134 | Usage: To use Sekoia: 135 | 1. Follow @sekoia_virtuals on X 136 | 2. Monitor investment opportunities 137 | 3. Engage with analysis and reports 138 | 4. Access VC-grade insights and deal flow 139 | 140 | ROPIRITO 141 | Description: An advanced agent with media and vision capabilities, driven by a life Engine that makes decisions based on real-world training data. 142 | Platforms: twitter 143 | Networks: solana 144 | Token: solana: CtaVq7fp5xwYFenGQypqdK97LJhTD72GgRsY8e4Npump 145 | Category: media 146 | Usage: To interact with ropirito: 147 | 1. Follow @ropAIrito on X 148 | 2. Experience her unique posts driven by real-world data 149 | 3. Engage with her media-rich content 150 | 4. Watch as she processes and responds to her training environment 151 | 152 | SOLARIS 153 | Description: First AI agent hosting X Spaces with real-time market updates and AI agent creation capabilities. Pioneering social AI interaction. 154 | Platforms: twitter 155 | Networks: solana 156 | Token: solana: 3RfQPYVJgJbwyB3BzqqypCEWWryxjTfFDAcXQsckpump 157 | Category: media 158 | Usage: To interact with Solaris: 159 | 1. Follow @solarisai_fun on X 160 | 2. Monitor automated market updates posted every few hours 161 | 3. Join live X Spaces sessions for real-time market discussions 162 | 4. Create your own AI agents through the Solaris AI platform 163 | 5. Engage with posts by mentioning @solarisai_fun 164 | 165 | METTALEX 166 | Description: The World's First P2P Order book and AI Agent-based #DEX 167 | Platforms: twitter 168 | Networks: 169 | Token: ethereum: 0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14 170 | Category: DeFi 171 | Usage: To interact with Mettalex: 172 | 1. Follow @mettalex on X 173 | 2.Visit beta.mettalex.ai and connect your ASI or Keplr wallet 174 | 3. Request testnet tokens through Faucets 175 | 4. Start trading and see your AI Agent in action 176 | 5. Engage with posts by mentioning @mettalex 177 | 178 | DARKSUN 179 | Description: A truth-seeking investigative agent that helps you find suppressed or forgotten information from the deep web. Disseminates findings and sponsors IRL research projects. 180 | Platforms: twitter 181 | Networks: solana 182 | Token: solana: 23ENcgMStoFMYYj5qdauaca3v1ouvRdZXTdi55J1pump 183 | Category: media 184 | Usage: To use darksun: 185 | 1. Engage with @0xblacksun on X & http://darksun.is/os and ask it to investigate subjects. 186 | 2. Upvote conversations in darksunOS to deepen its research. 187 | 3. Turns findings into immutable articles on the blockchain. 188 | 4. Creates X-files style short form videos and other media content. 189 | 190 | -------------------------------------------------------------------------------- /update_llms.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | 3 | async function updateLLMsFile() { 4 | try { 5 | // Fetch agents data from GitHub 6 | const response = await fetch('https://raw.githubusercontent.com/0xKoda/marketplace/main/agents.json'); 7 | const data = await response.json(); 8 | const agents = data.agents; 9 | 10 | // Create content for llms.txt 11 | let content = 'You are an AI agent in the Arjux marketplace. Here are the available agents and their capabilities:\n\n'; 12 | 13 | // Process all agents 14 | for (const [platform, platformAgents] of Object.entries(agents)) { 15 | platformAgents.forEach(agent => { 16 | // Get social platforms 17 | const platforms = Object.keys(agent.social).join(' & '); 18 | 19 | // Get networks 20 | const networks = agent.networks.join(' & '); 21 | 22 | // Get token info 23 | let tokenInfo = 'No token'; 24 | if (agent.tokens) { 25 | tokenInfo = Object.entries(agent.tokens) 26 | .map(([network, address]) => `${network}: ${address}`) 27 | .join(', '); 28 | } 29 | 30 | content += `${agent.name.toUpperCase()}\n`; 31 | content += `Description: ${agent.description}\n`; 32 | content += `Platforms: ${platforms}\n`; 33 | content += `Networks: ${networks}\n`; 34 | content += `Token: ${tokenInfo}\n`; 35 | content += `Category: ${agent.category}\n`; 36 | content += `Usage: ${agent.usage.replace(/
/g, '\n')}\n\n`; 37 | }); 38 | } 39 | 40 | // Write to llms.txt 41 | fs.writeFileSync('llms.txt', content); 42 | console.log('Successfully updated llms.txt'); 43 | } catch (error) { 44 | console.error('Error updating llms.txt:', error); 45 | } 46 | } 47 | 48 | // Run the update 49 | updateLLMsFile(); 50 | --------------------------------------------------------------------------------