Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
composio logo

composio

srmcguirt/openclaw-composio

Otheropenclawby srmcguirt

Summary

OpenClaw plugin exposing 0 skills.

Install to Claude Code

openclaw plugin add srmcguirt/openclaw-composio

Run in Claude Code. Add the marketplace first with /plugin marketplace add srmcguirt/openclaw-composio if you haven't already.

README.md

@srmcguirt/openclaw-composio

OpenClaw plugin exposing Composio's tool catalog (Gmail, Slack, GitHub, Notion, Linear, ~800+ toolkits) as callable agent tools.

Install

openclaw plugins install @srmcguirt/openclaw-composio

Configure

1. Get a Composio API key at https://platform.composio.dev 2. For each toolkit you want to use, create an auth config in the Composio dashboard and capture its id (ac_...) 3. Set the API key and config:

export COMPOSIO_API_KEY=ck_xxx
openclaw config set composio.toolkits '["github","gmail"]'
openclaw config set composio.authConfigIds '{"github":"ac_111","gmail":"ac_222"}'

Multi-user (shared machine)

By default, userIdStatic is empty so the plugin refuses to call any tool until you identify yourself in the current session:

/composio whoami shane
/composio connect github

This prevents one user accidentally operating another's connected accounts on a shared OpenClaw install.

For single-user installs, set userIdStatic once and skip whoami.

⚠️ Agent impersonation risk

Because OpenClaw's plugin-sdk does not yet expose a slash-command registration API, the /composio whoami command is implemented as a tool (cmp_command) that the LLM agent can invoke on its own. On a shared machine, a rogue or mistaken agent could theoretically switch user contexts without human input.

Mitigations in place:

  • First-time whoami sets the user; subsequent switches to a DIFFERENT user require force: true
  • Force-overrides emit a warn-level log line for audit
  • If the plugin-sdk later gains a real registerCommand API, we'll migrate whoami off the tool surface

Until then: prefer single-user installs, or use userIdSource: "profile"/"env" to tie identity to OpenClaw profile / env var rather than a session toggle.

Slash commands

  • /composio whoami <userId> — set active user for this session
  • /composio connect <toolkit> — start OAuth for a toolkit
  • /composio list — list connected accounts for current user
  • /composio disconnect <connectedAccountId> — revoke a connection
  • /composio refresh — re-fetch tool catalog from Composio (new tools require restart; removed tools disabled immediately)
  • /composio status — show plugin state

Note: the current openclaw/plugin-sdk does not expose a slash-command registration API; these commands are invoked via the cmp_command dispatcher tool until the SDK gains registerCommand support.

Pre-publish checklist

  • [ ] Install plugin into a fresh OpenClaw instance via openclaw plugins install
  • [ ] Set COMPOSIO_API_KEY, configure one toolkit (github)
  • [ ] Boot OpenClaw; confirm tools registered (log check + agent palette)
  • [ ] Run /composio whoami <name>
  • [ ] Run /composio connect github; complete OAuth in browser
  • [ ] Invoke one read-only tool (e.g. ask the agent "list my GitHub repos"); verify success
  • [ ] Add another toolkit in config; run /composio refresh; verify diff output
  • [ ] Run npm run test:live with a real API key to confirm SDK boundary intact
  • [ ] Verify upstream pull on the openclaw fork stays clean: cd c:/git/openclaw && git pull upstream main

Development

npm install
npm test                  # unit + integration (mocked SDK)
npm run test:coverage
npm run test:live         # gated by COMPOSIO_LIVE_TEST=1; needs COMPOSIO_API_KEY
npm run build
npm run typecheck

License

MIT

Related plugins

Browse all →