# Send Composio Integration to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "composio-integration",
    "name": "Composio Integration",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/Rita5fr/composio-integration",
    "canonicalUrl": "https://clawhub.ai/Rita5fr/composio-integration",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/composio-integration",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=composio-integration",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "package-lock.json",
      "package.json",
      "scripts/composio-action.sh",
      "scripts/composio-list-apps.sh",
      "scripts/execute-tool.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "composio-integration",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T13:50:49.688Z",
      "expiresAt": "2026-05-06T13:50:49.688Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=composio-integration",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=composio-integration",
        "contentDisposition": "attachment; filename=\"composio-integration-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "composio-integration"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/composio-integration"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/composio-integration",
    "downloadUrl": "https://openagent3.xyz/downloads/composio-integration",
    "agentUrl": "https://openagent3.xyz/skills/composio-integration/agent",
    "manifestUrl": "https://openagent3.xyz/skills/composio-integration/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/composio-integration/agent.md"
  }
}
```
## Documentation

### Composio Integration Skill

Access 600+ apps and services through Composio's unified API. Currently connected: Gmail and Google Tasks.

### 🔑 API Key Location

Saved securely in: /home/sidharth/clawd/memory/composio-credentials.md
Also in: ~/.bashrc (line 135) - auto-loads on terminal start

API Key: ak_AXxQjyexBuSiJXTYOTPB

### Gmail (ca_0cxayHx2BME1)

Email: sonukumar5fr@gmail.com
Status: ACTIVE ✅
Capabilities: Read/send emails, manage labels, drafts, contacts

### Google Tasks (ca_kSNnWG4OHngG)

Email: sonukumar5fr@gmail.com
Status: ACTIVE ✅
Capabilities: Create/update/delete tasks and task lists

### Gmail Tools (20+)

GMAIL_FETCH_EMAILS - Fetch emails
GMAIL_SEND_EMAIL - Send emails
GMAIL_CREATE_EMAIL_DRAFT - Create draft
GMAIL_REPLY_TO_THREAD - Reply to email
GMAIL_SEARCH_EMAILS - Search inbox
GMAIL_ADD_LABEL_TO_EMAIL - Manage labels
GMAIL_DELETE_MESSAGE - Delete emails
And 13+ more...

### Google Tasks Tools (17)

GOOGLETASKS_INSERT_TASK - Create task
GOOGLETASKS_LIST_TASKS - List tasks
GOOGLETASKS_LIST_ALL_TASKS - List all tasks across all lists
GOOGLETASKS_UPDATE_TASK - Update task
GOOGLETASKS_DELETE_TASK - Delete task
GOOGLETASKS_CREATE_TASK_LIST - Create task list
GOOGLETASKS_BULK_INSERT_TASKS - Bulk create tasks
And 10+ more...

### List Available Tools

export COMPOSIO_API_KEY="ak_AXxQjyexBuSiJXTYOTPB"
node scripts/list-tools.mjs gmail        # Gmail tools only
node scripts/list-tools.mjs googletasks  # Google Tasks tools
node scripts/list-tools.mjs              # All tools (paginated)

### Execute a Tool

Fetch Gmail Emails:

node scripts/execute-tool.mjs GMAIL_FETCH_EMAILS ca_0cxayHx2BME1 '{"maxResults":5}'

Create Google Task:

node scripts/execute-tool.mjs GOOGLETASKS_INSERT_TASK ca_kSNnWG4OHngG '{"title":"My Task","notes":"Task details"}'

Send Email:

node scripts/execute-tool.mjs GMAIL_SEND_EMAIL ca_0cxayHx2BME1 '{"to":"recipient@example.com","subject":"Hello","body":"Hi there!"}'

### Base URL (v3 API)

https://backend.composio.dev/api/v3/

### Authentication

All requests use header:

x-api-key: ak_AXxQjyexBuSiJXTYOTPB

### User ID

All tool executions use:

user_id: pg-test-228260f1-217f-40f6-a08a-41fdd0b8d8e6

### Scripts Location

/home/sidharth/clawd/skills/composio-integration/scripts/
├── list-tools.mjs       # List available tools
├── execute-tool.mjs     # Execute any tool
└── (future scripts)

### Morning Email Summary

node scripts/execute-tool.mjs GMAIL_FETCH_EMAILS ca_0cxayHx2BME1 '{"maxResults":10,"labelIds":["INBOX"]}'

### Add Task from Email

Fetch email
Extract key info
Create task:

node scripts/execute-tool.mjs GOOGLETASKS_INSERT_TASK ca_kSNnWG4OHngG '{"title":"Follow up: Email subject","notes":"From: sender@example.com"}'

### Send Follow-up Email

node scripts/execute-tool.mjs GMAIL_SEND_EMAIL ca_0cxayHx2BME1 '{
  "to":"client@example.com",
  "subject":"Re: Your inquiry",
  "body":"Thank you for reaching out..."
}'

### 🔄 Adding New Apps

To connect more apps (Calendar, Notion, Slack, etc.):

Visit: https://app.composio.dev/apps
Click "Connect" on desired app
Complete OAuth flow
Note the connected_account_id
Use with execute-tool.mjs

### 📚 API Reference

Full v3 API Docs: https://docs.composio.dev/rest-api/

Key Endpoints Used:

GET /api/v3/tools - List tools
GET /api/v3/tools/:slug - Get tool schema
POST /api/v3/tools/execute/:slug - Execute tool
GET /api/v3/connected_accounts - List connections

### ✅ Tested & Working

✅ API key authentication
✅ Gmail email fetching
✅ Tool discovery (600+ apps)
✅ Connected account management
✅ v3 API compliance (no deprecated endpoints)

### 🚀 Next Steps

Create wrapper functions for common tasks
 Add Google Calendar integration
 Build email-to-task automation
 Create morning digest generator
 Add error handling & retry logic

Last Updated: 2026-01-20
Status: ✅ Fully Operational
Integration Time: ~30 minutes
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Rita5fr
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T13:50:49.688Z
- Expires at: 2026-05-06T13:50:49.688Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/composio-integration)
- [Send to Agent page](https://openagent3.xyz/skills/composio-integration/agent)
- [JSON manifest](https://openagent3.xyz/skills/composio-integration/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/composio-integration/agent.md)
- [Download page](https://openagent3.xyz/downloads/composio-integration)