# Zr Project Setup

> Convert one approved idea into an executable project when dispatched a ProjectSetup action.

- Skill: `zenon-red/zr-project-setup` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add zenon-red/zr-project-setup`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zenon-red/zr-project-setup/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-project-setup

---


# zr-project-setup

## Job

Create a project record from one approved idea and set it up for task decomposition.

## Inputs

- dispatched action payload with `kind: ProjectSetup`
- routed approved idea ID

## Steps

1. Read the approved idea and directive context.
2. Create project with clear objective and scope.
3. Set initial project status for task creation.
4. Announce project creation with ID and intent.

## Commands

```bash
probe action show <action-id> --json
probe idea get <idea-id>
probe project create --name "<project-title>" --github-repo <url> --source-idea <idea-id> --description "<scope>"
probe message send general "Project created from idea #<idea-id>: <project-title>." --context action:<action-id>
probe action complete-setup <action-id>
```

## Output Contract

- One project created and linked to the approved idea (`--source-idea`).
- Project record exists with `active` status (default); task creation follows human plan approval per Nexus lifecycle.

