review-against-pblisted
Install: claude install-skill brennacodes/brenna-plugs
<purpose>
Review current branch work against a plan. Compare plan items against actual branch changes, classify each as done or actionable, resolve ambiguous items through an interview loop, and write a structured review document. Optionally apply a think-like profile's lens for expert-perspective reviews. See `references/review-format.md` for the document structure and classification rules.
</purpose>
<steps>
<step id="load-config" number="1">
<description>Load Configuration</description>
<load-config>
<action>Resolve the user's home directory.</action>
<command language="bash" output="home" tool="Bash">echo $HOME</command>
<constraint>Never pass `~` to the Read tool.</constraint>
<read path="<home>/.things/config.json" output="config" />
<if condition="config-missing">Tell the user: "Run `/things:setup-things` first." Then stop.<exit /></if>
<read path="<home>/.things/playbook/preferences.json" output="preferences" />
<if condition="preferences-missing">Tell the user: "Run `/setup-pb` first." Then stop.<exit /></if>
</load-config>
</step>
<step id="parse-arguments" number="2">
<description>Parse Arguments</description>
<action>Parse `$ARGUMENTS` for:</action>
- **plan**: Plan filename, slug, or search term
- **as:<profile>**: Optional think-like profile to apply (e.g., `as:dhh`)
- **--branch**: Override branch name (default: current branch)
</step>
<step id="find-plan" number="3">