skills/read-entire/SKILL.md
Read the entirety of one or more files without skipping or chunking. Use when the user wants you to read complete files and not summarize or truncate.
npx skillsauth add AMindToThink/claude-code-settings read-entireInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The user has explicitly asked you to read one or more files in their entirety. This is a deliberate, conscious request. Do NOT:
head, tail, or limited line rangesRead with no offset or limit parameters.offset and limit, reading sequential chunks until you reach the end. Do not stop after the first chunk.Example for a 6000-line file:
Read file_path="..." offset=0 limit=2000
Read file_path="..." offset=2000 limit=2000
Read file_path="..." offset=4000 limit=2000
.md files that fail due to embedded base64 images, use the read-large-md skill technique.If the user provides multiple file paths, read ALL of each file completely. Launch parallel Read calls when possible.
Only after you have read the complete contents of every requested file should you proceed with whatever task the user has asked you to do. Do not start working on the task with partial file contents.
Pass the file paths as arguments. Example: /read-entire path/to/file1.tex path/to/file2.md
If no file paths are given, ask the user which files to read.
development
Use when the user asks to check, audit, or improve a website or web project for accessibility (a11y), WCAG compliance, screen reader support, keyboard navigation, color contrast, or alt text. Triggers a plan-mode investigation against the TeachAccess design and code checklists, then implements approved fixes.
development
--- name: make-anonymous-branch description: Use when preparing a research repo for double-blind submission via anonymous.4open.science (ICML/NeurIPS/ICLR/workshop). Builds a single `anon-submission` branch with code+data+paper, scrubs identity leaks (author names, home paths, emails, wandb metadata, PDF author fields), patches LaTeX for pdf.js compatibility, and leaves `main` untouched. Triggers: "make an anonymous branch", "anonymize my repo for X submission", "set up anonymous.4open.science",
development
Translate math (formulas, estimators, algorithms) into code so the implementation faithfully matches what the source actually specifies. Use when writing code from a formula, reviewing an LLM-generated implementation of a formula, debugging a numerical mismatch with a paper, designing a new metric/estimator, or refactoring an existing math-heavy computation. Especially load-bearing whenever aggregation operators (sums, means, expectations, products, geometric means) appear over indices that can be reordered, or whenever the same English label can refer to multiple non-equivalent estimators (e.g. ratio-of-means vs mean-of-ratios, micro-average vs macro-average, sample-weighted vs unweighted). Prevents the failure mode where a code path silently implements the wrong estimator under the same name as the intended one.
development
Use when the user asks to review, find, summarize, or check Claude Code chat transcripts from a past date or time range ("review my chats from May 1st", "what was I working on yesterday", "any unfinished sessions this week"). Reads transcripts under `~/.claude/projects/`, handles local-time vs UTC correctly so late-evening sessions don't get dropped, and flags chats whose last assistant turn looks like an unanswered question.