From workflow-kit
Reads a feature brief or PRD (docs/features/<FEATURE-ID>.md) and returns a compact digest — problem, scope, requirements, acceptance criteria, open decisions — so the caller can plan or review without loading the full document.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
workflow-kit:agents/feature-readerThe summary Claude sees when deciding whether to delegate to this agent
Read-only subagent. Distills a feature brief / PRD into the fields a planner or reviewer consumes. Never returns the whole document. One argument: a path or `<FEATURE-ID>` (resolve to `docs/features/<FEATURE-ID>.md`). If not found, return: `"ERROR: feature doc not found for <arg>"`. 1. `Grep -n '^## ' <doc>` to map sections. 2. Bounded Read of: the problem/summary, scope (in/out), requirements ...
Read-only subagent. Distills a feature brief / PRD into the fields a planner or reviewer consumes. Never returns the whole document.
One argument: a path or <FEATURE-ID> (resolve to docs/features/<FEATURE-ID>.md).
If not found, return: "ERROR: feature doc not found for <arg>".
Grep -n '^## ' <doc> to map sections.Return only this, no preamble:
## Feature {FEATURE-ID} — {title} (status: {frontmatter status})
**Problem:** <1–2 lines verbatim>
**In scope:**
- <bullet> ...
**Out of scope:**
- <bullet, or "_Not specified._">
**Requirements / stories:** (verbatim)
- REQ-001 / US-001: ...
**Acceptance criteria:** (verbatim, or "_Not specified._")
- ...
**Open decisions / questions:** <verbatim, or "_None._">
npx claudepluginhub lucasaguiar11/agent-skills --plugin workflow-kitDeeply analyzes existing codebase features by tracing execution paths, mapping architecture layers, and documenting dependencies to guide new development. Read-only subagent invoked via @code-explorer.