← ClaudeAtlas

progress-pblisted

Show progress dashboard for a specific plan or all active plans - done/actionable counts, latest review dates, branch status, and quick action suggestions.
brennacodes/brenna-plugs · ★ 1 · Testing & QA · score 70
Install: claude install-skill brennacodes/brenna-plugs
<purpose> Show a progress dashboard for active plans. When given a specific plan, show detailed item-level progress. When run without arguments, show an overview of all non-completed plans with progress bars and status summaries. </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> <read path="<home>/.things/playbook/index.json" output="index" /> </load-config> </step> <step id="determine-scope" number="2"> <description>Determine Scope</description> <if condition="plan-argument-provided"> <action>Find the specific plan and show detailed view.</action> </if> <if condition="no-argument"> <action>Show overview of all non-completed plans.</action> </if> </step> <step id="gather-progress-data" number="3"> <description>Gather Progress Data</description> <action>For each plan in scope:</ac