github-issues

A workflow for managing GitHub Issues, the repository's records for bugs, tasks, questions, and feature requests.

In plain words
What is it for?
Create and search issues, filter open work or assigned tasks, apply labels, assign owners, inspect individual issues, and manage them with GitHub CLI or REST.
Why use it?
It makes issue tracking more consistent by providing commands for finding, sorting, labeling, assigning, and viewing issues.

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/furkangonel/cowrangler/github-issues
Any agent
npx skills add furkangonel/cowrangler --skill github-issues
Clone the repo
git clone --depth 1 https://github.com/furkangonel/cowrangler

Made for: Claude Code, Codex.

Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,644 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00024 $0.01644
Opus 5 $0.00012 $0.00822
Sonnet 5 $0.00005 $0.00329
Haiku 4.5 $0.00002 $0.00164

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

Security

Grade A, and why

github-issues scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Issue oluştur, ara, sırala ve yönet. Her bölüm önce `gh`, ardından `curl` geri dönüş yolunu gösterir.
bundled_skills/github-issues/SKILL.md · 197 lines

How it starts

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

GitHub Issues Yönetimi

Issue oluştur, ara, sırala ve yönet. Her bölüm önce gh, ardından curl geri dönüş yolunu gösterir.

Ön Koşullar

  • GitHub'a kimlik doğrulama yapılmış
  • GitHub remote'u olan bir git deposunun içinde (veya repo açıkça belirtilmiş)

Kurulum

if command -v gh &>/dev/null && gh auth status &>/dev/null; then
  AUTH="gh"
else
  AUTH="git"
  GITHUB_TOKEN=$(grep "^GITHUB_TOKEN=" ~/.cowrangler/credentials.env 2>/dev/null | head -1 | cut -d= -f2)
fi
REMOTE_URL=$(git remote get-url origin)
OWNER_REPO=$(echo "$REMOTE_URL" | sed -E 's|.*github\.com[:/]||; s|\.git$||')
OWNER=$(echo "$OWNER_REPO" | cut -d/ -f1)
REPO=$(echo "$OWNER_REPO" | cut -d/ -f2)

1. Issue'ları Görüntüle

gh ile:

gh issue list
gh issue list --state open --label "bug"
gh issue list --assignee @me
gh issue list --search "kimlik doğrulama hatası" --state all
gh issue view 42

curl ile:

curl -s -H "Authorization: token $GITHUB_TOKEN" \
  "https://api.github.com/repos/$OWNER/$REPO/issues?state=open&per_page=20" \
  | python3 -c "
import sys, json
for i in json.load(sys.stdin):
    if 'pull_request' not in i:
        labels = ', '.join(l['name'] for l in i['labels'])
        print(f\"#{i['number']:5}  {i['state']:6}  {labels:20}  {i['title']}\")"

# Label'a göre filtrele
curl -s -H "Authorization: token $GITHUB_TOKEN" \
  "https://api.github.com/repos/$OWNER/$REPO/issues?state=open&labels=bug&per_page=20" \
  | python3 -c "import sys,json; [print(f\"#{i['number']} {i['title']}\") for i in json.load(sys.stdin) if 'pull_request' not in i]"

2. Issue Oluştur

gh ile:

gh issue create \
  --title "Hata: Giriş sayfası yanlış yönlendiriyor" \
  --body "## Sorun
Giriş sonrası /dashboard yerine / adresine yönlendiriyor.

## Yeniden Üretme Adımları
1. /login adresine git
2. Geçerli kimlik bilgileriyle giriş yap
3. / adresine yönlendirildiğini gözlemle

## Beklenen Davranış
/dashboard adresine yönlendirilmeli

## Ortam
- Tarayıcı: Chrome 120
- OS: macOS" \
  --label "bug" \
  --assignee "@me"

Read the full file on GitHub · 197 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. 2d ago First seen · 197 lines · 24 tokens per session scan A 9540b8185cca

Subscribe to this mod's changes

github-issues is a skill published in the GitHub repository furkangonel/cowrangler (2 stars, last pushed 4d ago), licensed MIT. It adds 24 tokens to every session and 1,644 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

issue-triage

Triage GitHub issues through the canonical state machine — classify, label, deduplicate, request missing info, write agent briefs, and manage stale issues. Use on demand or on a triage cron.

nearform/lastlight · 46 tokens

issue-answer

Answer a question directly — a sourced, neutral reply to an information/explanation/comparison request, from a GitHub issue or a Slack thread. Research repo docs and the web, output the answer, label question (GitHub only), leave open. Never write an agent brief, mark ready-for-agent, or change code.

nearform/lastlight · 70 tokens

issue-comment

Handle a non-build maintainer comment on an issue or PR — close, reopen, label, dedupe, answer a brief question, or triage. Action-only; redirect anything that needs code changes to /build.

nearform/lastlight · 47 tokens

b00t-gh-issues

GitHub issue triage and integration review agent for the b00ty-verse. Dogfoods b00t's grok RAG subsystem to research an issue topic, then posts a structured integration review on the GH issue. Evaluates external tools/frameworks/libraries for potential integration into the b00t ecosystem. Output is a machine-parseable…

elasticdotventures/_b00t_ · 104 tokens

github

Prepare GitHub issues, pull requests, reviews, and release notes for Zhin projects. Use when asked to write an issue, PR description, changelog entry, or review comment. Triggers: 写 issue, PR 描述, 提 PR, release notes, gh pr.

zhinjs/zhin · 58 tokens

ftshare-market-data

非凸科技金融数据技能集。覆盖 A 股股票列表、全字段/实时行情列表、分时价格、IPO、大宗交易、融资融券、单股行情估值、可转债、ETF、基金、指数(含分页指数描述、下载描述 PDF、权重汇总/成份明细、下载权重 xlsx、详情/K 线/分时)、宏观经济,以及港股公司介绍/估值分析/基础视图/K线、东财美股列表/历史K线/最新行情、native 美股基础信息/利润表/现金流量表/资产负债表、港股财报三表(利润/现金流/资产负债)/东财港股指数日K线等接口(market.ft.tech / ftai.chat)。用户询问 A 股、港股、美股的代码、行情、估值、K线、指数权重/描述、新闻与宏观数据时使用。.

FTShare-Lab/FTShare-skill · 209 tokens