cursor-subagent-creator

Create Cursor subagent markdown files with YAML frontmatter for isolated workflows.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/luizgmassa/Useful-Agent-Skills --skill cursor-subagent-creator-luizgmassa
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cursor-subagent-creator
Source: https://github.com/luizgmassa/Useful-Agent-Skills/tree/main/skills/cursor-subagent-creator
Command: npx skills add https://github.com/luizgmassa/Useful-Agent-Skills --skill cursor-subagent-creator-luizgmassa

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It solves the problem of building complex, multi-step assistant workflows by creating Cursor editor subagents with isolated context so each specialist can operate without interfering with others.

Core Features & Use Cases

  • Cursor-specific subagent scaffolding: Produces .cursor/agents/*.md subagent definitions designed for Cursor’s Agent delegation patterns.
  • Isolated context for specialization: Supports focused subagents that can handle verification, debugging, documentation, or domain expertise with dedicated prompts.
  • Foreground/background execution modes: Enables synchronous delegation for sequential steps or asynchronous background work for long-running streams.
  • Agent-friendly frontmatter and routing signals: Uses a frontmatter structure (including description, model, readonly, is_background) so the parent Cursor Agent can automatically decide when to delegate.

Quick Start

Ask your AI to create a Cursor subagent that acts as a verifier for your feature implementation, stored as a new .cursor/agents/<kebab-case>.md file with a clear description that triggers delegation after tasks are marked complete.

Frequently Asked Questions about cursor-subagent-creator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create Cursor subagents for complex multi-step workflows?

To create Cursor subagents, you generate `.cursor/agents/<kebab-case>.md` files with specific YAML frontmatter and prompt structure. This isolates context for specialized agents like verifiers or debuggers, enabling them to operate without interfering with the parent Cursor Agent.

When do I need isolated context for AI agent delegation in Cursor?

You need isolated context for AI agent delegation when building specialized assistants like auditors or workflow orchestrators that require focused execution. It prevents interference between agents during complex multi-step workflows by giving each specialist a dedicated prompt and environment.

Can I run background execution for long-running subagents in Cursor?

Yes, you can run background execution for long-running subagents in Cursor by setting the `is_background` frontmatter field to true. This enables asynchronous delegation for long-running streams, contrasting with synchronous foreground execution for sequential steps.

Does Cursor support automatic routing for delegated subagents?

Cursor supports automatic routing for delegated subagents by using agent-friendly frontmatter fields like `description`, `model`, and `readonly`. The parent Cursor Agent reads these routing signals to automatically decide when to delegate tasks to the appropriate specialized agent.

What is the best way to structure a Cursor subagent markdown file?

The best way to structure a Cursor subagent markdown file is using kebab-case naming in the `.cursor/agents/` directory, incorporating YAML frontmatter with `description`, `model`, `readonly`, and `is_background` fields, followed by a clear prompt structure defining the agent's specialized behavior.