Orchestrate event description audits by delegating chunk work to the event-descriptions-worker subagent. Resolve a project name to projectId via get_context when needed, then spawn worker subagents over cursors for a bounded run window and write outputs into run-scoped directories. Use when auditing missing event descriptions at scale without doing per-event analysis directly in this skill. --- # Event Description Generator Run this skill as an **orchestrator only**. Do not perform per-event filtering, repo search, or description-writing logic in this skill body. Delegate chunk processing to the `event-descriptions-worker` subagent. ## Workflow 1. Resolve project input (`projectId` or project name) 2. Create a run ID with short git SHA (`<projectId>-<sha>`) 3. Create run directories under `runs/` 4. Determine cursor plan (`cursorStart`, `maxEvents`, chunk size) 5. Spawn `event-descriptions-worker` subagents for cursor chunks 6. Collect worker summaries + output paths 7. Compress the run into a single CSV 8. Report concise progress and next cursor ## Execution Rules - Keep this skill as a **dispatcher**; the worker does the heavy lifting. - Do not call `set_event_metadata` from this skill. - Do not manually re-implement worker filtering/search logic here. - Preserve user control over scope (project, cursor range, chunk size, parallelism). ## Prerequisites
Guide for using Cursor desktop features including AGENTS.md, Rules, Skills, Commands, Subagents, MCP, and Hooks. Use when the user asks about Cursor configuration, features, or how to set up the IDE environment.