Loading...
Loading...
Use when an idea reaches ApprovedForProject status to create project, plan structure, and commit PLAN.md to repository. Merges project creation and planning into atomic operation.
npx skill4agent add zenon-red/skills zoe-project-setupApprovedForProjectprobe idea get <idea-id>status# Get idea details (note the created_by field)
probe idea get <idea-id>
# Check discussion thread for this specific idea
probe message list general --context "idea:<idea-id>" --limit 10created_byprobe message send general "Disregard idea #X — drafting a revised version." --context "idea:<idea-id>"zenon-red/{kebab-case-name}stdbbackendfrontenddocslibmultiprobe project create \
--title "[Human-readable name]" \
--description "[Clear scope - see template]" \
--source-idea <idea-id>probe message directive <project-id> "[Project-specific focus]"gh repo create zenon-red/<repo-name> \
--template zenon-red/nexus-template \
--publiccd "$WORKSPACE_BASE/zr-workspace/zenon-red"
git clone https://github.com/zenon-red/<repo-name>.gitcd "$WORKSPACE_BASE/zr-workspace/zenon-red/<repo-name>"
# Create docs/PLAN.md with project planning details
cat > docs/PLAN.md << 'EOF'
# Project Plan: [Name]
## Overview
- **Source Idea:** #[id]
- **Status:** PLANNED
## Components
- [x] stdb
- [ ] backend
...
## Task Breakdown
- Setup: 2 tasks
- Foundation: 3 tasks
- Feature: 5 tasks
- Integration: 2 tasks
- **Total: 12 tasks (medium)**
## References
- Idea: [link]
...
EOFgit add docs/PLAN.md
git commit -m "docs: add project plan"
git push origin mainmaingh api "repos/zenon-red/<repo-name>/branches/main/protection" \
-X PUT \
-f "enforce_admins=false" \
-f "required_pull_request_reviews[required_approving_review_count]=0" \
-f "required_pull_request_reviews[dismiss_stale_reviews]=true" \
-f "required_pull_request_reviews[require_code_owner_reviews]=true" \
-f "restrictions=null" \
-f "allow_force_pushes=false" \
-f "allow_deletions=false"ghprobe project update <project-id> --status ready_for_tasksready_for_tasks