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.
npx agentmods add skills/ces-ltd/titanx/fix-issuesnpx skills add CES-Ltd/TitanX --skill fix-issuesgit clone --depth 1 https://github.com/CES-Ltd/TitanXWrote 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.
[](https://agentmods.dev/skills/ces-ltd/titanx/fix-issues)<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>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.
| Model | Per session | Once 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 |
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>" 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
limitparameter), 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"
}
}
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.
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.
- 4d ago First seen · 682 lines · 59 tokens per session scan A cc95fe0c56a7
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.
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…
convex-http-actions
External API integration and webhook handling including HTTP endpoint routing, request/response handling, authentication, CORS configuration, and webhook signature validation.
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.
convex-migrations
Schema migration strategies for evolving applications including adding new fields, backfilling data, removing deprecated fields, index migrations, and zero-downtime migration patterns.
convex-security-audit
Deep security review patterns for authorization logic, data access boundaries, action isolation, rate limiting, and protecting sensitive operations.
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…