Large tool response summarization
Skill kjuhwa/skills-hub/skills/agent-sdk/large-tool-response-summarization
Self-correcting knowledge corpus for Claude Code — 9 stable shape clusters, bias-correction pipeline baked into contribution flow. 47 papers, 45 techniques, 1.1k skills.
npx -y skills add kjuhwa/skills-hub --skill large-tool-response-summarizationAssembled 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
When a tool result exceeds a token threshold, save the full response to disk under the session dir, feed it to a cheap summarizer (Haiku) with an intent-aware prompt, and return the summary + file reference to the agent.
SKILL.md
3.4 KB, 708 tokens by cl100k_base, as published. Nobody here has run it
Large tool response summarization
When to use
- Agent calls tools that can return 60KB+ of output (log fetches, DB dumps, API list responses).
- Feeding the full response into the LLM wastes tokens and pushes context window limits.
- Want the agent to still be able to Read/Grep the full result afterward.
How it works
- After the tool runs, estimate tokens:
Math.ceil(text.length / 4)(close enough, cheap). - If under
TOKEN_LIMIT(~15000 tokens = ~60KB): return as-is. - If over: save full response to
<sessionDir>/long_responses/<timestamp>_<toolName>.<ext>- deterministic filename so it's greppable later. - If response is detectable binary (base64-encoded image/PDF, detected via magic-byte signature): save the binary directly with the right extension.
- If text is under
MAX_SUMMARIZATION_INPUT(~100k tokens = ~400KB): run a small LLM (Haiku, Gemini Flash, etc.) with a prompt that includes the tool's_intentmetadata (seemcp-tool-intent-metadata-injection). - If text is over the summarization limit: skip LLM call; return head + tail preview + file path.
- Return to the agent a synthetic tool result like:
<summary...> Full response saved to: long_responses/<file> (<bytes> bytes) Use Read/Grep to inspect details. - Keep the saved path relative to session dir so sessions stay portable when moved.
Example
export const TOKEN_LIMIT = 15000;
export const MAX_SUMMARIZATION_INPUT = 100000;
async function guardLargeResult(text: string, opts: { sessionDir, tool, intent, runMini }) {
const tokens = estimateTokens(text);
if (tokens <= TOKEN_LIMIT) return text;
const { absolutePath, relativePath } = saveToDisk(text, opts.sessionDir, opts.tool);
if (tokens > MAX_SUMMARIZATION_INPUT) {
return `[truncated - ${formatBytes(text.length)} saved to ${relativePath}]\n\n` +
text.slice(0, 2000) + '\n...\n' + text.slice(-2000);
}
const summary = await opts.runMini({
prompt: `Tool intent: ${opts.intent}\nSummarize this output focused on that intent:\n${text}`,
model: 'haiku',
});
return `${summary}\n\nFull response: ${relativePath} (${formatBytes(text.length)})`;
}
Gotchas
- Detect binary BEFORE trying to summarize - dumping 2MB of base64 into Haiku is both wasteful and unhelpful.
- Use the tool's
_intentfield (see related skill) in the summarizer prompt so summaries keep the user's goal in view. - Save to a session-scoped directory, not a global temp - the agent should be able to Read/Grep it later in the same session.
- Keep
TOKEN_LIMITgenerous (15k) - too aggressive means the agent loses fidelity on medium-size responses. - Use
sessionPath-portable tokens (e.g.{{SESSION_PATH}}) so moving the session dir later still resolves paths.