一键导入
run-project
Routes to scripts/run-project.sh for process-isolated project execution. NEVER executes stories inline unless --inline is explicitly passed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Routes to scripts/run-project.sh for process-isolated project execution. NEVER executes stories inline unless --inline is explicitly passed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate ASCII block-art banner images for social posts and OG images. Dark midnight aesthetic with faded {company} text on near-black background. Two sizes — 1080x1080 (social) and 1200x630 (OG). Use for product announcements, project launches, concept visuals, and repo OG images.
Explore approaches and tradeoffs before committing to a PRD. Research HQ context, compare options, surface unknowns, generate brainstorm.md with recommendation.
Post-ship documentation sync — updates README, CLAUDE.md, architecture docs, and INDEX files to match what actually shipped. Use after merging a PR, completing a project, or deploying a release. Triggers on "update docs", "sync documentation", "docs are stale", "document what shipped".
Execute a single PRD story through coordinated worker phases (Ralph pattern). Each worker handles its domain, passes context to the next, with back-pressure (tests/lint/typecheck) keeping code on rails.
Prepare for a new session to continue this work. Captures session learnings, syncs domain knowledge and insights, commits dirty repos, writes a thread file and handoff.json, updates INDEX files, and refreshes the search index. Ensures continuity across sessions.
Capture and classify learnings, route to structured policy files (rules) or insight files (educational knowledge). Deduplicates via qmd (Grep fallback), rebuilds policy digest after policy changes. Callable manually or from /execute-task, /run-project, /handoff, /checkpoint. Use --hard flag for hard-enforcement rules.
| name | run-project |
| description | Routes to scripts/run-project.sh for process-isolated project execution. NEVER executes stories inline unless --inline is explicitly passed. |
| allowed-tools | Read, Bash(bash:*), Bash(jq:*), Bash(cat:*), Bash(tail:*), Bash(kill:*), Bash(ls:*), Bash(mkdir:*), Bash(nohup:*), Bash(echo:*), Bash(sleep:*), Bash(qmd:*) |
| argument-hint | {project} [--status] [--resume] [--dry-run] [--inline] |
CRITICAL: This skill routes to scripts/run-project.sh. Stories execute in isolated claude -p subprocesses — NOT inline in this session. The only exception is --inline (explicit opt-in). See policy: .claude/policies/run-project-no-inline.md.
For full execution details, flags, swarm mode, and worked examples: .claude/commands/run-project.md.
User's input: $ARGUMENTS
Extract from $ARGUMENTS:
{project} — project name (required unless --status)--status → run bash scripts/run-project.sh --status synchronously, display output, stop--dry-run → run bash scripts/run-project.sh --dry-run {project} synchronously, display output, stop--help → display flags from .claude/commands/run-project.md, stop--inline → route to inline execution per .claude/commands/run-project.md "Inline Execution" section. Load that section and follow itrun-project.shIf no arguments: error — project name required.
companies/{co}/projects/{project}/prd.json (use qmd search if needed)mkdir -p workspace/orchestrator/{project}cd ~/HQ && \
nohup bash scripts/run-project.sh {project} {passthrough_flags} --no-permissions \
> workspace/orchestrator/{project}/run.log 2>&1 &
echo "PID:$!"
Capture PID. Announce: Launched run-project.sh for {project} (PID {pid}). Monitoring progress...
Every ~30 seconds:
jq -r '.status' workspace/orchestrator/{project}/state.jsontail -n +{last_line} workspace/orchestrator/{project}/progress.txtkill -0 {pid} 2>/dev/null && echo "ALIVE" || echo "DEAD"in_progress + alive → continue pollingpaused → surface pause reason from run.log, prompt user: resume / abortcompleted → exit loop → Step 5run.log, report errorPoll ceiling: 4 hours. After that, offer to detach.
state.json + progress.txtworkspace/reports/{project}-summary.md if exists