agentsclimarketplace

File adr

Skill thepictishbeast/claude-tools/skills/file-adr

Pause, resume, edit, and audit Claude Code cron jobs (e.g. /loop) without losing state.

Install
npx -y skills add thepictishbeast/claude-tools --skill file-adr

Assembled 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

  1. 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 to docs/adr/README.md.

  2. 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.

  3. If the ADR closes a tracker task, mark that task in_progress via TaskUpdate (or completed if the ADR itself IS the deliverable).

  4. 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

  • --slug MUST be kebab-case lowercase ASCII (binary enforces).
  • --adr-dir defaults to docs/adr (per the LFI convention).
  • Status defaults to Proposed — change to Accepted only after USER sign-off, in a separate commit.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.