Skip to content

Instantly share code, notes, and snippets.

View Furtim's full-sized avatar

David Furtim

View GitHub Profile
@Furtim
Furtim / docs.md
Last active April 14, 2026 03:37
Claude Commands

Generate Technical Documentation

Target: $ARGUMENTS

Parse $ARGUMENTS as follows:

  • Empty → ask what to document and what type (API reference / architecture / README / runbook / ADR)
  • File path(s) or glob → document those files; infer the best doc type from content
  • api <path> → API reference for that path
  • arch → architecture overview for the whole project
  • readme → module README for that directory
alias lf="find . -maxdepth 1 -exec du -sh {} \;"
alias pr="poetry run"
alias mkdir="mkdir -p" # Create parent directories if needed
alias grep="grep --color=auto" # Colorize grep output
alias cp="cp -i" # Confirm before overwriting
alias mv="mv -i" # Confirm before overwriting