analysis-issues

analysis-issues is a skill for Claude Code from Qualimetry/claude-code-qualimetry-ai-app. It costs 63 tokens per session (2,268 once invoked), scanned A, original, Apache-2.0.

A workflow for retrieving rule-based reports about bugs, security weaknesses, and code quality problems in a repository branch. It requires Qualimetry Enterprise and can work with a whole branch or pull request.

In plain words
What is it for?
Use it to inspect, prioritise, and resolve reported bugs, vulnerabilities, and code smells in individual files or batches.
Why use it?
It helps turn a large analysis report into a prioritised list of issues to investigate and clear.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument.

Part of the qualimetry-ai-app plugin — 5 skills, 6 commands, 1 agent, 1 hook shipped together

Good fit Use it to inspect, prioritise, and resolve reported bugs, vulnerabilities, and code smells in individual files or batches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/qualimetry/claude-code-qualimetry-ai-app/analysis-issues
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 Qualimetry/claude-code-qualimetry-ai-app --skill analysis-issues
Clone the repo
git clone --depth 1 https://github.com/Qualimetry/claude-code-qualimetry-ai-app

Made for: Claude Code.

Or install qualimetry-ai-app, the plugin that ships this one along with the rest of its 5 skills, 6 commands, 1 agent, 1 hook.

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 analysis-issues

README.md
[![agentmods](https://agentmods.dev/badge/skills/qualimetry/claude-code-qualimetry-ai-app/analysis-issues.svg)](https://agentmods.dev/skills/qualimetry/claude-code-qualimetry-ai-app/analysis-issues)
Your own site
<a href="https://agentmods.dev/skills/qualimetry/claude-code-qualimetry-ai-app/analysis-issues"><img src="https://agentmods.dev/badge/skills/qualimetry/claude-code-qualimetry-ai-app/analysis-issues.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,268 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.00063 $0.02268
Opus 5 $0.00032 $0.01134
Sonnet 5 $0.00013 $0.00454
Haiku 4.5 $0.00006 $0.00227

Measured 2d ago against content hash 678751aff45e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

analysis-issues 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 2d 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/qualimetry-ai-app/skills/analysis-issues/SKILL.md · 139 lines

How it starts

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

Rules-Based Analysis Issues

When tasked with triaging or clearing rules-based analysis issues (bugs, vulnerabilities, code smells) for a repository, follow this workflow.

Step 1: Gather Repository Information

Determine the repositoryName and branchName:

repositoryName — the repository name in owner/repo-name format (e.g., organisation/my-project). The server is case-insensitive and handles .git suffixes automatically.

analysisName (optional) — if the repository is a mono-repo with multiple analysis projects, provide the analysis project name to disambiguate. Case-insensitive. Leave empty for single-project repositories. If omitted and multiple projects are found, the server returns an error listing the available analysis names.

branchName — run this shell command:

git branch --show-current

This returns the branchName (e.g., main, develop, feature/login-page).

pullRequest (optional) — to retrieve the issues raised on a pull request's new code instead of the whole branch, supply the PR number. Resolve it for the current branch using standard git only — no GitHub/Azure/Bitbucket CLI required. Every major host advertises the PR as a ref whose head equals the source-branch tip, so match the branch's remote head SHA against those refs:

BRANCH=$(git branch --show-current)
SHA=$(git ls-remote origin "refs/heads/$BRANCH" | cut -f1)
git ls-remote origin "refs/pull/*/head" "refs/merge-requests/*/head" "refs/pull-requests/*/from" \
  | awk -v s="$SHA" '$1==s{print $2; exit}' | grep -oE '[0-9]+' | head -1

This covers GitHub (refs/pull/<n>/head), GitLab (refs/merge-requests/<n>/head) and Bitbucket Server (refs/pull-requests/<n>/from). If it prints nothing — the branch is not pushed, or the host does not expose PR refs over git (e.g. Bitbucket Cloud, Azure DevOps) — omit pullRequest and query the branch.

branchName and pullRequest are mutually exclusive — when pullRequest is set the branch filter is ignored and only the pull-request's new-code issues are returned.

Read the full file on GitHub · 139 lines

Files

What ships with it

1 file 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. 2d ago Changed · +27 lines · +14 tokens per session 678751aff45e
  2. 7d ago First seen · 112 lines · 49 tokens per session scan A c69410d16aa1

Subscribe to this mod's changes

analysis-issues is a skill published in the GitHub repository Qualimetry/claude-code-qualimetry-ai-app (1 stars, last pushed 2d ago), licensed Apache-2.0. It adds 63 tokens to every session and 2,268 once invoked, about $0.0003 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

roslyn-query

Query .NET/C# codebases using Roslyn AST analysis via dotnet run file. Use for tracing data flow, auditing API usage, finding pattern violations, or ad-hoc codebase queries.

NikiforovAll/claude-code-rules · 44 tokens

mobile-flows-maestro

This skill should be used when Maestro is explicitly requested or already present and the task is to author, run, or debug iOS/Android Maestro flows; use Maestro MCP; or handle Maestro selectors, system UI, permissions, Keychain, JavaScript, waits, device state, flakiness, or CI. Evidence includes a .maestro directory…

johnkozaris/jko-claude-plugins · 102 tokens

esp32-expert

This skill should be used for ESP32-specific hardware and runtime work in ESP-IDF, Arduino-ESP32, or PlatformIO projects: target/build detection, FreeRTOS tasks and ISRs, memory/DMA, peripherals, power, networking/security, OTA, crash diagnosis, and unattended reliability. Trigger on "debug this ESP32 crash", "review…

johnkozaris/jko-claude-plugins · 137 tokens

analyze-github-issue

A workflow for deeply assessing one GitHub issue, including whether it is a real bug or a reasonable feature request.

TNT-Likely/honeycomb · 166 tokens

bug-finder

Hunt for one real, previously unreported defect and file it as a well-evidenced ticket — proactive discovery, not reactive diagnosis. INVOKE when asked to sweep code for bugs or hunt risky areas, and when /sonu:factory runs a bug-hunt pass. A known symptom is [[debugging]]; a pending diff is [[self-review]]. It files…

PrabhdeepSingh/claude-plugins · 94 tokens

aggregated-research

Run a multi-source research sweep whose findings survive review — ordered cheapest-refutable-first, with a control arm on every null result and the channel checked before any tracker null is believed. Use whenever a question needs an answer from outside this repo: is this a known bug upstream, what do other projects…

ray-manaloto/claude-code-marketplace · 121 tokens