Borrowing it
Nothing to install: this file belongs to ingo-eichhorst/Irrlicht. 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/ingo-eichhorst/Irrlicht/main/.claude/skills/ir:sonarqube-report/SKILL.mdgit clone --depth 1 https://github.com/ingo-eichhorst/IrrlichtWrote 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/ingo-eichhorst/irrlicht/ir-sonarqube-report)<a href="https://agentmods.dev/skills/ingo-eichhorst/irrlicht/ir-sonarqube-report"><img src="https://agentmods.dev/badge/skills/ingo-eichhorst/irrlicht/ir-sonarqube-report/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/ingo-eichhorst/irrlicht/ir-sonarqube-report"><img src="https://agentmods.dev/badge/skills/ingo-eichhorst/irrlicht/ir-sonarqube-report.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.00165 | $0.01537 |
| Opus 5 | $0.00082 | $0.00768 |
| Sonnet 5 | $0.00033 | $0.00307 |
| Haiku 4.5 | $0.00016 | $0.00154 |
Grade A, and why
ir:sonarqube-report 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 11d 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 — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SonarQube Report (on demand)
SonarQube Cloud's issue search gives concrete, actionable findings — rule
key, file, line, message, and estimated fix effort — which is exactly
what CodeScene's hotspot API doesn't expose (see the removed
ir:codescene-report skill's history for why that mattered). This skill
fetches those issues on demand and hands back a short, readable summary.
Unlike CodeScene, there's no GitHub Actions round-trip: SONAR_TOKEN lives
in this repo's local .env (gitignored, never a CI secret), so
tools/sonarqube-report.sh runs directly.
Prerequisite
.env at the repo root must have SONAR_TOKEN, SONAR_ORGANIZATION, and
SONAR_PROJECT_KEY set (see .env.example). If any are missing, the
script fails fast with a clear message naming which one — report that
directly rather than guessing values.
Also: SonarQube Cloud has no equivalent of CodeScene's run-analysis
trigger. Fresh data depends on a scanner (sonar-scanner / a CI action)
having already run against this project — this skill only reads
whatever the last scan uploaded. If no CI scan is wired up yet, say so
rather than treating an empty/stale result as "no issues."
Workflow
1. Fetch
tools/sonarqube-report.sh
This defaults to issues/search scoped to the project, resolved=false
(only currently-open issues), sorted by severity descending (worst first),
page size 100.
2. Read the result
From each entry in the issues array, pull out:
component— strip the<SONAR_PROJECT_KEY>:prefix to get the repo-relative file pathline(ortextRange.startLine–textRange.endLineiflineis absent — some rule types, e.g. file-level ones, have no single line)rule— the rule key (e.g.go:S1192)message— usually already actionable on its own (e.g. "Reduce the number of returns of this function from 6 to at most 3")effort— estimated remediation time (e.g."2h1min")impacts— array of{softwareQuality, severity}(the current Clean Code taxonomy: MAINTAINABILITY / RELIABILITY / SECURITY × INFO/LOW/MEDIUM/HIGH/BLOCKER); prefer this over the older top-levelseverity/typefields when summarizingflows— if present and non-empty, this is a taint trace (source → sink across possibly multiple files/lines), not just noise. The one-linemessagealone is often too generic to act on for security-class rules (e.g.gosecurity:S2083's message is always "don't construct the path from user-controlled data" regardless of the actual data path) — for any BLOCKER/CRITICAL issue with a non-emptyflows, include the source→sink steps (each location'smsg+component/textRange) in the summary. Don't drop this for brevity; it's usually the only part that's actually actionable.
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.
- 11d ago First seen · 133 lines · 165 tokens per session scan A 6cc135f6d828
ir:sonarqube-report is a skill published in the GitHub repository ingo-eichhorst/Irrlicht (98 stars, last pushed today), licensed MIT. It adds 165 tokens to every session and 1,537 once invoked, about $0.0008 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
autoreview
Pre-commit/ship code review: Codex default; optional Claude or Pi.
omh-code-review
This is a Hermes-native code-review workflow skill.
revdiff-plan
Review the last Codex assistant message (plan, analysis, or proposal) with inline annotations in a TUI overlay. Extracts the most recent response from Codex rollout files and opens it in revdiff for review and annotation. Activates on "revdiff-plan", "review plan with revdiff", "annotate plan", "review last response"…
code-reviewer
Code review specialist focused on patterns, bugs, security, and performance.
full-repo-review
Comprehensive four-wave review of all repo source files, producing a prioritized issue backlog.
agent-teams-simplify-and-harden
Implementation + audit loop using parallel agent teams with structured simplify, harden, and document passes. Spawns implementation agents to do the work, then audit agents to find complexity, security gaps, and spec deviations, then loops until code compiles cleanly, all tests pass, and auditors find zero issues or…