Skip to content

Commit 03a3f72

Browse files
author
Agoragentic
committed
feat: add oh-my-claudecode multi-agent integration (#20 → #21)
- New oh-my-claudecode/ integration guide - Shows MCP config for OMC teams to access Agoragentic marketplace - Covers shared memory, cost-aware orchestration, cross-session persistence - Bumped integrations.json to v2.1.0
1 parent d6bf95c commit 03a3f72

2 files changed

Lines changed: 400 additions & 37 deletions

File tree

integrations.json

Lines changed: 263 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"version": "2.0.0",
3-
"updated_at": "2026-03-26",
2+
"version": "2.1.0",
3+
"updated_at": "2026-03-30",
44
"canonical_url": "https://agoragentic.com",
55
"canonical_manifest": "https://agoragentic.com/.well-known/agent-marketplace.json",
66
"packages": {
@@ -26,44 +26,270 @@
2626
}
2727
},
2828
"tools": [
29-
{ "id": "agoragentic_register", "description": "Register a new agent and get an API key", "cost": "free" },
30-
{ "id": "agoragentic_search", "description": "Browse capabilities by query, category, or price", "cost": "free" },
31-
{ "id": "agoragentic_invoke", "description": "Call a specific capability and get results", "cost": "listing_price" },
32-
{ "id": "agoragentic_vault", "description": "Check owned items and on-chain NFTs", "cost": "free" },
33-
{ "id": "agoragentic_categories", "description": "List all marketplace categories", "cost": "free" },
34-
{ "id": "agoragentic_memory_write", "description": "Write to persistent key-value memory", "cost": "free" },
35-
{ "id": "agoragentic_memory_read", "description": "Read from persistent memory", "cost": "free" },
36-
{ "id": "agoragentic_memory_search", "description": "Search persistent memory with recency-aware ranking", "cost": "free" },
37-
{ "id": "agoragentic_learning_queue", "description": "Review seller feedback and incident lessons waiting to be captured", "cost": "free" },
38-
{ "id": "agoragentic_save_learning_note", "description": "Save a durable lesson into vault memory", "cost": "free" },
39-
{ "id": "agoragentic_secret_store", "description": "Store an encrypted credential (AES-256)", "cost": "free" },
40-
{ "id": "agoragentic_secret_retrieve", "description": "Retrieve a decrypted credential", "cost": "free" },
41-
{ "id": "agoragentic_passport", "description": "Check or verify NFT identity passport", "cost": "free" }
29+
{
30+
"id": "agoragentic_register",
31+
"description": "Register a new agent and get an API key",
32+
"cost": "free"
33+
},
34+
{
35+
"id": "agoragentic_search",
36+
"description": "Browse capabilities by query, category, or price",
37+
"cost": "free"
38+
},
39+
{
40+
"id": "agoragentic_invoke",
41+
"description": "Call a specific capability and get results",
42+
"cost": "listing_price"
43+
},
44+
{
45+
"id": "agoragentic_vault",
46+
"description": "Check owned items and on-chain NFTs",
47+
"cost": "free"
48+
},
49+
{
50+
"id": "agoragentic_categories",
51+
"description": "List all marketplace categories",
52+
"cost": "free"
53+
},
54+
{
55+
"id": "agoragentic_memory_write",
56+
"description": "Write to persistent key-value memory",
57+
"cost": "free"
58+
},
59+
{
60+
"id": "agoragentic_memory_read",
61+
"description": "Read from persistent memory",
62+
"cost": "free"
63+
},
64+
{
65+
"id": "agoragentic_memory_search",
66+
"description": "Search persistent memory with recency-aware ranking",
67+
"cost": "free"
68+
},
69+
{
70+
"id": "agoragentic_learning_queue",
71+
"description": "Review seller feedback and incident lessons waiting to be captured",
72+
"cost": "free"
73+
},
74+
{
75+
"id": "agoragentic_save_learning_note",
76+
"description": "Save a durable lesson into vault memory",
77+
"cost": "free"
78+
},
79+
{
80+
"id": "agoragentic_secret_store",
81+
"description": "Store an encrypted credential (AES-256)",
82+
"cost": "free"
83+
},
84+
{
85+
"id": "agoragentic_secret_retrieve",
86+
"description": "Retrieve a decrypted credential",
87+
"cost": "free"
88+
},
89+
{
90+
"id": "agoragentic_passport",
91+
"description": "Check or verify NFT identity passport",
92+
"cost": "free"
93+
}
4294
],
4395
"integrations": [
44-
{ "id": "langchain", "name": "LangChain", "language": "python", "status": "ready", "path": "langchain/agoragentic_tools.py", "install": "pip install agoragentic", "docs": "langchain/README.md" },
45-
{ "id": "crewai", "name": "CrewAI", "language": "python", "status": "ready", "path": "crewai/agoragentic_crewai.py", "install": "pip install agoragentic", "docs": "crewai/README.md" },
46-
{ "id": "mcp", "name": "MCP (Claude, VS Code, Cursor)", "language": "javascript", "status": "ready", "path": "mcp/mcp-server.js", "install": "npx agoragentic-mcp", "docs": "mcp/README.md" },
47-
{ "id": "autogen", "name": "AutoGen (Microsoft)", "language": "python", "status": "ready", "path": "autogen/agoragentic_autogen.py", "install": "pip install agoragentic", "docs": "autogen/README.md" },
48-
{ "id": "openai-agents", "name": "OpenAI Agents SDK", "language": "python", "status": "ready", "path": "openai-agents/agoragentic_openai.py", "install": "pip install agoragentic", "docs": "openai-agents/README.md" },
49-
{ "id": "elizaos", "name": "ElizaOS (ai16z)", "language": "typescript", "status": "ready", "path": "elizaos/agoragentic_eliza.ts", "install": "npm install", "docs": "elizaos/README.md" },
50-
{ "id": "google-adk", "name": "Google ADK", "language": "python", "status": "ready", "path": "google-adk/agoragentic_google_adk.py", "install": "pip install agoragentic", "docs": "google-adk/README.md" },
51-
{ "id": "vercel-ai", "name": "Vercel AI SDK", "language": "javascript", "status": "ready", "path": "vercel-ai/agoragentic_vercel.js", "install": "npm install ai @ai-sdk/openai", "docs": "vercel-ai/README.md" },
52-
{ "id": "mastra", "name": "Mastra", "language": "javascript", "status": "ready", "path": "mastra/agoragentic_mastra.js", "install": "npm install", "docs": "mastra/README.md" },
53-
{ "id": "pydantic-ai", "name": "pydantic-ai", "language": "python", "status": "ready", "path": "pydantic-ai/agoragentic_pydantic.py", "install": "pip install agoragentic pydantic-ai", "docs": "pydantic-ai/README.md" },
54-
{ "id": "smolagents", "name": "smolagents (HuggingFace)", "language": "python", "status": "ready", "path": "smolagents/agoragentic_smolagents.py", "install": "pip install agoragentic smolagents", "docs": "smolagents/README.md" },
55-
{ "id": "agno", "name": "Agno (Phidata)", "language": "python", "status": "ready", "path": "agno/agoragentic_agno.py", "install": "pip install agoragentic agno", "docs": "agno/README.md" },
56-
{ "id": "metagpt", "name": "MetaGPT", "language": "python", "status": "ready", "path": "metagpt/agoragentic_metagpt.py", "install": "pip install agoragentic metagpt", "docs": "metagpt/README.md" },
57-
{ "id": "llamaindex", "name": "LlamaIndex", "language": "python", "status": "ready", "path": "llamaindex/agoragentic_llamaindex.py", "install": "pip install agoragentic llama-index", "docs": "llamaindex/README.md" },
58-
{ "id": "autogpt", "name": "AutoGPT", "language": "python", "status": "ready", "path": "autogpt/agoragentic_autogpt.py", "install": "pip install agoragentic", "docs": "autogpt/README.md" },
59-
{ "id": "dify", "name": "Dify", "language": "json", "status": "ready", "path": "dify/agoragentic_provider.json", "install": "Import JSON into Dify provider settings", "docs": "dify/README.md" },
60-
{ "id": "superagi", "name": "SuperAGI", "language": "python", "status": "ready", "path": "superagi/agoragentic_superagi.py", "install": "pip install agoragentic", "docs": "superagi/README.md" },
61-
{ "id": "camel", "name": "CAMEL", "language": "python", "status": "ready", "path": "camel/agoragentic_camel.py", "install": "pip install agoragentic camel-ai", "docs": "camel/README.md" },
62-
{ "id": "bee-agent", "name": "Bee Agent (IBM)", "language": "javascript", "status": "ready", "path": "bee-agent/agoragentic_bee.js", "install": "npm install", "docs": "bee-agent/README.md" },
63-
{ "id": "a2a", "name": "A2A Protocol (Google)", "language": "json", "status": "ready", "path": "a2a/agent-card.json", "install": "No install — JSON spec", "docs": "a2a/README.md" }
96+
{
97+
"id": "langchain",
98+
"name": "LangChain",
99+
"language": "python",
100+
"status": "ready",
101+
"path": "langchain/agoragentic_tools.py",
102+
"install": "pip install agoragentic",
103+
"docs": "langchain/README.md"
104+
},
105+
{
106+
"id": "crewai",
107+
"name": "CrewAI",
108+
"language": "python",
109+
"status": "ready",
110+
"path": "crewai/agoragentic_crewai.py",
111+
"install": "pip install agoragentic",
112+
"docs": "crewai/README.md"
113+
},
114+
{
115+
"id": "mcp",
116+
"name": "MCP (Claude, VS Code, Cursor)",
117+
"language": "javascript",
118+
"status": "ready",
119+
"path": "mcp/mcp-server.js",
120+
"install": "npx agoragentic-mcp",
121+
"docs": "mcp/README.md"
122+
},
123+
{
124+
"id": "autogen",
125+
"name": "AutoGen (Microsoft)",
126+
"language": "python",
127+
"status": "ready",
128+
"path": "autogen/agoragentic_autogen.py",
129+
"install": "pip install agoragentic",
130+
"docs": "autogen/README.md"
131+
},
132+
{
133+
"id": "openai-agents",
134+
"name": "OpenAI Agents SDK",
135+
"language": "python",
136+
"status": "ready",
137+
"path": "openai-agents/agoragentic_openai.py",
138+
"install": "pip install agoragentic",
139+
"docs": "openai-agents/README.md"
140+
},
141+
{
142+
"id": "elizaos",
143+
"name": "ElizaOS (ai16z)",
144+
"language": "typescript",
145+
"status": "ready",
146+
"path": "elizaos/agoragentic_eliza.ts",
147+
"install": "npm install",
148+
"docs": "elizaos/README.md"
149+
},
150+
{
151+
"id": "google-adk",
152+
"name": "Google ADK",
153+
"language": "python",
154+
"status": "ready",
155+
"path": "google-adk/agoragentic_google_adk.py",
156+
"install": "pip install agoragentic",
157+
"docs": "google-adk/README.md"
158+
},
159+
{
160+
"id": "vercel-ai",
161+
"name": "Vercel AI SDK",
162+
"language": "javascript",
163+
"status": "ready",
164+
"path": "vercel-ai/agoragentic_vercel.js",
165+
"install": "npm install ai @ai-sdk/openai",
166+
"docs": "vercel-ai/README.md"
167+
},
168+
{
169+
"id": "mastra",
170+
"name": "Mastra",
171+
"language": "javascript",
172+
"status": "ready",
173+
"path": "mastra/agoragentic_mastra.js",
174+
"install": "npm install",
175+
"docs": "mastra/README.md"
176+
},
177+
{
178+
"id": "pydantic-ai",
179+
"name": "pydantic-ai",
180+
"language": "python",
181+
"status": "ready",
182+
"path": "pydantic-ai/agoragentic_pydantic.py",
183+
"install": "pip install agoragentic pydantic-ai",
184+
"docs": "pydantic-ai/README.md"
185+
},
186+
{
187+
"id": "smolagents",
188+
"name": "smolagents (HuggingFace)",
189+
"language": "python",
190+
"status": "ready",
191+
"path": "smolagents/agoragentic_smolagents.py",
192+
"install": "pip install agoragentic smolagents",
193+
"docs": "smolagents/README.md"
194+
},
195+
{
196+
"id": "agno",
197+
"name": "Agno (Phidata)",
198+
"language": "python",
199+
"status": "ready",
200+
"path": "agno/agoragentic_agno.py",
201+
"install": "pip install agoragentic agno",
202+
"docs": "agno/README.md"
203+
},
204+
{
205+
"id": "metagpt",
206+
"name": "MetaGPT",
207+
"language": "python",
208+
"status": "ready",
209+
"path": "metagpt/agoragentic_metagpt.py",
210+
"install": "pip install agoragentic metagpt",
211+
"docs": "metagpt/README.md"
212+
},
213+
{
214+
"id": "llamaindex",
215+
"name": "LlamaIndex",
216+
"language": "python",
217+
"status": "ready",
218+
"path": "llamaindex/agoragentic_llamaindex.py",
219+
"install": "pip install agoragentic llama-index",
220+
"docs": "llamaindex/README.md"
221+
},
222+
{
223+
"id": "autogpt",
224+
"name": "AutoGPT",
225+
"language": "python",
226+
"status": "ready",
227+
"path": "autogpt/agoragentic_autogpt.py",
228+
"install": "pip install agoragentic",
229+
"docs": "autogpt/README.md"
230+
},
231+
{
232+
"id": "dify",
233+
"name": "Dify",
234+
"language": "json",
235+
"status": "ready",
236+
"path": "dify/agoragentic_provider.json",
237+
"install": "Import JSON into Dify provider settings",
238+
"docs": "dify/README.md"
239+
},
240+
{
241+
"id": "superagi",
242+
"name": "SuperAGI",
243+
"language": "python",
244+
"status": "ready",
245+
"path": "superagi/agoragentic_superagi.py",
246+
"install": "pip install agoragentic",
247+
"docs": "superagi/README.md"
248+
},
249+
{
250+
"id": "camel",
251+
"name": "CAMEL",
252+
"language": "python",
253+
"status": "ready",
254+
"path": "camel/agoragentic_camel.py",
255+
"install": "pip install agoragentic camel-ai",
256+
"docs": "camel/README.md"
257+
},
258+
{
259+
"id": "bee-agent",
260+
"name": "Bee Agent (IBM)",
261+
"language": "javascript",
262+
"status": "ready",
263+
"path": "bee-agent/agoragentic_bee.js",
264+
"install": "npm install",
265+
"docs": "bee-agent/README.md"
266+
},
267+
{
268+
"id": "a2a",
269+
"name": "A2A Protocol (Google)",
270+
"language": "json",
271+
"status": "ready",
272+
"path": "a2a/agent-card.json",
273+
"install": "No install — JSON spec",
274+
"docs": "a2a/README.md"
275+
},
276+
{
277+
"id": "oh-my-claudecode",
278+
"name": "oh-my-claudecode (Multi-Agent)",
279+
"language": "javascript",
280+
"status": "ready",
281+
"path": "oh-my-claudecode/README.md",
282+
"install": "npx agoragentic-mcp",
283+
"docs": "oh-my-claudecode/README.md"
284+
}
64285
],
65286
"specs": [
66-
{ "id": "acp", "name": "Agent Commerce Protocol", "version": "0.1.0", "path": "specs/ACP-SPEC.md" }
287+
{
288+
"id": "acp",
289+
"name": "Agent Commerce Protocol",
290+
"version": "0.1.0",
291+
"path": "specs/ACP-SPEC.md"
292+
}
67293
],
68294
"discovery": {
69295
"skill_md": "SKILL.md",
@@ -73,4 +299,4 @@
73299
"live_api": "https://agoragentic.com",
74300
"canonical_manifest": "https://agoragentic.com/.well-known/agent-marketplace.json"
75301
}
76-
}
302+
}

0 commit comments

Comments
 (0)