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.
npx skills add majiayu000/claude-skill-registry --skill axiom-audit --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Setup
- Usage
- Audit Process
- 1. Identify Dataset
- 2. Query Errors & Warnings
- 3. Prioritize Errors
- 4. Research Each Error
- 5. Flag Log Smells
- 6. Generate Report
- 7. Provide Summary
- Critical Rules
- Success Criteria
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-mcpWhat 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.
