ワンクリックで
harvest
Decomposes a reviewed implementation plan into backlog feature/task/subtask hierarchy
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Decomposes a reviewed implementation plan into backlog feature/task/subtask hierarchy
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Browser automation skill. Drives agent-browser through structured navigate→snapshot→interact→re-snapshot flows with authentication support, form automation, visual verification, and explicit human checkpoints for external flows.
Autonomous iterative experimentation loop. Defines a measurable goal, establishes a baseline, then iterates modify→commit→measure→keep/revert until the goal is met or the budget is exhausted. Persists a TSV experiment log under the configured results directory.
GI/GR reconciliation gate for shipment manifests — verifies every manifest item exists in queue (pre-mode) or archive (post-mode) with the expected status before or after backlogit_ship_shipment runs.
On-demand harness health diagnostic. Checks manifest presence, version drift, file integrity, cross-reference validity, MCP tool availability, and template variable residue. Produces a per-category graded health report.
Multi-phase security audit skill. Scans agentic config surfaces and application source for OWASP Top 10 vulnerabilities, STRIDE threats, and config hygiene issues. Produces a scored, graded report persisted to the configured security docs directory (default: docs/security).
Scaffolds compilable but failing test harnesses for feature and chore tasks
SOC 職業分類に基づく
| name | harvest |
| description | Decomposes a reviewed implementation plan into backlog feature/task/subtask hierarchy |
| argument-hint | plan=docs/plans/{YYYY-MM-DD}-{slug}-plan.md |
| input | {"properties":{"plan":{"type":"string","description":"Path to the reviewed implementation plan"},"dry_run":{"type":"boolean","description":"When true, output the planned structure without creating entries"}},"required":["plan"]} |
The harvest skill turns a reviewed implementation plan into backlog
feature, task, and subtask items. It is the reusable decomposition step
invoked by the stage agent.
This skill does not perform planning or review. It assumes the incoming plan has already been reviewed or otherwise approved for decomposition.
When the agent-intercom capability pack is installed, call ping at
session start. If reachable, broadcast at every step. If unreachable,
warn the operator that visibility is degraded and continue locally.
| Event | Level | Message prefix |
|---|---|---|
| Session start | info | [HARVEST] Starting: plan={input.plan} |
| Plan accepted | info | [HARVEST] Using reviewed plan: {plan_path} |
| Structure parsed | info | [HARVEST] Parsed implementation units: {unit_count} |
| Dry run | info | [HARVEST] Dry run: {feature_count} features, {task_count} tasks, {subtask_count} subtasks |
| Feature created | info | [HARVEST] Created feature: {feature_id} — {title} |
| Task created | info | [HARVEST] Created task: {task_id} — {title} |
| Dependency wired | info | [HARVEST] Dependency: {item_id} blocked by {depends_on} |
| Complete | success | [HARVEST] Complete: {feature_count} features, {task_count} tasks, {subtask_count} subtasks |
${input:plan}: (Required) Path to the reviewed implementation plan.${input:dry_run:false}: (Optional, defaults to false) Preview the
planned hierarchy without creating entries.${input:plan} in full.plan-review first when the
review state is unclear.Extract the planning data needed for decomposition:
Use repository search tools to validate file references or symbols when the plan mentions existing code locations that need confirmation.
Map the plan into the backlog hierarchy:
Before creating anything, apply backlog shaping rules:
If ${input:dry_run} is true:
If ${input:dry_run} is false:
backlogit_list_items or backlogit_search_items to check for existing
items with matching titles.backlogit_create_item or
backlogit add --type {{artifact_type}} --title {{title}}.This skill operates at Tier 2 (Standard) — backlog decomposition is structured and deterministic.