A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Hand off tasks to Devin — a plugin/skill for Claude Code, Codex, Cursor, and any coding agent
Hand off tasks to Devin from any coding agent or the command line. Set it up as a plugin or skill in Claude Code, Codex, Cursor, and more.
Create a Devin session, get a URL, optionally poll until it's done, archive when finished.

Add the marketplace and install the plugin from inside Claude Code:
/plugin marketplace add club-cog/devin-handoff
/plugin install devin-handoff@cognition
Then set your API key (get one at https://app.devin.ai/settings/api-keys):
export DEVIN_API_KEY="your-key-here"
Run /devin-handoff:setup to verify everything is ready.
That's it — ask Claude Code to "hand this off to Devin."
Same idea, from your terminal:
codex plugin marketplace add club-cog/devin-handoff
codex plugin add devin-handoff@cognition
export DEVIN_API_KEY="your-key-here"
Then ask Codex to "hand this off to Devin."
Install it into your coding agent's skills folder so the agent can hand off tasks to Devin on its own:
git clone https://github.com/club-cog/devin-handoff.git
# Copy into your agent's skills directory — adjust the path for your agent
mkdir -p .your-agent/skills
cp -r devin-handoff/.agents/skills/devin-handoff/ .your-agent/skills/devin-handoff/
# Set your API key (get one at https://app.devin.ai/settings/api-keys)
export DEVIN_API_KEY="your-key-here"
Then ask your agent to "hand this off to Devin." See examples/ for per-platform setup guides (Claude Code, Cursor, Codex).
For agents that use AGENTS.md, append the guide:
cat devin-handoff/AGENTS.md >> your-repo/AGENTS.md
# 1. Set your API key
export DEVIN_API_KEY="your-key-here" # Get one at https://app.devin.ai/settings/api-keys
# 2. Create a session from any git repo
./devin-handoff/scripts/devin-handoff.sh create --task "Fix the flaky auth test in CI"
# → https://app.devin.ai/sessions/abc123
# 3. (Optional) Poll until it's done
./devin-handoff/scripts/devin-handoff.sh poll devin-abc123 --interval 15
POST /sessions with your task + contextGET /sessions/{id} every N seconds until Devin finishesDevin gets its own VM with shell, browser, and full repo access. It clones the repo, checks out the branch, and starts working. All sessions are tagged with handoff.
Devin starts in a fresh VM, so the script packages up what your local agent already knows and includes it in the session prompt:
git remote and git rev-parse, so Devin
clones the right repo and checks out the branch you're ongit diff HEAD (truncated to 100KB)
is included, so your work-in-progress carries over instead of being lost on
the way to the cloud. If you have local edits you don't want sent, commit or
stash them before creating the session.--context — whatever the calling agent has learned so far: files it
examined, root-cause hypotheses, partial fixesscripts/devin-handoff.sh create \
--task "Fix the authentication timeout bug" \
--context "Investigated src/auth/session.py and src/auth/middleware.py.
Timeout is hardcoded at 30m in session.py:42. Middleware doesn't check
the configured timeout, always uses the hardcoded value."
Usage:
devin-handoff.sh create --task TASK [OPTIONS]
devin-handoff.sh poll SESSION_ID [OPTIONS]
devin-handoff.sh archive SESSION_ID [OPTIONS]
Commands:
create Create a Devin session and print the session URL
poll Poll a session until it reaches a terminal state
archive Archive a completed session
create options:
--task Task description for Devin (required)
--context Additional context (files examined, findings, partial fixes)
--tag Extra tag (in addition to the default "handoff" tag)
--api-url Devin API base URL (default: https://api.devin.ai)
--org-id Organization ID (required for service keys)
--user-id Create session as this user (service keys only)
poll options:
--interval Polling interval in seconds (default: 30)
--archive Archive the session when it finishes
--api-url Devin API base URL (default: https://api.devin.ai)
--org-id Organization ID (required for service keys)
archive options:
--api-url Devin API base URL (default: https://api.devin.ai)
--org-id Organization ID (required for service keys)
Environment:
DEVIN_API_KEY Required. Personal (apk_*) or service (cog_*) key.
DEVIN_ORG_ID Optional. Organization ID for service keys.
DEVIN_USER_ID Optional. User ID for service keys.
DEVIN_API_URL Optional. Override the API base URL.
apk_*): Uses v1 API. Sessions appear in your sidebar.cog_*): Uses v3 API. Requires --org-id. Use --user-id to make sessions appear in a specific user's sidebar.curl and jqgit (optional — for automatic repo/branch/diff detection)MIT — see LICENSE.
A Claude Code skill by Hao (駱君昊) that learns your Facebook voice and auto-posts to FB / IG / Threads / X with a 14-day c
1000+ skills curated from Anthropic, Vercel, Stripe, and other engineering teams
Human + AI music production workflow for Suno - skills, templates, and tools
Claude Code skill for YouTube creators — channel audits, video SEO, retention scripts, thumbnails, content strategy, Sho