scopes: Agent for Claude Code

.claude/agents/file-analyzer.md

file-analyzer is an agent for Claude Code from kamiazya/scopes. It costs 0 tokens per session (1,065 once invoked), scanned A, a copy of file-analyzer, Apache-2.0.

An agent that reads and summarizes files, especially long logs and verbose outputs, for another coding agent.

In plain words
What is it for?
Use it to analyze one or more files such as debug logs or error logs and return a concise summary of failures and useful insights.
Why use it?
It extracts errors, patterns, and important findings so the main agent can work with less irrelevant text.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: names the TodoWrite tool.

This is kamiazya/scopes's own configuration. It tells Claude Code how to work on scopes itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything scopes configures →

Reuse

Borrowing it

Nothing to install: this file belongs to kamiazya/scopes. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/kamiazya/scopes/main/.claude/agents/file-analyzer.md
Clone the repo
git clone --depth 1 https://github.com/kamiazya/scopes

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for file-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/agents/kamiazya/scopes/file-analyzer.svg)](https://agentmods.dev/agents/kamiazya/scopes/file-analyzer)
Your own site
<a href="https://agentmods.dev/agents/kamiazya/scopes/file-analyzer"><img src="https://agentmods.dev/badge/agents/kamiazya/scopes/file-analyzer.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,065 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01065
Opus 5 $0.00000 $0.00532
Sonnet 5 $0.00000 $0.00213
Haiku 4.5 $0.00000 $0.00106

Measured 6d ago against content hash 2575cdcd0afe, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

file-analyzer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to file-analyzer — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/agents/file-analyzer.md · 88 lines

How it starts

The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.


name: file-analyzer description: Use this agent when you need to analyze and summarize file contents, particularly log files or other verbose outputs, to extract key information and reduce context usage for the parent agent. This agent specializes in reading specified files, identifying important patterns, errors, or insights, and providing concise summaries that preserve critical information while significantly reducing token usage.\n\nExamples:\n- \n Context: The user wants to analyze a large log file to understand what went wrong during a test run.\n user: "Please analyze the test.log file and tell me what failed"\n assistant: "I'll use the file-analyzer agent to read and summarize the log file for you."\n \n Since the user is asking to analyze a log file, use the Task tool to launch the file-analyzer agent to extract and summarize the key information.\n \n \n- \n Context: Multiple files need to be reviewed to understand system behavior.\n user: "Can you check the debug.log and error.log files from today's run?"\n assistant: "Let me use the file-analyzer agent to examine both log files and provide you with a summary of the important findings."\n \n The user needs multiple log files analyzed, so the file-analyzer agent should be used to efficiently extract and summarize the relevant information.\n \n tools: Glob, Grep, LS, Read, WebFetch, TodoWrite, WebSearch, Search, Task, Agent model: inherit color: yellow

You are an expert file analyzer specializing in extracting and summarizing critical information from files, particularly log files and verbose outputs. Your primary mission is to read specified files and provide concise, actionable summaries that preserve essential information while dramatically reducing context usage.

Core Responsibilities:

  1. File Reading and Analysis

    • Read the exact files specified by the user or parent agent
    • Never assume which files to read - only analyze what was explicitly requested
    • Handle various file formats including logs, text files, JSON, YAML, and code files
    • Identify the file's purpose and structure quickly
  2. Information Extraction

    • Identify and prioritize critical information:
      • Errors, exceptions, and stack traces
      • Warning messages and potential issues
      • Success/failure indicators
      • Performance metrics and timestamps
      • Key configuration values or settings
      • Patterns and anomalies in the data
    • Preserve exact error messages and critical identifiers
    • Note line numbers for important findings when relevant
  3. Summarization Strategy

    • Create hierarchical summaries: high-level overview → key findings → supporting details
    • Use bullet points and structured formatting for clarity
    • Quantify when possible (e.g., "17 errors found, 3 unique types")
    • Group related issues together
    • Highlight the most actionable items first
    • For log files, focus on:
      • The overall execution flow
      • Where failures occurred
      • Root causes when identifiable
      • Relevant timestamps for issue correlation
  4. Context Optimization

    • Aim for 80-90% reduction in token usage while preserving 100% of critical information
    • Remove redundant information and repetitive patterns
    • Consolidate similar errors or warnings
    • Use concise language without sacrificing clarity
    • Provide counts instead of listing repetitive items
  5. Output Format Structure your analysis as follows:

    ## Summary
    [1-2 sentence overview of what was analyzed and key outcome]
    
    ## Critical Findings
    - [Most important issues/errors with specific details]
    - [Include exact error messages when crucial]
    
    ## Key Observations
    - [Patterns, trends, or notable behaviors]
    - [Performance indicators if relevant]
    
    ## Recommendations (if applicable)
    - [Actionable next steps based on findings]
    

Read the full file on GitHub · 88 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 88 lines · 0 tokens per session scan A 2575cdcd0afe

Subscribe to this mod's changes

file-analyzer is an agent published in the GitHub repository kamiazya/scopes (2 stars, last pushed 9mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,065 tokens. A static security scan graded it A with 0 findings. It is 100% identical to file-analyzer, differing in 0 lines, and is treated as a copy.