fix-issues

fix-issues is a skill for Claude Code, Codex from CES-Ltd/TitanX. It costs 59 tokens per session (6,034 once invoked), scanned A, original, Apache-2.0.

An automated workflow for taking an open GitHub issue marked as a bug through investigation, code changes, and a pull request. GitHub issues are tracked work items, and a pull request proposes code for review.

In plain words
What is it for?
Use it to find open bug issues, assess whether one can be fixed, change the code, run the defined workflow, and submit a pull request.
Why use it?
It removes much of the repeated work involved in finding a suitable bug report and preparing a fix. It handles one issue per run and requires the GitHub command-line tool to be authenticated.

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/ces-ltd/titanx/fix-issues
Any agent
npx skills add CES-Ltd/TitanX --skill fix-issues
Clone the repo
git clone --depth 1 https://github.com/CES-Ltd/TitanX

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 fix-issues

README.md
[![agentmods](https://agentmods.dev/badge/skills/ces-ltd/titanx/fix-issues.svg)](https://agentmods.dev/skills/ces-ltd/titanx/fix-issues)
Your own site
<a href="https://agentmods.dev/skills/ces-ltd/titanx/fix-issues"><img src="https://agentmods.dev/badge/skills/ces-ltd/titanx/fix-issues.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,034 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.00059 $0.06034
Opus 5 $0.00030 $0.03017
Sonnet 5 $0.00012 $0.01207
Haiku 4.5 $0.00006 $0.00603

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

Security

Grade A, and why

fix-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 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.

Makes network callslowCapability

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

curl -sL -o /tmp/issue-<number>-<index>.png "<image-url>"
.claude/skills/fix-issues/SKILL.md · 682 lines

How it starts

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

Fix Issues Skill

Automated workflow: GitHub bug issues → analyze → fix → PR.

Announce at start: "I'm using fix-issues skill to find and fix a GitHub bug issue."

Operating Modes

Batch Mode (default)

Invocation: /fix-issues

  • Fetches open bug issues, finds the best candidate, fixes it
  • Runs full Phase 1 → Phase 2 → Phase 3
  • Fixes 1 issue per invocation

Daemon Mode

Invocation: /fix-issues limit=1 (from daemon script)

  • Phase 1 uses priority descent: high-signal issues first, then progressively lower
  • Fixes only 1 issue (controlled by limit parameter), then exits
  • If no fixable issue exists → outputs [NO_FIXABLE_ISSUES] and exits

Prerequisites

  • gh CLI must be authenticated
  • Working directory will be auto-cleaned (stash + checkout main) at startup

Workflow

Phase 1: Collect & Filter Issues

Step 1.1: Verify Environment
git status --porcelain
git branch --show-current

If working directory has staged or modified tracked files, stash them and proceed:

git stash -m "fix-issues: auto-stash before starting"

Do NOT use --include-untracked — untracked files (like skill files not yet merged to main) must remain in the working directory.

Then switch to main:

git checkout main
git pull origin main
Step 1.1b: Load Skip List (Daemon Mode Only)

In daemon mode (limit > 0), load the skip list to avoid re-analyzing issues that were already triaged in previous sessions. The skip list is stored at:

~/.aionui-fix-issues/skip-list.json

Format:

{
  "1782": { "reason": "already_fixed", "summary": "PR #1800 merged" },
  "1707": { "reason": "environment_issue", "summary": "Kaspersky antivirus blocking" },
  "1697": {
    "reason": "needs_more_info",
    "summary": "Missing reproduction steps",
    "commented_at": "2026-03-27T12:00:00Z"
  },
  "1774": {
    "reason": "fix_failed",
    "summary": "Type check failed after 3 attempts",
    "commented_at": "2026-03-27T14:00:00Z"
  }
}

Read the full file on GitHub · 682 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 682 lines · 59 tokens per session scan A cc95fe0c56a7

Subscribe to this mod's changes

fix-issues is a skill published in the GitHub repository CES-Ltd/TitanX (48 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 59 tokens to every session and 6,034 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

algorithmic-art

Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright…

JStaRFilms/deprecated-Takomi_Code · 62 tokens

convex-http-actions

External API integration and webhook handling including HTTP endpoint routing, request/response handling, authentication, CORS configuration, and webhook signature validation.

JStaRFilms/deprecated-Takomi_Code · 31 tokens

convex-cron-jobs

Scheduled function patterns for background tasks including interval scheduling, cron expressions, job monitoring, retry strategies, and best practices for long-running tasks.

JStaRFilms/deprecated-Takomi_Code · 33 tokens

convex-migrations

Schema migration strategies for evolving applications including adding new fields, backfilling data, removing deprecated fields, index migrations, and zero-downtime migration patterns.

JStaRFilms/deprecated-Takomi_Code · 35 tokens

convex-security-audit

Deep security review patterns for authorization logic, data access boundaries, action isolation, rate limiting, and protecting sensitive operations.

JStaRFilms/deprecated-Takomi_Code · 28 tokens

docx

Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of "Word doc", "word document", ".docx", or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when…

JStaRFilms/deprecated-Takomi_Code · 168 tokens