Files
cursor__plugins/README.md
ericzakariasson c621dad7ae Add Ralph Loop plugin
Port of the Ralph Wiggum technique from Claude Code to Cursor.
Runs Cursor in a self-referential loop, feeding the same prompt
back after every turn until a completion condition is met.

Components:
- Stop hook that intercepts session exit and re-injects the prompt
- Setup script for initializing loop state
- Skills for starting, cancelling, and explaining the loop

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-11 15:26:17 -08:00

46 lines
2.4 KiB
Markdown

# Cursor plugins
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.
## Plugins
| Plugin | Category | Description |
|:-------|:---------|:------------|
| [Frontend](frontend/) | Developer Tools | React, TypeScript, accessibility, and performance workflows |
| [Design](design/) | Utilities | UX specs, design systems, handoff, and iteration workflows |
| [Data Science](data-science/) | Utilities | Analysis, modeling, experimentation, and reporting workflows |
| [iOS](ios/) | Developer Tools | Swift, SwiftUI, architecture, and testing workflows |
| [Android](android/) | Developer Tools | Kotlin, Jetpack Compose, architecture, and testing workflows |
| [Planning](planning/) | Utilities | Scope, milestones, risk management, and execution planning |
| [Code Review](code-review/) | Developer Tools | Correctness, security, regression checks, and actionable feedback |
| [Web Browser](web-browser/) | Developer Tools | DevTools-driven debugging, network traces, and repro workflows |
| [Documentation](documentation/) | Utilities | READMEs, API docs, architecture notes, and changelog writing |
| [Learning](learning/) | Utilities | Skill maps, practice plans, and feedback loops |
| [Cursor Dev Kit](cursor-dev-kit/) | Developer Tools | Internal-style workflows for CI, code review, shipping, and testing |
| [Create Plugin](create-plugin/) | Developer Tools | Meta workflows for creating Cursor plugins with scaffolding and submission checks |
| [Ralph Loop](ralph-loop/) | Developer Tools | Iterative self-referential AI loops using the Ralph Wiggum technique |
## Repository structure
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
└── ...
```
## License
MIT