A collection of rules, agents, commands, and skills for Cursor that I use in my workflows.
.cursor/
├── agents/
│ └── code-auditor.md # Codebase analysis & refactoring specialist
├── commands/
│ ├── create-pr.md # Open a PR with auto-generated description
│ └── pull-comments.md # Fetch & organize PR review comments
├── rules/
│ ├── convex_rules.mdc
│ ├── decision-making.mdc
│ ├── file-length-modularity.mdc
│ ├── general.mdc
│ ├── research-guidelines.mdc
│ └── tailwind-v4.mdc
└── skills/
└── conductor-json/ # Generate conductor.json for workspaces
- code-auditor — Expert code auditor that finds duplicate code, unused code, DRY violations, technical debt, and unused dependencies. Ideal after major feature work or before refactoring.
- pull-comments — Fetches all review comments from a GitHub PR, dedupes them, categorizes by severity (blocking / should fix / suggestions), and explains each in plain English.
- create-pr — Creates a PR from your current branch with a structured description, auto-committing any unstaged work first.
TODO: I don't use Rules anymore, they have been replaced by a collection of Skills and my AGENTS.md.
- convex_rules — Convex-specific patterns and best practices
- decision-making — Structured decision-making guidelines
- file-length-modularity — File length and modularity standards
- general — General coding conventions
- research-guidelines — Research and exploration guidelines
- tailwind-v4 — Tailwind CSS v4 patterns
- conductor-json — Generates
conductor.jsonfiles for Conductor workspaces, with templates for Tauri, Next.js, and React projects.
Copy the .cursor/ directory into your project root. Cursor will automatically pick up rules, agents, commands, and skills from this location.
Good luck!