File adr
Pause, resume, edit, and audit Claude Code cron jobs (e.g. /loop) without losing state.
npx -y skills add thepictishbeast/claude-tools --skill file-adrAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Scaffold a new Architecture Decision Record (Nygard format) + update the ADR index. Picks the next NNN number, writes the file with frontmatter + standard section skeleton, adds the row to docs/adr/README.md. Use when a non-trivial design decision needs explicit sign-off.
SKILL.md
1.9 KB, 453 tokens by cl100k_base, as published. Nobody here has run it
/file-adr — scaffold an ADR + update the index
Thin wrapper around the file-adr binary (installed at
~/.local/bin/file-adr; built by install.sh). Binary owns:
next-number scan, file write, index-table update. Agent fills in
the body.
Steps
-
Invoke the binary:
file-adr --slug <kebab-case-slug> \ --title "<human-readable title>" \ [--tracker <task-id-or-issue>] \ [--status Proposed] \ [--adr-dir docs/adr]Stdout is the path of the new ADR file (e.g.
docs/adr/019-foo.md). The binary also appends a row todocs/adr/README.md. -
Open the new ADR file and fill in the body sections: Context · Decision framework · Proposal · Alternatives rejected · Acceptance criteria · Trade-offs accepted · Open questions for USER · Cross-references.
-
If the ADR closes a tracker task, mark that task in_progress via TaskUpdate (or completed if the ADR itself IS the deliverable).
-
Commit + push with message
[ADR-NNN + #<tracker>] propose <decision>.
Net visible tool calls per ADR
3–5 total: Bash (file-adr) + Read (open file) + Edit/Write
(fill body) + optional TaskUpdate + Bash (commit/push).
Down from ~8 in the prior manual flow (separate Write for ADR, Edit for README index, TaskUpdate, commit, push — plus mental overhead of picking the next number).
Constraints
--slugMUST be kebab-case lowercase ASCII (binary enforces).--adr-dirdefaults todocs/adr(per the LFI convention).- Status defaults to
Proposed— change toAcceptedonly after USER sign-off, in a separate commit.