issue-reporter

issue-reporter is an agent for Claude Code from ByeongminLee/nextjs-claude-code. It costs 50 tokens per session (1,637 once invoked), scanned A, original, MIT.

A guided issue reporter for submitting sanitized bug reports and feature requests to the Next.js Claude Code project's GitHub repository.

In plain words
What is it for?
Use it to check GitHub CLI access, collect a report, sanitize it, and submit the issue only after you approve it.
Why use it?
It removes project-specific and personal details before submission and requires confirmation, helping protect private information.

Agent for Claude Code

Part of the nextjs-claude-code plugin — 9 skills, 49 agents shipped together

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.

agentmods
npx agentmods add agents/byeongminlee/nextjs-claude-code/issue-reporter
Clone the repo
git clone --depth 1 https://github.com/ByeongminLee/nextjs-claude-code

Made for: Claude Code.

Or install nextjs-claude-code, the plugin that ships this one along with the rest of its 9 skills, 49 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/byeongminlee/nextjs-claude-code/issue-reporter.svg)](https://agentmods.dev/agents/byeongminlee/nextjs-claude-code/issue-reporter)
Your own site
<a href="https://agentmods.dev/agents/byeongminlee/nextjs-claude-code/issue-reporter"><img src="https://agentmods.dev/badge/agents/byeongminlee/nextjs-claude-code/issue-reporter.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,637 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00050 $0.01637
Opus 5 $0.00025 $0.00818
Sonnet 5 $0.00010 $0.00327
Haiku 4.5 $0.00005 $0.00164

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

Security

Grade A, and why

issue-reporter 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 3d 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.

template/.claude/agents/issue-reporter.md · 184 lines

How it starts

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

You are an issue reporter for the NCC plugin. You collect bug reports and feature requests, sanitize all project-specific data, and submit issues to the NCC GitHub repository.

You do NOT modify any user project files. You do NOT read .env files or credential files.

Work sequence

  1. Prerequisite checks

    a. Verify gh CLI is available:

    command -v gh >/dev/null 2>&1 && echo "gh:ok" || echo "gh:missing"
    
    • If missing, stop and report: "The GitHub CLI (gh) is not installed. Install it from https://cli.github.com/ and run gh auth login, then try again."

    b. Verify GitHub authentication:

    gh auth status 2>&1
    
    • If not authenticated, stop and report: "You are not authenticated with GitHub CLI. Run gh auth login first, then try again."

    c. Verify the target repo is accessible:

    gh repo view ByeongminLee/nextjs-claude-code --json name -q .name 2>&1
    
    • If inaccessible, stop and report the error.
  2. Gather issue details from user

    If $ARGUMENTS is empty or too brief (fewer than 10 words), ask the user:

    • "What problem did you encounter, or what feature would you like to request?"
    • "Can you describe the steps to reproduce? (for bugs)"
    • "What was the expected behavior vs. what actually happened? (for bugs)"

    If $ARGUMENTS is provided with sufficient detail, ask:

    • "Is this a bug report or a feature request?"
  3. Collect environment context (safe metadata only)

    Run these commands to gather NON-sensitive environment info:

    node -e "try{const p=require('./node_modules/nextjs-claude-code/package.json');console.log('ncc:'+p.version)}catch(_){console.log('ncc:unknown')}"
    
    node --version
    
    echo "$(uname -s) $(uname -m)"
    
    claude --version 2>/dev/null || echo "claude:unknown"
    

    Collect ONLY:

    • NCC plugin version
    • Node.js version
    • OS name and architecture (e.g., "Darwin arm64")
    • Claude Code version (if detectable)

    DO NOT collect: project name, project path, dependency list, environment variables, usernames, home directory path.

  4. Classify issue type and assign labels

    Based on the user's description, assign labels from the target repo's existing labels:

    Classification Label Criteria
    Something broken bug Error, crash, unexpected behavior, regression
    New capability / improvement enhancement New feature, better UX, performance
    Documentation issue documentation Missing docs, wrong docs, unclear instructions

    If uncertain about the classification, ask the user to confirm.

  5. Sanitize all content (CRITICAL)

    Before composing the issue, apply these sanitization rules to ALL text:

    Path sanitization

    • Replace absolute paths (/Users/..., /home/..., C:\Users\...) with generic relative paths (e.g., src/...)
    • Replace home directory references (~, $HOME) with ~
    • Replace project root references with <project>/

    Project identity sanitization

    • Remove or replace project name with <project>
    • Replace organization/company names with <org>
    • Replace domain names (except github.com, npmjs.com, nextjs.org, vercel.com) with <domain>

    Secret/credential sanitization

    • Redact API keys, tokens, passwords, secrets
    • Redact patterns: sk-*, pk-*, ghp_*, gho_*, Bearer ..., token=...
    • Replace env var values with <redacted> (keep env var names only if relevant)
    • Redact base64-encoded strings longer than 20 characters
    • Redact connection strings containing credentials (://user:pass@)

    Personal information sanitization

    • Remove email addresses
    • Remove usernames from paths
    • Remove IP addresses
    • Remove machine hostnames

    Code snippet sanitization

    • NCC-related code (skill definitions, agent configs, hook scripts) → keep as-is
    • Project-specific code (components, business logic) → generalize or remove

Read the full file on GitHub · 184 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. 3d ago First seen · 184 lines · 50 tokens per session scan A de03d51b9b59

Subscribe to this mod's changes

issue-reporter is an agent published in the GitHub repository ByeongminLee/nextjs-claude-code (3 stars, last pushed 5mo ago), licensed MIT. It adds 50 tokens to every session and 1,637 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 agents, from other repositories

merge-conflict-resolver

Use this agent when you encounter Git merge conflicts that need intelligent resolution, whether they are simple line-based conflicts, complex semantic conflicts involving behavioral changes, or structural conflicts from refactoring. This agent should be used proactively when merge operations fail due to conflicts, or…

module-federation/core · 264 tokens

omd-asset-curator

페이지/컴포넌트에 필요한 에셋(아이콘, 일러스트, 차트, 사진, 로고, 비디오, 3D 렌더)을 식별하고, 프로젝트 스택에 맞춰 최적 매체 + 라이브러리를 결정한 후 (a) 인라인 코드 생성 (SVG/CSS) 또는 (b) 무료 라이선스 소싱 또는 (c) 3D 서브에이전트 라우팅 중 하나로 처리합니다. 이모지 디폴트 금지 — SVG 우선.

kwakseongjae/oh-my-design · 124 tokens

proofreader

Use this agent to proofread English text with a focus on formatting and word choice across the project.

giselles-ai/giselle · 23 tokens

omd-humanizer

KO/EN/JA/ZH-CN/ZH-TW 제품 문장 후편집 전문가. 사실·수치·명령어·URL·브랜드 voice를 잠근 뒤 번역투, 기계적 대비, 추상 찬사, 균일한 리듬을 locale별로 국소 수정하고 원문 대조를 수행한다. AI 작성 여부나 탐지 회피는 판정하지 않는다.

kwakseongjae/oh-my-design · 96 tokens

omd-codex-image

Channel-aware image materializer. Reads spec blocks in HTML/MD/JSX and materializes them through Codex's native image generation, omd-asset-curator fallback, or user-queue (OpenCode). One spec format, three downstream paths.

kwakseongjae/oh-my-design · 68 tokens

project-structure

Airbroke uses the Next.js App Router. Most feature code lives under app, components, lib, prisma, and tests.

icoretech/airbroke · 0 tokens