# Send Chief Feature Workflow to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "chief-feature",
    "name": "Chief Feature Workflow",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nogara/chief-feature",
    "canonicalUrl": "https://clawhub.ai/nogara/chief-feature",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/chief-feature",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chief-feature",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/chief-commands.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "chief-feature",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T10:01:12.856Z",
      "expiresAt": "2026-05-08T10:01:12.856Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chief-feature",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chief-feature",
        "contentDisposition": "attachment; filename=\"chief-feature-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "chief-feature"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/chief-feature"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/chief-feature",
    "downloadUrl": "https://openagent3.xyz/downloads/chief-feature",
    "agentUrl": "https://openagent3.xyz/skills/chief-feature/agent",
    "manifestUrl": "https://openagent3.xyz/skills/chief-feature/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/chief-feature/agent.md"
  }
}
```
## Documentation

### Chief Feature Workflow

Chief is an AI-driven development loop: reads a prd.json, implements user stories one by one via Claude Code, commits each, and tracks progress.

### 1. Clone / verify repo

Confirm the project is cloned locally.

### 2. Create a new PRD

Run interactively in the project root:

cd <project>
chief new <prd-name>

Chief launches Claude Code in PRD-writer mode. It will ask clarifying questions with lettered options. Provide:

The full feature description / spec
Answers to clarifying questions (e.g. "1A, 2C, 3D")

When Chief asks "Do you want to create prd.md?" — approve (option 1 or 2).

Chief converts prd.md → prd.json on /exit. Watch for:

✓ PRD converted successfully

Files land at: .chief/prds/<prd-name>/prd.md and prd.json

### 3. Create a worktree + branch

git worktree add ../<project>-<prd-name> -b feat/<prd-name>
mkdir -p ../<project>-<prd-name>/.chief/prds/<prd-name>
cp .chief/prds/<prd-name>/prd.{md,json} ../<project>-<prd-name>/.chief/prds/<prd-name>/

### 4. Commit the PRD

cd ../<project>-<prd-name>
git add .chief/prds/<prd-name>/prd.md
git commit -m "docs: add <prd-name> PRD"

Only commit prd.md — prd.json is typically gitignored.

### 5. Delegate to a subagent (recommended for long runs)

Instead of running Chief manually and polling, spawn a subagent to handle the full implementation autonomously:

Spawn a subagent with this task:
- Working directory: ~/<project>-<prd-name>
- Run \`chief <prd-name>\` with pty:true
- Press \`s\` to start the loop
- Approve bash prompts with \`1\` + Enter (or \`2\` to always allow)
- If stuck on a prompt, send hex \`0d\` (Enter)
- Poll until all stories show ✓ (100%)
- Commit progress.md, push, open PR
- Announce the PR URL when done

The subagent runs fully isolated and auto-announces on completion. You can spawn multiple subagents in parallel — one per PRD/worktree — for concurrent feature development.

Parallel runs: 2–3 concurrent subagents is the practical sweet spot. Each Chief run is API-heavy (runs Claude Code under the hood), so more than 3 parallel runs risks rate limits and high cost.

### 5b. Run Chief manually (alternative)

If you prefer to supervise directly:

chief <prd-name>

Press s in the TUI to start. Chief works through stories in priority order, runs verification (make test, pnpm typecheck, etc.), commits each passing story, and updates progress.md.

Monitor via process(action=poll) on the PTY session. Watch for **US-00X is complete**.

### 6. Commit progress + push

git add .chief/prds/<prd-name>/progress.md
git commit -m "docs: add <prd-name> progress"
git push -u origin feat/<prd-name>

### 7. Open a PR

gh pr create \\
  --title "feat: <prd-name>" \\
  --body "Implements the <prd-name> PRD. See .chief/prds/<prd-name>/prd.md for spec." \\
  --base main

### 8. Clean up the worktree

After the PR is merged:

cd <project>
git worktree remove ../<project>-<prd-name>
git branch -d feat/<prd-name>

Use git worktree remove --force if the directory has uncommitted changes.

### Tips

TUI bash prompts: use 1 (Yes) or 2 (Yes, always allow)
If stuck on a permission prompt, send hex: ["0d"] via process(send-keys)
If a story fails, Chief retries or logs the failure in progress.md
prd.json is typically gitignored — only commit prd.md and progress.md
Chief resumes automatically from the last completed story if restarted

### Reference

See references/chief-commands.md for CLI commands, TUI keyboard shortcuts, and official links.

### About Chief

Chief is an open-source AI-driven development loop built by minicodemonkey.

Website: https://chiefloop.com/
GitHub: https://github.com/minicodemonkey/chief
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nogara
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T10:01:12.856Z
- Expires at: 2026-05-08T10:01:12.856Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/chief-feature)
- [Send to Agent page](https://openagent3.xyz/skills/chief-feature/agent)
- [JSON manifest](https://openagent3.xyz/skills/chief-feature/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/chief-feature/agent.md)
- [Download page](https://openagent3.xyz/downloads/chief-feature)