report-issue

report-issue is a skill for Claude Code, Codex from cyanheads/git-mcp-server. It costs 51 tokens per session (2,460 once invoked), scanned A, original, Apache-2.0.

A procedure for filing a bug report or feature request in the cyanheads/git-mcp-server repository. It uses the GitHub command-line tool to check the repository, search existing issues, and submit a report.

In plain words
What is it for?
Use it to report incorrect tool results, Git provider failures, HTTP or session problems, authentication issues, storage errors, incomplete resources, schema-description problems, or proposed new Git features.
Why use it?
It reduces duplicate reports and helps ensure that a problem is reproducible before it is filed. It covers tool behavior, Git operations, transport, authentication, storage, and other server concerns.

Skill for Claude CodeCodex

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 skills/cyanheads/git-mcp-server/report-issue
Any agent
npx skills add cyanheads/git-mcp-server --skill report-issue
Clone the repo
git clone --depth 1 https://github.com/cyanheads/git-mcp-server

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/cyanheads/git-mcp-server/report-issue.svg)](https://agentmods.dev/skills/cyanheads/git-mcp-server/report-issue)
Your own site
<a href="https://agentmods.dev/skills/cyanheads/git-mcp-server/report-issue"><img src="https://agentmods.dev/badge/skills/cyanheads/git-mcp-server/report-issue.svg" alt="Measured on agentmods" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,460 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.00051 $0.02460
Opus 5 $0.00026 $0.01230
Sonnet 5 $0.00010 $0.00492
Haiku 4.5 $0.00005 $0.00246

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

Security

Grade A, and why

report-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 4d 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.

skills/report-issue/SKILL.md · 250 lines

How it starts

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

When to Use

Typical triggers:

  • A git tool handler returns wrong results or throws on valid input
  • A git provider (CliGitProvider) fails or misbehaves — wrong output parsing, error transformation, timeout handling
  • Transport bugs — HTTP (Hono + Streamable HTTP), stdio, SSE framing, session handling
  • Auth bugs — JWT / OAuth / scope enforcement
  • Storage backend misbehaves — in-memory, filesystem, supabase, cloudflare
  • Domain logic errors — wrong git output, missing edge cases, bad state transitions
  • Resource handlers return stale, incomplete, or incorrect data
  • Missing or incorrect .describe() on schema fields causing poor LLM tool use
  • Feature requests — new git operations, verbosity levels, response fields, auth strategies, storage providers

For general gh CLI workflows outside issue filing (PRs, workflows, API access), see the github-cli skill.

Before Filing

  1. Confirm the repo:

    gh repo view --json nameWithOwner -q '.nameWithOwner'
    

    Should output cyanheads/git-mcp-server.

  2. Search existing issues:

    gh issue list --search "your error message or keyword"
    
  3. Reproduce the issue — confirm it's reproducible. Note the exact input, transport mode (stdio/http), git provider (cli), and any relevant env vars (GIT_SIGN_COMMITS, GIT_BASE_DIR, STORAGE_PROVIDER_TYPE, etc.).

  4. Check logs — review server output and, if running HTTP, the response body for structured error details (McpError code + context).

  5. Capture versionsbun pm ls @cyanheads/git-mcp-server, bun --version, git --version, OS version.

Writing Well-Structured Issues

Good issues are scannable, concrete, and self-contained. These patterns apply to both bugs and features — the guidance targets any prose block (Description, Additional context, feature proposals).

  • Lead with specifics. Name the tool, provider, resource, or symptom. "Currently git_merge throws McpError(INTERNAL_ERROR) on a CONFLICT exit instead of returning {conflicts: true}" beats "Merge is broken." A reader should know what's wrong before the end of the first sentence.
  • Embed library/service links on first mention. [Hono](https://hono.dev/), [tsyringe](https://github.com/microsoft/tsyringe), [jose](https://github.com/panva/jose). Link to the canonical repo so readers can verify the dependency and reach docs in one click.
  • Use owner/repo#N for cross-repo issue references. GitHub auto-renders them as linked references (e.g. cyanheads/mcp-ts-template#46). Bare #N only works for same-repo issues.
  • Add a Related: #N line near the top when the issue grows from prior context (discussions, other issues, PRs). Makes provenance clickable.
  • Lead design sections with a philosophy sentence. Bold a short principle before the tradeoff details — e.g. "Philosophy: conflicts are a structured success, not an error." Establishes the lens for the rest of the section.
  • Prefer Markdown tables for comparisons. When showing options, strategies, or tradeoffs — tables are the highest-density format for scanning N rows × M attributes.
  • Separate ### Scope from ### Out of scope. The latter is as important as the former — it pre-empts scope-creep debates in comments and signals you've thought about the boundaries.
  • Use Depends on: owner/repo#N to declare ordering explicitly when implementation is blocked on another issue landing first.
  • Skip collaborator-framing sign-offs. Lines like "Happy to open a PR", "let me know if you'd like", "willing to contribute" read as noise. A PR link beats an offer; if you're the maintainer filing against your own repo, the offer is redundant. End the body at the last substantive point.

Read the full file on GitHub · 250 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. 4d ago First seen · 250 lines · 51 tokens per session scan A 0a1068728087

Subscribe to this mod's changes

report-issue is a skill published in the GitHub repository cyanheads/git-mcp-server (239 stars, last pushed 10d ago), licensed Apache-2.0. It adds 51 tokens to every session and 2,460 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-30.

Related

Other skills, from other repositories

state-memory-mcp

Teaches the agent to use the state-memory-mcp MCP server to track workflow state, tasks, decisions, blockers, artifacts, plans, milestones, and their semantic relationships in a persistent graph database.

putervision/state-memory-mcp · 45 tokens

talkthrough

Analyze narrated screen recordings and audio files through the talkthrough MCP server — triage feedback into findings, extract specs/backlogs/action items from recordings, and correlate spoken remarks with logs via wall-clock timestamps. Use when the user mentions a screen recording, screencast, narrated video/audio…

korovin-aa97/talkthrough-mcp · 74 tokens

onplana-project-planner

Turn a goal or a brief into an executable Onplana plan over its MCP server: write a plan.md and attach it to the project, decompose it into tasks and subtasks, set start/due dates and dependencies, assign owners, add test cases as you go, and create tasks for the downstream surfaces a change ripples to. Use this…

Onplana/onplana-mcp-server · 133 tokens

event-staffing-ordering

Order W-2 event staff for US/CA events through TempGuru.

Tempguru-co/tempguru-mcp · 22 tokens

onplana-autonomous-agent

Work autonomously on projects in Onplana over its MCP server: pick up the open tasks in a project, do the work, keep each task's status current, report progress as comments, file an Issue when something is wrong, and poll for human replies. Use this whenever an agent (Claude Code, ChatGPT / Codex, or claude.ai) is…

Onplana/onplana-mcp-server · 102 tokens

urgent-event-backfill

Recover from a same-week or day-of event staffing emergency through TempGuru across 300+ U.S. and Canadian markets. Use when staff didn't show up, a staffing vendor or gig app cancelled or fell through, an event starting within about 72 hours suddenly needs people, or the user says "staff didn't show up", "need staff…

Tempguru-co/tempguru-mcp · 212 tokens