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.

インストールへ移動

ソース情報

リポジトリ
AMindToThink/claude-code-settings
ソースの最終更新活動
2026年3月17日 12:55
検出された SKILL.md の言語
英語
スター
4
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
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
GitHubで見る