qauth: Skill for Claude Code

.claude/skills/investigate-issue/SKILL.md

investigate-issue is a skill for Claude Code from qauth-labs/qauth. It costs 21 tokens per session (561 once invoked), scanned A, original, Apache-2.0.

A procedure for examining a GitHub issue and collecting its surrounding context, such as comments, related issues, and linked pull requests.

In plain words
What is it for?
Reviewing an issue's status, tasks, technical details, acceptance criteria, related work, and possible blockers.
Why use it?
It helps an agent understand the full requirement before work begins instead of relying on the issue title or description alone.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

This is qauth-labs/qauth's own configuration. It tells Claude Code how to work on qauth itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything qauth configures →

Reuse

Borrowing it

Nothing to install: this file belongs to qauth-labs/qauth. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/qauth-labs/qauth/main/.claude/skills/investigate-issue/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/qauth-labs/qauth

Made for: Claude Code.

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 investigate-issue

README.md
[![agentmods](https://agentmods.dev/badge/skills/qauth-labs/qauth/investigate-issue/github.svg)](https://agentmods.dev/skills/qauth-labs/qauth/investigate-issue)
Your own site
<a href="https://agentmods.dev/skills/qauth-labs/qauth/investigate-issue"><img src="https://agentmods.dev/badge/skills/qauth-labs/qauth/investigate-issue/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.

agentmods 80×15 button for investigate-issue

Your own site · 80×15
<a href="https://agentmods.dev/skills/qauth-labs/qauth/investigate-issue"><img src="https://agentmods.dev/badge/skills/qauth-labs/qauth/investigate-issue.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 561 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00021 $0.00561
Opus 5 $0.00010 $0.00280
Sonnet 5 $0.00004 $0.00112
Haiku 4.5 $0.00002 $0.00056

Measured 9d ago against content hash 3ccaae872c53, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

investigate-issue 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 9d 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.

.claude/skills/investigate-issue/SKILL.md · 99 lines

How it starts

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

Investigate GitHub Issue

Investigate a GitHub issue to understand requirements and context. See github-conventions for repo and gh CLI basics.

Your Task

When given an issue number or URL, gather all relevant information.

Investigation Steps

1. View Issue Details

gh issue view {number} --json title,body,labels,milestone,state,comments,assignees

2. View Issue Comments

gh issue view {number} --comments

3. Check Related Issues

# Search for related issues
gh issue list --search "{keywords} in:title,body" --state all --limit 10

4. Check Linked PRs

# View PRs that reference this issue
gh pr list --search "#{number}" --state all

5. View Closed Related Issues

gh issue list --state closed --search "{keywords}" --limit 5 --json number,title,body

Output Format

Provide a summary including:

  1. Issue Overview: Title, state, labels, milestone
  2. Summary: What the issue is about
  3. Tasks: Outstanding tasks from the checkbox list
  4. Technical Context: Key technical details
  5. Acceptance Criteria: What defines "done"
  6. Related Issues/PRs: Any linked work
  7. Blockers: Any dependencies or blockers identified

Sub-Issues Investigation

If the issue has sub-issues:

# Get issue ID for GraphQL
gh issue view {number} --json id --jq ".id"

# Query sub-issues (if any)
gh api graphql \
  -H "GraphQL-Features: sub_issues" \
  -f query='
    query($id: ID!) {
      node(id: $id) {
        ... on Issue {
          subIssues(first: 20) {
            nodes {
              number
              title
              state
            }
          }
        }
      }
    }
  ' \
  -f id="{issue_id}"

Instructions

  1. Fetch the full issue details
  2. Parse the body to identify tasks, technical details, and acceptance criteria
  3. Check for related issues and PRs
  4. Summarize findings for the user
  5. Identify any blockers or dependencies
  6. Suggest next steps if appropriate

Read the full file on GitHub · 99 lines

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. 9d ago First seen · 99 lines · 21 tokens per session scan A 3ccaae872c53

Subscribe to this mod's changes

investigate-issue is a skill published in the GitHub repository qauth-labs/qauth (24 stars, last pushed 8d ago), licensed Apache-2.0. It adds 21 tokens to every session and 561 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.

Related

Other skills, from other repositories

agent-merge-conflict-arbiter

Neutral arbiter for merge conflicts between two agents.

NousResearch/hermes-agent · 19 tokens

git-advanced-workflows

Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.

wshobson/agents · 54 tokens

comet-github-issue-fix

A workflow for fixing a confirmed Comet-related GitHub issue or review blocker within an isolated scope. It covers matching the work to the relevant workflow, testing the change, checking runtime results, and preparing a careful handoff.

rpamis/comet · 71 tokens

auto-repo-setup

Diagnose, repair, and standardize repository setup and safe Git workflows for Claude Code or Codex. Use when a repository will not run, a collaborator is onboarding, dependencies or credentials are missing, the user wants startup sync, SessionStart output is duplicated, project instructions or hooks need auditing, or…

daymade/claude-code-skills · 112 tokens

dev-fix

Unified developer workflow for fixing bugs. Analyzes issue-tracker context, cross-checks docs/code, proposes a solution, implements the fix, verifies locally, and delivers a PR/MR.

HoangNguyen0403/agent-skills-standard · 43 tokens

provider-setup

Reports which delegation CLIs are installed and authenticated, installs missing ones, and stores the result. Use before delegating or when a provider errors.

athola/claude-night-market · 33 tokens