boiler-updatelisted
Install: claude install-skill orassayag/agentic-project-workflow
# /boiler-update — Boilerplate, Rule/Skill & Cookbook Updater
## Invocation
```
/boiler-update <boilerplate-name|all> <description of the change>
/boiler-update --file <path-to-issues-file>
```
- `<boilerplate-name>` — apply only to that one boilerplate (e.g. `/boiler-update api-express
tests should live in __tests__ folders next to their source file`).
- `all` — apply to every boilerplate in the bank (e.g. `/boiler-update all tests should live in
__tests__ folders next to their source file`).
- `--file <path>` — batch mode: process a file of issue blocks, one at a time, each through the
identical single-issue workflow. See "Batch File Mode" below.
The first token is checked literally against this syntax before falling back to natural-language
inference in Step 1 — so `all` as the first word always means "every boilerplate," not "always"
in some looser sense. If the first token isn't `all` and doesn't match a known boilerplate name,
fall through to Step 1's natural-language parsing (the command still works without the shorthand,
e.g. "update the cookbook for api-express to...").
## Batch File Mode
### Detection
Before any single-description parsing, check for batch mode. The invocation is **batch mode**
when either:
- it is `/boiler-update --file <path>`, or
- the first (and only) argument resolves to an existing file ending in `.txt` or `.md`
(so `/boiler-update ./issues.md` works without the flag).
Otherwise fall through **unchanged** to the single-descript