From arcade
Executes actions in 500+ external services (Slack, Gmail, GitHub, Notion, Linear, etc.) via Arcade's runtime tool discovery. Use for sending, posting, searching, or updating in third-party apps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/arcade:using-arcade-toolsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```text
Arcade_SelectTools(tasks: ["<one plain-language task>"]) # candidates + input_schema inline
Arcade_UseTool(tool_name, inputs, query_id) # execute; tool_name verbatim
Tools are discovered at runtime — there is no static list. Treat discovery as invisible plumbing the user shouldn't think about.
When a task needs an external service, hand it to a subagent so the discovery noise stays out of the main conversation:
arcade-operatorinbox-agentschedule-agentArcade_SelectTools(tasks=[...]) — one tasks entry per logical workflow.
Returns candidates with their input_schema inline.Arcade_UseTool(tool_name, inputs, query_id) — use tool_name exactly as
returned (Toolkit_Action form, no @version, no period); forward query_id.Arcade_Apps — to see or disconnect the user's connected apps (see the
managing-arcade-apps skill).npx claudepluginhub arcadeai-labs/omnimcp --plugin arcadeCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.