issue-tracker

issue-tracker is an agent for Claude Code from jhlee0409/claude-code-history-viewer. It costs 0 tokens per session (511 once invoked), scanned A, original, MIT.

Instructions for managing repository issues and product requirements through GitHub Issues. GitHub Issues are discussion and tracking records attached to a code repository.

In plain words
What is it for?
Use it to create or inspect issues, manage labels and comments, close completed work, and connect related pull requests.
Why use it?
It keeps issue creation, updates, labels, comments, and closing consistent with the repository’s required process.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: mentions CLAUDE.md.

About the project

Claude Code History Viewer is a desktop application and headless web server for browsing, searching, and analyzing conversation histories from many AI coding assistants. It helps developers review their past sessions across tools while keeping the data offline. The project is represented in the catalogue by agents, a setting, a command, and an instruction.

jhlee0409/claude-code-history-viewer · 2,133 stars · on GitHub · jhlee0409.github.io

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/jhlee0409/claude-code-history-viewer/issue-tracker
Clone the repo
git clone --depth 1 https://github.com/jhlee0409/claude-code-history-viewer

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/jhlee0409/claude-code-history-viewer/issue-tracker.svg)](https://agentmods.dev/agents/jhlee0409/claude-code-history-viewer/issue-tracker)
Your own site
<a href="https://agentmods.dev/agents/jhlee0409/claude-code-history-viewer/issue-tracker"><img src="https://agentmods.dev/badge/agents/jhlee0409/claude-code-history-viewer/issue-tracker.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 511 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.1 $0.00000 $0.00511
Opus 5 $0.00000 $0.00255
Sonnet 5 $0.00000 $0.00102
Haiku 4.5 $0.00000 $0.00051

Measured 6d ago against content hash bd68a8722bf6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

issue-tracker 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 6d 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.

docs/agents/issue-tracker.md · 34 lines

What it actually says

Issue tracker: GitHub

Repo: jhlee0409/claude-code-history-viewer. Issues and PRDs for this repo live as GitHub issues. Use the gh CLI for all operations.

Conventions

  • Create an issue: gh issue create --title "..." --body "...". Use a heredoc for multi-line bodies.
  • Read an issue (human): gh issue view <number> --comments for plain-text reading.
  • Read an issue (machine-parsable): gh issue view <number> --json number,title,body,comments,labels --jq '{title, body, labels: [.labels[].name], comments: [.comments[].body]}'.
  • List issues: gh issue list --state open --json number,title,body,labels,comments --jq '[.[] | {number, title, body, labels: [.labels[].name], comments: [.comments[].body]}]' with appropriate --label and --state filters.
  • Comment on an issue: gh issue comment <number> --body "..."
  • Apply / remove labels: gh issue edit <number> --add-label "..." / --remove-label "..."
  • Close: gh issue close <number> --comment "..."

Infer the repo from git remote -vgh does this automatically when run inside a clone.

When a skill creates or proposes a PR linked to an issue, the base branch MUST be develop, never main. See CLAUDE.md → "Branch Strategy" — main is release-only and only receives merges from develop at release time. PRs targeted at main will fail review.

Comment language (repo convention)

  • Default for gh issue comment / gh pr comment is English, regardless of issue/PR body language. This keeps the public review record consistent across contributors.
  • Exception for close-comments: when explicitly closing an issue as a courtesy to the reporter, match the issue body's language (e.g. close a Chinese-body issue with a Chinese close-comment).

When a skill says "publish to the issue tracker"

Create a GitHub issue.

When a skill says "fetch the relevant ticket"

Run gh issue view <number> --comments.

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. 6d ago First seen · 34 lines · 0 tokens per session scan A bd68a8722bf6

Subscribe to this mod's changes

issue-tracker is an agent published in the GitHub repository jhlee0409/claude-code-history-viewer (2,133 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 511 tokens. 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 agents, from other repositories

engine-implementation-executor

Execute an already-reviewed phase.rs implementation plan surgically. Receives the approved plan + scope, edits files, runs Tilt-first verification, and returns a diff summary with any judgement-call notes. Does NOT plan, does NOT review, does NOT commit. Spawned by the /engine-implementer skill.

phase-rs/phase · 68 tokens

pr-review-comment-resolver

Use proactively for comprehensive PR review comment resolution in phase.rs. Fetches PR review comments, categorizes actionable feedback by type and priority, fixes issues directly, self-reviews the diff, iterates until no gaps remain, verifies with the repo's Tilt-first workflow, and reports unresolved manual items.

phase-rs/phase · 65 tokens

mtg-rules-auditor

Audits MTG Comprehensive Rules coverage in engine code. Accepts targeted file lists or CR sections for lightweight runs, or does a full codebase sweep. Produces structured reports mapping game logic to CR rule numbers.

phase-rs/phase · 51 tokens

tadpole-frontend-specialist

Tadpole OS frontend specialist for React, Vite, TypeScript, Zustand, Tailwind v4, WebSockets integration, Tauri bridge, and frontend-backend contracts.

DDS-Solutions/AI-TadPole-OS · 44 tokens

tadpole-backend-specialist

Tadpole OS backend specialist for Rust, Axum, Tokio, sqlx, SQLite, AppState, agent registry, runner lifecycle, WebSocket events, and backend contract integrity.

DDS-Solutions/AI-TadPole-OS · 45 tokens

compliance-officer

Legal & Compliance Architect. Specializes in GDPR/CCPA, Open-Source License Auditing, Data Sovereignty, and Privacy-by-Design.

DDS-Solutions/AI-TadPole-OS · 35 tokens