.claude/skills/tooling/claude-tasks/SKILL.md
Claude Code's built-in task management system. Provides persistent memory via TaskCreate, TaskUpdate, TaskGet, TaskList tools with hierarchical organization and dedicated workflow state fields.
npx skillsauth add brdohman/agile-maestro claude-tasksInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Claude Code Tasks is the built-in task management system using Claude's native tools. It provides persistent memory across sessions with a three-level hierarchy: Epic > Story > Task.
Creates a new epic, story, or task. Requires title, type, description, and metadata with schema_version: "2.0", approval, blocked, and type-appropriate workflow fields. Stories and epics also need review_stage and review_result.
Updates any field on an existing task. Always call TaskGet first to read current metadata before writing — metadata.comments is append-only and will be overwritten if you do not spread the existing array.
Retrieves a single task by ID. Returns all fields including metadata.approval, metadata.review_stage, metadata.review_result, metadata.comments, blockedBy, and blocks. Use before every TaskUpdate.
Finds tasks matching filter criteria. Common filters: { approval: "approved", status: "pending" } for available work; { review_stage: "code-review", review_result: "awaiting" } for review queues; { review_result: "rejected" } for items needing fixes.
Epic (type: "epic") — top-level initiative
Story (type: "story") — phase or component under epic
Task (type: "task") — individual work item under story
Stories are type: "story", NOT type: "epic".
agent-shared-contextreview-cycle.claude/templates/tasks/metadata-schema.md.claude/rules/global/task-state-updates.md.claude/rules/workflow/task-planning.md.claude/HOW-TO.mdtesting
XCTest patterns for macOS Swift apps. Unit tests, async tests, Core Data tests, mock patterns, and assertion reference. Use when writing or reviewing tests.
tools
How to transition workflow state between review stages. Rules for setting review_stage and review_result fields on Stories and Epics.
documentation
Comment structure and rules for task workflow updates. Use when adding any comment to a task during implementation, review, or fix cycles.
testing
Validate task/story/epic/bug/techdebt metadata against schema v2.0. Run after TaskCreate or TaskUpdate to verify compliance. Returns pass/fail with actionable details.