Borrowing it
Nothing to install: this file belongs to SolaceProducts/solace-broker-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/SolaceProducts/solace-broker-mcp/main/.claude/skills/check-logs/SKILL.mdgit clone --depth 1 https://github.com/SolaceProducts/solace-broker-mcpWrote 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.
[](https://agentmods.dev/skills/solaceproducts/solace-broker-mcp/check-logs)<a href="https://agentmods.dev/skills/solaceproducts/solace-broker-mcp/check-logs"><img src="https://agentmods.dev/badge/skills/solaceproducts/solace-broker-mcp/check-logs/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.
<a href="https://agentmods.dev/skills/solaceproducts/solace-broker-mcp/check-logs"><img src="https://agentmods.dev/badge/skills/solaceproducts/solace-broker-mcp/check-logs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00027 | $0.01187 |
| Opus 5 | $0.00014 | $0.00593 |
| Sonnet 5 | $0.00005 | $0.00237 |
| Haiku 4.5 | $0.00003 | $0.00119 |
Grade A, and why
check-logs 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Check Logs
Scan Go code for logging security violations and compliance issues. Invoked with /check-logs.
When to use
- Before committing code
- After adding logging to a file
- As a periodic audit of the codebase
- When reviewing someone else's changes
Usage
/check-logs— scan the entire codebase/check-logs <file_path>— scan a specific file/check-logs staged— scan only git-staged files
Steps
Step 1: Read the rules
Read the secure logging rules at docs/secure-logging-rules.md in the project root. These are the rules you're checking against.
Step 2: Identify files to scan
Based on the invocation:
- No args: scan all
.gofiles undercmd/andinternal/ - File path: scan that file
staged: rungit diff --cached --name-only -- '*.go'and scan those files
Step 3: Run violation checks
For each file, check for the following violations in order of severity:
CRITICAL — Credential exposure
- C-01: Credentials in log calls — Any log call that includes
Password,Username,Token,Secret, orAuthorizationfield values - C-02: Raw struct logging —
slog.Any("key", someStruct)orlog.Printf("%+v", someStruct)where the struct is or contains a credential-carrying type (BrokerConfig,AuthConfig,ServerConfig,HTTPClient) - C-03: Config map logging — Logging
map[string]*BrokerConfigor the fullServerConfig.Brokersmap - C-04: Raw Authorization header — Logging the value of an
AuthorizationHTTP header - C-05: URL with credentials — Logging a URL that matches
://.*:.*@pattern
HIGH — Missing protections
- H-01: Missing LogValuer — Credential-carrying types (
AuthConfig,BrokerConfig, and any struct with password/token/secret fields) that don't implementslog.LogValuer - H-02: Missing ReplaceAttr — slog handler created without
ReplaceAttrsafety net - H-03: Stdout logging — Any log output directed to
os.Stdoutinstead ofos.Stderr - H-04: Old log package — Usage of
log.Printf,log.Println,log.Fatalf,log.Fatalinstead ofslog
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.
- 5d ago Changed beb3d32a9cd5
- 10d ago First seen · 116 lines · 27 tokens per session scan A ee3f059f538e
check-logs is a skill published in the GitHub repository SolaceProducts/solace-broker-mcp (11 stars, last pushed today), licensed Apache-2.0. It adds 27 tokens to every session and 1,187 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-30.
Other skills, from other repositories
mma-investigator
Expert system for investigating MMA (Multi-Metric Allocator) behavior on CockroachDB clusters. Helps oncall engineers diagnose load imbalances, understand rebalancing decisions, and identify why MMA did or didn't act.
pi-loop-forensics
Diagnose pi-go agent loops and degenerate turns — "agent loop aborted", runaway thinking with no tool calls, repeated phrases. Discriminates genuine model repetition collapse from a race, a tool-parse failure, or a too-low guard, and A/B replays a seed session across providers.
nightly-session-watch
Nightly sweep of the last 24h of pi-go sessions — anomalous runs, loop aborts, tool error rates, token waste, real prompt-token spend, and whether the observation and palace pipelines are still recording. Triages each finding to the specialist skill that diagnoses it. Use for an unattended daily health check, or on…
config-loader-helper
Diagnose configuration-related failures, enumerate required env vars, and guide safe local test setup (no secrets).
lsp-inspect
Full code quality audit for a file, package, or directory. Supports batch mode (directory walk with --top ranking), comparison mode (--diff for branch-only issues), severity calibration by blast radius, fix suggestions, and confidence tiers. Applies a check taxonomy (dead symbols, silent failures, error wrapping…
fix-suggester
Diagnose failures and propose minimal, test-backed fixes with verification and rollback instructions.