Skip to main content

read-large-md

Read markdown files that are too large for the Read tool due to embedded base64 images. Use when Read fails with "exceeds maximum allowed size" on a .md file.

Aller à l'installation

Informations de source

Dépôt
AMindToThink/claude-code-settings
Dernière activité de la source
17 mars 2026 à 12:55
Langue détectée de SKILL.md
anglais
Étoiles
4
Forks
0

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
name
read-large-md
description
Read markdown files that are too large for the Read tool due to embedded base64 images. Use when Read fails with "exceeds maximum allowed size" on a .md file.
user-invocable
false
## Reading Large Markdown Files with Embedded Images Markdown files exported from Google Docs or similar tools often contain base64-encoded inline images (`![alt](data:image/png;base64,...)`) on single very long lines. These make the file hundreds of KB or millions of tokens, causing the Read tool to fail with "exceeds maximum allowed size" or "exceeds maximum allowed tokens." ### Technique Use **Grep** to extract only the text lines, filtering out image data: ``` Grep pattern="^[^!]" path="<file>" output_mode="content" head_limit=200 ``` This matches all lines that do NOT start with `!` (markdown image syntax), skipping the `![...](data:image/png;base64,...)` lines. ### Paginating through results Use `offset` and `head_limit` to read in chunks: ``` Grep pattern="^[^!]" path="<file>" output_mode="content" offset=0 head_limit=200 Grep pattern="^[^!]" path="<file>" output_mode="content" offset=200 head_limit=200 ``` ### Finding specific sections Search directly for section headers or keywords: ``` Grep pattern="## Theory of Change" path="<file>" output_mode="content" -A=30 ``` ### When to use this - Read tool fails on a `.md` file due to size - The file is known to contain embedded images (e.g., Google Docs export) - You need the text content but not the images
Voir sur GitHub