用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aAAaqwq/AGI-Super-Team --skill composio命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | composio |
| description | Build AI agents and apps with Composio - access 200+ external tools with Tool Router or direct execution |
| tags | ["composio","tool-router","agents","mcp","tools","api","automation"] |
Comprehensive guide to building AI agents and applications with Composio. Choose between:
Use this skill when:
Building AI Agents:
Building Traditional Applications:
Use Tool Router to build interactive chat-based agents or autonomous long-running task agents. Tool Router creates isolated MCP sessions for users with scoped access to toolkits and tools.
Key Features:
Essential patterns for creating agent sessions and configuring tools:
Authentication patterns for seamless user experiences:
Build connection UIs and check toolkit states:
Real-time event handling and webhook integration patterns:
Use Composio for traditional applications where tools are executed manually without agent frameworks. This approach gives you full control over tool execution, authentication, and resource management.
Key Capabilities:
Fundamental patterns for fetching and executing tools:
Manage authentication and connections programmatically:
Extend Composio with custom tools and behavior:
Build reactive applications with triggers (shared with agents):
Manage user context and multi-tenant isolation:
import { Composio } from '@composio/core';
const composio = new Composio();
// Create a session with Gmail tools
const session = await composio.create('user_123', {
toolkits: ['gmail'],
manageConnections: true
});
// Use MCP URL with any AI framework
console.log('MCP URL:', session.mcp.url);
import { Composio } from '@composio/core';
const composio = new Composio({
apiKey: 'your-api-key',
toolkitVersions: { github: '12082025_00' }
});
// Fetch tools
const tools = await composio.tools.get('user_123', {
toolkits: ['github']
});
// Execute a tool
const result = await composio.tools.execute('GITHUB_GET_REPO', {
userId: 'user_123',
arguments: { owner: 'composio', repo: 'sdk' },
});
console.log(result.data);
Tool Router (Agents):
Direct Execution (Apps):
Shared: