Skip to content

Commit 50f1097

Browse files
Curate marketplace to new Cursor plugin set
Consolidate the repo around the new domain plugins and Cursor Dev Kit workflows while removing legacy plugin content. Update manifests and README listings to reflect the current plugin reality. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 0f081da commit 50f1097

207 files changed

Lines changed: 1891 additions & 9801 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cursor-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@
7474
"description": "Cursor Dev Kit \u2014 internal-style workflows used by Cursor developers for CI, code review, shipping, and testing"
7575
}
7676
]
77-
}
77+
}

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,6 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc
66

77
| Plugin | Category | Description |
88
|:-------|:---------|:------------|
9-
| [GitHub](github/) | Developer Tools | Actions, API, CLI, Pull Requests, and repository management |
10-
| [Docker](docker/) | Developer Tools | Dockerfiles, Compose, multi-stage builds, and containers |
11-
| [LaunchDarkly](launchdarkly/) | Developer Tools | Feature flags, experimentation, and progressive rollouts |
12-
| [Sentry](sentry/) | Observability | Error monitoring, performance tracking, and alerting |
13-
| [Firebase](firebase/) | Backend | Firestore, Cloud Functions, Authentication, and Hosting |
14-
| [MongoDB](mongodb/) | Backend | Schema design, queries, aggregation, indexes, and Mongoose |
15-
| [Twilio](twilio/) | SaaS | SMS, Voice, WhatsApp, Verify, and communications APIs |
16-
| [Slack](slack/) | SaaS | Bolt framework, Block Kit, Events API, and app development |
179
| [Frontend](frontend/) | Developer Tools | React, TypeScript, accessibility, and performance workflows |
1810
| [Design](design/) | Utilities | UX specs, design systems, handoff, and iteration workflows |
1911
| [Data Science](data-science/) | Utilities | Analysis, modeling, experimentation, and reporting workflows |

android/.cursor-plugin/plugin.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "android",
3+
"version": "1.0.0",
4+
"description": "Cursor plugin for Android development \u2014 Kotlin, Jetpack Compose, architecture, and testing",
5+
"author": {
6+
"name": "Cursor",
7+
"email": "plugins@cursor.com"
8+
},
9+
"homepage": "https://github.com/cursor/plugins",
10+
"repository": "https://github.com/cursor/plugins",
11+
"license": "MIT",
12+
"keywords": [
13+
"android",
14+
"kotlin",
15+
"jetpack-compose",
16+
"gradle",
17+
"mobile"
18+
],
19+
"category": "developer-tools",
20+
"tags": [
21+
"mobile",
22+
"android",
23+
"kotlin"
24+
],
25+
"skills": "./skills/"
26+
}
File renamed without changes.

android/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Android Plugin
2+
3+
Android development — Kotlin, Jetpack Compose, architecture, and testing.
4+
5+
## Installation
6+
7+
```bash
8+
agent install android
9+
```
10+
11+
## Components
12+
13+
### Skills
14+
15+
| Skill | Description |
16+
|:------|:------------|
17+
| `build-android-feature` | Implement Android features with robust architecture, state management, and tests |
18+
| `debug-android-issue` | Reproduce and debug Android issues in Compose, lifecycle, and data layers |
19+
20+
## License
21+
22+
MIT
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: build-android-feature
3+
description: Implement Android features with robust architecture, state management, and tests
4+
---
5+
6+
# Build an Android Feature
7+
8+
## Trigger
9+
10+
Building or refactoring Android functionality with Kotlin and Compose.
11+
12+
## Workflow
13+
14+
1. Confirm app architecture and module boundaries.
15+
2. Define UI states and unidirectional data flow.
16+
3. Implement Compose screens and view models.
17+
4. Add tests for business logic and UI behavior.
18+
5. Validate performance-sensitive paths.
19+
20+
## Guardrails
21+
22+
- Keep business logic out of Composables.
23+
- Avoid hidden state mutations in shared objects.
24+
- Make error and retry behavior explicit.
25+
26+
## Output
27+
28+
- Architecture-aware implementation plan
29+
- Code and test updates
30+
- Remaining risks and next steps
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: debug-android-issue
3+
description: Reproduce and debug Android issues in Compose, lifecycle, and data layers
4+
---
5+
6+
# Debug an Android Issue
7+
8+
## Trigger
9+
10+
Android defects involving UI rendering, app lifecycle, concurrency, or data flow.
11+
12+
## Workflow
13+
14+
1. Reproduce with exact app state and device/emulator context.
15+
2. Inspect logs, crashes, and lifecycle transitions.
16+
3. Isolate fault domain (UI, state, data, or platform interaction).
17+
4. Implement minimal safe fix and confirm behavior.
18+
5. Add regression checks for the failing path.
19+
20+
## Output
21+
22+
- Root-cause summary
23+
- Proposed fix with risk notes
24+
- Verification checklist
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "code-review",
3+
"version": "1.0.0",
4+
"description": "Cursor plugin for code review workflows \u2014 correctness, security, regressions, and actionable feedback",
5+
"author": {
6+
"name": "Cursor",
7+
"email": "plugins@cursor.com"
8+
},
9+
"homepage": "https://github.com/cursor/plugins",
10+
"repository": "https://github.com/cursor/plugins",
11+
"license": "MIT",
12+
"keywords": [
13+
"code-review",
14+
"pull-request",
15+
"security",
16+
"regression",
17+
"testing"
18+
],
19+
"category": "developer-tools",
20+
"tags": [
21+
"review",
22+
"quality",
23+
"security"
24+
],
25+
"skills": "./skills/",
26+
"rules": "./rules/",
27+
"agents": "./agents/"
28+
}
File renamed without changes.

code-review/README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Code Review Plugin
2+
3+
Code review workflows — correctness, security, regressions, and actionable feedback.
4+
5+
## Installation
6+
7+
```bash
8+
agent install code-review
9+
```
10+
11+
## Components
12+
13+
### Skills
14+
15+
| Skill | Description |
16+
|:------|:------------|
17+
| `review-pr-changes` | Perform risk-focused code reviews with prioritized findings and test-gap analysis |
18+
| `security-review` | Conduct a focused security review for changed code and integration boundaries |
19+
| `test-gap-audit` | Identify missing tests and propose a prioritized test plan for changed behavior |
20+
| `review-pr` | Perform a risk-focused pull request review and return prioritized findings |
21+
| `review-risky-changes` | Deep review of high-risk changes involving auth, data, infra, or shared core logic |
22+
23+
### Rules
24+
25+
| Rule | Description |
26+
|:-----|:------------|
27+
| `security-review-checklist` | Security checklist for auth, input handling, and secret exposure risks |
28+
| `regression-risk-checklist` | Regression checklist for behavior changes and compatibility risks |
29+
30+
### Agents
31+
32+
| Agent | Description |
33+
|:------|:------------|
34+
| `security-reviewer` | Security-focused reviewer for pull requests and critical code paths |
35+
36+
## License
37+
38+
MIT

0 commit comments

Comments
 (0)