Most projects that embed agent behavior end up with ad-hoc scripts and brittle integrations. This repository organizes first-party Cursor integrations as a single marketplace: each plugin is a self-contained directory with a .cursor-plugin/plugin.json manifest, making plugins discoverable, versionable, and reusable across Cursor workspaces and agents. The repo collects agent skills, rules, MCP definitions, SDK helpers, and workflow automations across developer workflows.
What Sets It Apart
- Manifest-first structure: each plugin ships a
.cursor-plugin/plugin.jsonso tooling can enumerate capabilities, authorship, and permissions automatically — so what? it enables programmatic discovery, validation, and safer runtime loading by Cursor agents and the marketplace UI. - Agent-focused assets alongside CI/infra patterns: plugins include SKILL.md, rules (.mdc), and
mcp.jsonexamples — so what? teams get ready-to-adapt agent skills and server definitions instead of only UI widgets, shortening the gap between idea and deployable agent behavior. - Broad developer-tooling coverage: examples range from PR review canvases and docs canvases to CLI-for-agents and orchestrators — so what? it targets the full lifecycle (authoring, reviewing, CI, orchestration) rather than a single integration point, making it useful for embedding agents into real engineering workflows.
- First-party curation: maintained by Cursor with per-plugin manifests and marketplace.json at the root — so what? consumers can assume consistent conventions and an update path aligned with Cursor platform expectations.
Who it's for and tradeoffs
Great fit if you are building or operating Cursor-based agents or developer automations and want reusable, auditable building blocks (skills, rules, MCP configs) that follow a consistent manifest schema. It helps engineering teams standardize agent behaviors, instrument PR reviews, and fan-out tasks across parallel workers.
Look elsewhere if you need plugins that target other agent platforms (non-Cursor runtimes), require provider-agnostic UI clients, or expect turnkey SaaS connectors outside the Cursor ecosystem; this repo is designed for integration within Cursor conventions and assumes adoption of Cursor SDK/agent runtimes.
Where it sits in a toolchain
This repository is best thought of as the curated plugin layer for Cursor: it sits above the Cursor SDK/runtime and provides building blocks agents and workflows consume. Use it to prototype agent skills, standardize team automations, and bootstrap orchestrations that later run on Cursor cloud agents.