log-audit

log-audit is a skill for Claude Code from parisgroup-ai/imersao-ia-setup. It costs 26 tokens per session (3,282 once invoked), scanned A, original, MIT.

A tool for reviewing error logs from Railway, log files, or a developer's terminal. Railway is a service for running and deploying applications.

In plain words
What is it for?
Use it to audit recent Railway logs, inspect log files, review terminal output, follow a trace ID, or run a focused personal-information check.
Why use it?
It helps find recurring errors, trace failures over time, and check logs for personal information or compliance concerns.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions AGENTS.md.

Part of the imersao plugin — 51 skills, 7 commands shipped together

Good fit Use it to audit recent Railway logs, inspect log files, review terminal output, follow a trace ID, or run a focused personal-information check.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/parisgroup-ai/imersao-ia-setup/log-audit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add parisgroup-ai/imersao-ia-setup --skill log-audit
Clone the repo
git clone --depth 1 https://github.com/parisgroup-ai/imersao-ia-setup

Made for: Claude Code.

Or install imersao, the plugin that ships this one along with the rest of its 51 skills, 7 commands.

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 log-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/log-audit/github.svg)](https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/log-audit)
Your own site
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/log-audit"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/log-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for log-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/log-audit"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/log-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,282 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 original No closer match found 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.00026 $0.03282
Opus 5 $0.00013 $0.01641
Sonnet 5 $0.00005 $0.00656
Haiku 4.5 $0.00003 $0.00328

Measured 12d ago against content hash 2517c774c2d3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

log-audit 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 12d 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.

plugins/imersao/skills/log-audit/SKILL.md · 421 lines

How it starts

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

Log Audit Skill

Auditoria completa de logs com detecção de padrões, análise de saúde, debugging assistido e verificação de compliance/PII.

Core Principle

Logs contam a história do sistema. Esta skill extrai insights acionáveis.

┌─────────────────────────────────────────────────────────────┐
│  FONTES           │  ANÁLISES          │  OUTPUT            │
├───────────────────┼────────────────────┼────────────────────┤
│  • Railway        │  • Padrões erro    │  • Relatório .md   │
│  • Arquivos .log  │  • Saúde/volume    │  • Tasks criadas   │
│  • Console dev    │  • Timeline trace  │  • Ações sugeridas │
│                   │  • PII/Compliance  │                    │
└───────────────────┴────────────────────┴────────────────────┘

Comandos

Comando Principal

/log-audit [subcommand] [options]

Subcomandos

Subcomando Descrição Exemplo
railway Logs do Railway (default) /log-audit railway --last 6h
file Arquivo ou glob pattern /log-audit file logs/*.log
console Output do terminal dev /log-audit console
trace Timeline de um traceId /log-audit trace abc123
pii Apenas verificação PII /log-audit pii --fix
health Apenas métricas saúde /log-audit health

Opções Globais

Opção Descrição Default
--last <duration> Período (1h, 6h, 24h, 7d) 1h
--service <name> Filtrar por serviço todos
--output, -o <path> Caminho do relatório docs/audits/
--format <md|json> Formato de saída md
--no-tasks Não criar tasks false
--severity <level> Severidade mínima all
--quiet, -q Apenas sumário false

Fluxo de Execução

┌─────────────────────────────────────────────────────────────┐
│  1. COLETA                                                   │
│     ├─ Railway: railway logs --json                         │
│     ├─ Arquivo: parse JSON/texto estruturado                │
│     └─ Console: buffer recente do terminal                  │
│                                                              │
│  2. PARSE                                                    │
│     ├─ Extrair campos: timestamp, level, message, etc.      │
│     ├─ Validar schema (@repo/logger)                        │
│     └─ Normalizar mensagens (remover IDs dinâmicos)         │
│                                                              │
│  3. ANÁLISE                                                  │
│     ├─ Agrupar erros por similaridade                       │
│     ├─ Calcular severidade                                  │
│     ├─ Detectar PII leaks                                   │
│     └─ Gerar métricas de saúde                              │
│                                                              │
│  4. OUTPUT                                                   │
│     ├─ Gerar relatório markdown                             │
│     ├─ Criar tasks para issues críticas                     │
│     └─ Exibir sumário no terminal                           │
└─────────────────────────────────────────────────────────────┘

Read the full file on GitHub · 421 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 421 lines · 26 tokens per session scan A 2517c774c2d3

Subscribe to this mod's changes

log-audit is a skill published in the GitHub repository parisgroup-ai/imersao-ia-setup (1 stars, last pushed 1mo ago), licensed MIT. It adds 26 tokens to every session and 3,282 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

architecture-optimization

Guided journey from a working codebase grown slow and tangled to one measurably fast, cleanly bounded, and readable. Orchestrates eight skills phase by phase - working-with-legacy-code, clean-architecture, software-design-philosophy, refactoring-patterns, system-design, ddia-systems, release-it, pragmatic-programmer …

wondelai/skills · 226 tokens

remove-technical-debt

Guided journey from a large aged codebase everyone fears to touch to one that is safe to change, legible, bounded, and resilient - paid down in place without a rewrite. Orchestrates eight skills phase by phase - working-with-legacy-code, refactoring-patterns, clean-code, software-design-philosophy, clean-architecture…

wondelai/skills · 224 tokens

release-it

Build production-ready systems with stability patterns: circuit breakers, bulkheads, timeouts, and retry logic. Use when the user mentions "production outage", "circuit breaker", "deployment pipeline", "chaos engineering", "retry storm", "health checks", "my service keeps crashing", "prevent cascading failures", or…

wondelai/skills · 131 tokens

top-design

Create award-winning, immersive web experiences at the level of Awwwards-featured agencies. Use when the user mentions "Awwwards quality", "make my site stunning", "scroll animations", "parallax storytelling", "cinematic web design", "portfolio site", or "brand experience". Also trigger when elevating a standard…

wondelai/skills · 113 tokens

traction-eos

Implement the Entrepreneurial Operating System (EOS) to align vision and execution across a company. Use when the user mentions "EOS", "Entrepreneurial Operating System", "V/TO", "quarterly rocks", "Level 10 meetings", "accountability chart", "IDS process", "my company feels chaotic", "we keep having the same…

wondelai/skills · 147 tokens

create-app

Guided journey from a raw app idea to a validated, cleanly architected first version that ships on a sustainable cadence. Orchestrates ten skills phase by phase - lean-startup, design-sprint, clean-architecture, domain-driven-design, clean-code, pragmatic-programmer, system-design, ios-hig-design, 37signals-way…

wondelai/skills · 217 tokens