Official Cursor plugins for popular developer tools, frameworks, and SaaS products. Each plugin is a standalone directory at the repository root with its own .cursor-plugin/plugin.json manifest.
$ npx -y skills add cursor/plugins --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
Repo: cursor/plugins
What's inside
Official Cursor plugins for popular developer tools, frameworks, and SaaS products. Each plugin is a standalone directory at the repository root with its own .cursor-plugin/plugin.json manifest.
name | Plugin | Author | Category | description (from marketplace) |
|---|---|---|---|---|
continual-learning | Continual Learning | Cursor | Developer Tools | Incremental transcript-driven memory updates for AGENTS.md using high-signal bullet points only. |
cursor-team-kit | Cursor Team Kit | Cursor | Developer Tools | Internal team workflows used by Cursor developers for CI, code review, shipping, local automation, and verification. |
thermos | Thermos | Cursor | Developer Tools | Thermo-nuclear branch review: deep security/correctness audits, harsh code-quality rubrics, parallel subagents, thermos orchestration, and optional merge-ready PR flows. |
create-plugin | Create Plugin | Cursor | Developer Tools | Scaffold and validate new Cursor plugins. |
agent-compatibility | Agent Compatibility | Cursor | Developer Tools | CLI-backed repo compatibility scans plus Cursor agents that audit startup, validation, and docs against reality. |
cli-for-agent | CLI for Agents | Cursor | Developer Tools | Patterns for designing CLIs that coding agents can run reliably: flags, help with examples, pipelines, errors, idempotency, dry-run. |
pr-review-canvas | PR Review Canvas | Cursor | Developer Tools | Render PR diffs as interactive Cursor Canvases organized for reviewer comprehension โ groups changes by importance, separates boilerplate from core logic, and highlights tricky or unexpected code. |
docs-canvas | Docs Canvas | Cursor | Developer Tools | Render documentation โ architecture notes, API references, runbooks, and codebase walkthroughs โ as a navigable Cursor Canvas with sections, table of contents, diagrams, and cross-references. |
cursor-sdk | Cursor SDK | Cursor | Developer Tools | Build apps, scripts, CI pipelines, and automations on top of the Cursor TypeScript SDK (@cursor/sdk) โ runtime selection, auth, streaming, MCP, error handling, and ready-to-extend integration patterns. |
orchestrate | Orchestrate | Cursor | Developer Tools | Fan large tasks out across parallel Cursor cloud agents with planners, workers, verifiers, and structured handoffs. |
pstack | pstack | Lauren Tan | Developer Tools | if you want to go fast, go deep first. pstack helps you write less, but higher quality code. rigorous agent workflows you can parallelize with confidence. |
gmail | Gmail | Cursor | Productivity | Connect Cursor to Gmail via Google's remote MCP server โ search, read, draft, label, and manage email. |
google-drive | Google Drive | Cursor | Productivity | Connect Cursor to Google Drive via Google's remote MCP server โ search, read, create, share, and manage files. |
google-calendar | Google Calendar | Cursor | Productivity | Connect Cursor to Google Calendar via Google's remote MCP server โ list calendars, search events, and create or update meetings. |
gong | Gong | Cursor | Integrations | Gong MCP integration for revenue intelligence โ account summaries, deal insights, and call briefs. |
salesforce | Salesforce | Cursor | Integrations | Connect Cursor to Salesforce via Salesforce Hosted MCP โ query, search, create, update, and traverse records in your org. |
apollo-io | Apollo.io | Cursor | Integrations | Connect Cursor to Apollo.io โ prospect search, contact and company enrichment, lists, sequences, and one-off emails โ via Apollo's official remote MCP server. |
ashby | Ashby | Cursor | Integrations | Connect Cursor to Ashby โ search candidates and jobs, prep for interviews, manage pipeline tasks, and take recruiting actions โ via Ashby's official remote MCP server. |
hubspot | HubSpot | Cursor | Integrations | Connect Cursor to HubSpot CRM โ search and update contacts, companies, deals, and tickets; work with activities, conversations, and marketing emails โ via HubSpot's official remote MCP server. |
intercom | Intercom | Cursor | Integrations | Connect Cursor to Intercom โ search conversations and contacts, look up companies, and manage Help Center articles โ via Intercom's official remote MCP server. |
circleback | Circleback | Cursor | Integrations | Connect Cursor to Circleback โ search meetings, transcripts, action items, calendar events, and emails, and look up people and companies โ via Circleback's official remote MCP server. |
docusign | Docusign | Cursor | Integrations | Connect Cursor to Docusign โ work with eSignature envelopes and templates, Maestro workflows, and Navigator agreements โ via Docusign's official remote MCP server (beta). |
x | X | Cursor | Integrations | Read-only access to the X API โ search posts and users, read timelines and mentions, and pull trends and news โ via X's official hosted MCP server. |
Author values match each pluginโs plugin.json author.name (Cursor lists plugins@cursor.com in the manifest). |
This is a multi-plugin marketplace repository. The root .cursor-plugin/marketplace.json lists all plugins, and each plugin has its own manifest:
plugins/
โโโ .cursor-plugin/
โ โโโ marketplace.json # Marketplace manifest (lists all plugins)
โโโ plugin-name/
โ โโโ .cursor-plugin/
โ โ โโโ plugin.json # Per-plugin manifest
โ โโโ skills/ # Agent skills (SKILL.md with frontmatter)
โ โโโ rules/ # Cursor rules (.mdc files)
โ โโโ mcp.json # MCP server definitions
โ โโโ README.md
โ โโโ CHANGELOG.md
โ โโโ LICENSE
โโโ ...
MIT
.cursor-plugin/
marketplace.json
.github/
workflows/
validate-plugins.yml
.gitignore
agent-compatibility/
.cursor-plugin/
plugin.json
agents/
compatibility-scan-review.md
docs-reliability-review.md
startup-review.md
validation-review.md
assets/
avatar.png
CHANGELOG.md
LICENSE
README.md
skills/
check-agent-compatibility/
SKILL.md
cli-for-agent/
.cursor-plugin/
plugin.json
LICENSE
README.md
skills/
cli-for-agents/
SKILL.md
continual-learning/
.cursor-plugin/
plugin.json
agents/
agents-memory-updater.md
assets/
avatar.png
hooks/
continual-learning-stop.ts
hooks.json
LICENSE
README.md
skills/
continual-learning/
SKILL.md
create-plugin/
.cursor-plugin/
plugin.json
agents/
plugin-architect.md
assets/
avatar.png
CHANGELOG.md
LICENSE
README.md
rules/
plugin-quality-gates.mdc
skills/
create-plugin-scaffold/
SKILL.md
review-plugin-submission/
SKILL.md
cursor-sdk/
.cursor-plugin/
plugin.json
LICENSE
README.md
skills/
cursor-sdk/
references/
advanced.md
auth.md
error-handling.md
mcp.md
patterns.md
runtime-choice.md
streaming.md
SKILL.md
cursor-team-kit/
.cursor-plugin/
plugin.json
agents/
ci-watcher.md
thermo-nuclear-code-quality-review.md
assets/
avatar.png
LICENSE
README.md
rules/
no-inline-imports.mdc
typescript-exhaustive-switch.mdc
skills/
check-compiler-errors/
SKILL.md
control-cli/
SKILL.md
control-ui/
SKILL.md
deslop/
SKILL.md
fix-ci/
SKILL.md
fix-merge-conflicts/
SKILL.md
get-pr-comments/
SKILL.md
loop-on-ci/
SKILL.md
make-pr-easy-to-review/
SKILL.md
new-branch-and-pr/
SKILL.md
pr-review-canvas/
renderer.js
SKILL.md
styles.css
template.html
review-and-ship/
SKILL.md
run-smoke-tests/
SKILL.md
thermo-nuclear-code-quality-review/
SKILL.md
verify-this/
SKILL.md
weekly-review/
SKILL.md
what-did-i-get-done/
SKILL.md
workflow-from-chats/
SKILL.md
docs-canvas/
.cursor-plugin/
plugin.json
assets/
avatar.png
CHANGELOG.md
LICENSE
README.md
skills/
docs-canvas/
SKILL.md
orchestrate/
.cursor-plugin/
plugin.json
.gitignore
assets/
avatar.png
LICENSE
README.md
skills/
orchestrate/
prompts/
andon-block.md
empty-error-handoff.md
failure-handoff.md
finished-no-handoff.md
loop-hygiene.md
root.md
slack-block.md
subplanner.md
verifier.md
worker.md
references/
dispatcher.md
handoffs.md
planner.md
spawning.md
schemas/
plan.schema.json
state.schema.json
scripts/
__tests__/
agent-manager-slack-mirror.test.ts
andon-root-cache.test.ts
checkpoint-restart.test.ts
comment-cli.test.ts
comment-retry-queue.test.ts
exit-on-error.test.ts
failure-handoff.test.ts
handoff-branch-parser.test.ts
handoff-verification-parser.test.ts
handoff-verification-record.test.ts
kickoff-dedupe.test.ts
measurements-compare.test.ts
measurements-mismatch.test.ts
measurements-parser.test.ts
models-catalog.test.ts
operator-boundary.test.ts
probe-models.test.ts
prompt-plan-validation.test.ts
redact-body.test.ts
schemas.test.ts
slack-adapter.test.ts
slack-channel-boundary.test.ts
slack-message-format.test.ts
slack-prompt-shape.test.ts
support/
slack-web-api-mock.ts
verifier-startingref-reconcile.test.ts
wait-handoff-failure.test.ts
watchdog-inspect.test.ts
worker-branch-discipline.test.ts
adapters/
index.ts
README.md
slack/
client.ts
index.ts
types.ts
biome.json
bun.lock
cli/
cli.ts
andon.ts
comments.ts
forensics.ts
index.ts
inspect.ts
task.ts
util.ts
core/
agent-manager.ts
andon.ts
branches.ts
comment-retry-queue.ts
failure-handoff.ts
handoff.ts
loop.ts
prompts.ts
redact-body.ts
errors.ts
measurements.ts
models.ts
package.json
schemas.ts
tools/
generate-json-schemas.ts
nudge-root.ts
probe-models.ts
tsconfig.json
SKILL.md
pr-review-canvas/
.cursor-plugin/
plugin.json
assets/
avatar.png
CHANGELOG.md
LICENSE
README.md
skills/
pr-review-canvas/
SKILL.md
pstack/
.cursor-plugin/
plugin.json
.gitignore
agents/
comment-sicko.md
poteto-agent.md
automations/
benny/
FOR_AGENTS.md
README.md
skills/
reproduce-and-fix-issues/
references/
control-adapter.md
feature-map.example.md
verify-existing-fix.md
SKILL.md
setup-benny/
SKILL.md
triage-issue-reports/
references/
routing.example.md
SKILL.md
templates/
configuration.example.yaml
reproduce-automation-prompt.md
triage-automation-prompt.md
docs/
guide/
01-setup.md
02-poteto-mode.md
03-understand.md
04-design.md
05-build-and-clean.md
06-verify-and-ship.md
07-overnight.md
08-principles.md
09-make-it-yours.md
10-recipes-and-pitfalls.md
images/
design.jpg
overnight.jpg
recipes.jpg
router.jpg
understanding.jpg
verification.jpg
README.md
LICENSE
README.md
skills/
architect/
references/
design-red-flags.md
rationale-template.md
runner-prompt.md
SKILL.md
arena/
SKILL.md
automate-me/
SKILL.md
blast-radius/
SKILL.md
bro/
SKILL.md
create-verification-skill/
references/
feature-map-example/
create-note.md
README.md
search.md
SKILL.md
figure-it-out/
SKILL.md
how/
references/
critic-prompt.md
critique-rubric.md
explainer-prompt.md
explorer-prompt.md
SKILL.md
interrogate/
references/
code-quality-review.md
lead-judgment.md
reviewer-prompt.md
rubric.md
SKILL.md
maintain-verification-skill/
SKILL.md
no-comments/
SKILL.md
poteto-mode/
playbooks/
authoring-a-skill.md
autonomous-run.md
autopilot-full.md
autopilot-stack.md
babysit.md
bug-fix.md
eval.md
feature.md
hillclimb.md
investigation.md
multi-phase-plan.md
opening-a-pr.md
orchestrate.md
pause-safely.md
perf-issue.md
prototype.md
refactoring.md
runtime-forensics.md
session-pickup.md
shipping.md
trace-forensics.md
visual-parity.md
worktree-cleanup.md
references/
bugbot-triage.md
plan.md
scripts/
bootstrap.ts
bun.lock
orch/
orch.test.ts
orch.ts
store.ts
package.json
watch-pr/
cli.test.ts
cli.ts
fakes.test-helper.ts
github.test.ts
github.ts
policy.test.ts
policy.ts
render.ts
tsconfig.json
types.compile.ts
types.ts
watch-pr
worktree-audit.sh
SKILL.md
principle-boundary-discipline/
SKILL.md
principle-build-the-lever/
SKILL.md
... 284 moreFAQ
cursor-plugins is a Claude Code plugin with 82 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes check-agent-compatibility, cli-for-agents, continual-learning. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.