Agent skill · Security

axiom-audit

Audit Axiom logs to identify and prioritize errors and warnings, research probable causes, and flag log smells. Use when user asks to check Axiom logs, analyze production errors, investigate log issues, or audit logging patterns.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill axiom-audit --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: BashReadGrepWrite
Path: skills/analysis/axiom-audit/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Axiom Logs Audit Skill Systematically audit Axiom logs to identify, prioritize, and research errors and warnings. ## Setup **Install axiom-mcp:** ```bash go install github.com/axiomhq/axiom-mcp@latest ``` **Install mcptools:** ```bash # macOS brew tap f/mcptools brew install mcp # Windows/Linux go install github.com/f/mcptools/cmd/mcptools@latest ``` **Set credentials:** ```bash export AXIOM_TOKEN="xaat-your-token" export AXIOM_ORG_ID="your-org-id" # Optional ``` Find credentials in repo: ```bash grep -r "AXIOM" . --include="*.env*" --include="*.config.*" ``` ## Usage **List datasets:** ```bash mcp call listDatasets --params '{"arguments":{}}' ~/go/bin/axiom-mcp ``` **Query APL:** ```bash # Query errors mcp call queryApl --params '{"arguments":{"dataset":"logs","apl":"['\''now-24h'\'':now] | where level == \"error\" | summarize count() by message"}}' ~/go/bin/axiom-mcp # Query warnings mcp call queryApl --params '{"arguments":{"dataset":"logs","apl":"['\''now-24h'\'':now] | where level == \"warn\" | summarize count() by message"}}' ~/go/bin/axiom-mcp ``` **Interactive shell (recommended for multiple queries):** ```bash mcp shell ~/go/bin/axiom-mcp ``` ## Audit Process ### 1. Iden

What's inside
Steps it walks through
  1. Setup
  2. Usage
  3. Audit Process
  4. 1. Identify Dataset
  5. 2. Query Errors & Warnings
  6. 3. Prioritize Errors
  7. 4. Research Each Error
  8. 5. Flag Log Smells
  9. 6. Generate Report
  10. 7. Provide Summary
  11. Critical Rules
  12. Success Criteria
Ships with 1 file
  • metadata.json
Commands it runs
go install github.com/axiomhq/axiom-mcp@latest
macOS
brew tap f/mcptools
brew install mcp
Windows/Linux
go install github.com/f/mcptools/cmd/mcptools@latest
export AXIOM_TOKEN="xaat-your-token"
export AXIOM_ORG_ID="your-org-id"  # Optional
grep -r "AXIOM" . --include="*.env*" --include="*.config.*"
mcp call listDatasets --params '{"arguments":{}}' ~/go/bin/axiom-mcp
More from claude-skill-registry
All skills →
About this skill
What does the axiom-audit skill do?

Audit Axiom logs to identify and prioritize errors and warnings, research probable causes, and flag log smells. Use when user asks to check Axiom logs, analyze production errors, investigate log issues, or audit logging patterns.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill axiom-audit --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going