What problem does it solve? Creating specialized AI subagents for the Cursor editor requires knowing Cursor's specific file format, frontmatter fields, directory conventions, and delegation patterns. This Skill guides the creation of correctly structured subagents in .cursor/agents/ so the Cursor Agent can delegate complex, multi-step tasks to them with isolated context. ## Core Features & Use Cases - Cursor-Specific Subagent Format: Generates markdown subagent files with the correct frontmatter fields (name, description, model, readonly, is_background) placed in .cursor/agents/ or ~/.cursor/agents/. - Ready-Made Patterns: Provides templates for common subagents such as verifier, debugger, security auditor, test runner, documentation writer, and orchestrator. - Delegation Guidance: Explains how to write descriptions that trigger automatic delegation, plus explicit invocation via /name syntax and parallel execution. - Use Case: You want Cursor to automatically run a security review whenever authentication code changes. Use this Skill to create a security-auditor subagent with a delegation-optimized description and structured severity reporting. ## Quick Start Create a Cursor subagent called code-reviewer that reviews code changes for quality, performance, and test coverage.