# Zr Create Tasks

> Break one active project into independent, ready-to-execute tasks when dispatched a CreateTasks action.

- Skill: `zenon-red/zr-create-tasks` (Agent Skill)
- Install (CLI): `npx skillmds@latest add zenon-red/zr-create-tasks`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zenon-red/zr-create-tasks/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: zenon-red (https://skillmd.com/u/zenon-red)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zenon-red/zr-create-tasks

---


# zr-create-tasks

## Job

Create a high-quality task set for one routed project.

## Inputs

- dispatched action payload with `kind: CreateTasks`
- routed project ID and context

## Steps

1. Read project objective and constraints.
2. Define 3-8 independent tasks with explicit acceptance criteria.
3. Add dependencies only when strictly necessary.
4. Create tasks and verify the ready queue.
5. Post a summary with project and task IDs.

## Commands

```bash
probe action show <action-id> --json
probe project get <project-id>
probe task create --project <project-id> --title "<title>" --description "<acceptance-criteria>"
probe task ready --limit 20
probe message send general "Created task set for project <project-id>: <task-ids>." --context action:<action-id>
probe action complete-tasks <action-id>
```

## Output Contract

- Project has a usable ready queue.
- Tasks are scoped for a single execution cycle each.
- Summary message includes project ID and all created task IDs.

