← ClaudeAtlas

proposal-actlisted

Accept, defer, dismiss, or resolve a proposal. For accepted proposals, asks how to proceed: start implementing now, create a session task, or note for manual implementation. Activates on messages like "accept PROP-", "dismiss PROP-", "defer PROP-", "resolve PROP-".
gtapps/claude-code-hermit · ★ 59 · AI & Automation · score 81
Install: claude install-skill gtapps/claude-code-hermit
# Proposal Act Take action on a proposal: accept, defer, dismiss, or resolve. ## Usage ``` /claude-code-hermit:proposal-act accept PROP-019 /claude-code-hermit:proposal-act defer PROP-015 /claude-code-hermit:proposal-act dismiss PROP-012 /claude-code-hermit:proposal-act resolve PROP-008 ``` If no action or ID is provided, ask the operator which proposal and action. ## Resolving a Proposal ID Before reading any proposal file, resolve the operator's input to a filename using this algorithm: 1. Trim whitespace and uppercase the input. 2. Match against `/^PROP-(\d+)(?:-(.+))?$/`. If no match: error "Not a PROP id." 3. Zero-pad the integer to 3 digits (e.g. `PROP-6` → `PROP-006`). 4. Build the glob pattern. Always anchor: never use bare `PROP-NNN*.md` (collides with 4-digit NNN files like `PROP-0061.md` once proposal counts cross 1000). - If no suffix (e.g. `PROP-006`): glob two anchored patterns and union the results: `PROP-006.md` (legacy exact match) plus `PROP-006-*.md` (new-format files with that integer). - If suffix present (e.g. `PROP-006-103612` or `PROP-006-capability-brainstorm-103612`): glob `PROP-006-*<suffix>*.md`. The leading `-*` brackets the slug for timestamp-only inputs; the trailing wildcard catches the `a`/`b`/… collision-suffix variant. The disambiguation prompt resolves any over-matches. 5. Glob `.claude-code-hermit/proposals/<pattern>` (or each pattern in turn for the two-pattern no-suffix case, then union). 6. Count the matches: - **0 match