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/reviewstage/stage-cli/fixing-cinpx skills add ReviewStage/stage-cli --skill fixing-cigit clone --depth 1 https://github.com/ReviewStage/stage-cliWrote 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/reviewstage/stage-cli/fixing-ci)<a href="https://agentmods.dev/skills/reviewstage/stage-cli/fixing-ci"><img src="https://agentmods.dev/badge/skills/reviewstage/stage-cli/fixing-ci.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.00036 | $0.00964 |
| Opus 5 | $0.00018 | $0.00482 |
| Sonnet 5 | $0.00007 | $0.00193 |
| Haiku 4.5 | $0.00004 | $0.00096 |
Grade A, and why
fixing-ci 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.
How it starts
The opening of the file, as written. The whole thing — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Fixing CI
Overview
Diagnose failing CI from GitHub logs, fix each issue with an atomic commit, and iterate locally until the full suite is green — then push once.
Principle: One fix, one commit. Never push until all checks pass locally.
Workflow
1. DIAGNOSE → Pull failure logs from GitHub, list all failures
2. For each failure:
a. REPRODUCE → Run the failing check locally to confirm you see it
b. FIX → Fix root cause (not downstream symptoms)
c. VERIFY FIX → Re-run the check to confirm it passes
d. COMMIT → Atomic commit for this fix
3. VERIFY ALL → Run the full suite locally
↳ If anything fails → go back to step 2
↳ All green → proceed
4. PUSH → Push all commits
Step 1: Diagnose
# See recent CI runs on current branch
gh run list --branch $(git branch --show-current) --limit 5
# View failing run (find run-id from above)
gh run view <run-id>
# Stream logs from only the failed steps
gh run view <run-id> --log-failed
Read top-to-bottom and list all distinct failures before fixing any of them. Find the first error in each job — not symptoms that cascade from it.
Step 2: Fix Loop (repeat per failure)
a. Reproduce
Check the project's AGENTS.md for exact commands. Common mappings:
| CI Job | Typical Local Command |
|---|---|
| Lint | pnpm lint |
| Typecheck | pnpm typecheck |
| Tests | pnpm test |
| Build | pnpm build |
Run the failing check and confirm you see the same error locally before touching code.
b. Fix
- Fix the root cause — lint errors often cascade from a single type error upstream
- Don't fix just to silence the error; understand why it's wrong
- If the fix is unclear, read the relevant library docs or AGENTS.md before guessing
c. Verify the Fix
Re-run the specific check to confirm it passes before committing.
d. Commit
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 · 110 lines · 36 tokens per session scan A 43ef23f43638
fixing-ci is a skill published in the GitHub repository ReviewStage/stage-cli (267 stars, last pushed 23d ago), licensed MIT. It adds 36 tokens to every session and 964 once invoked, about $0.0002 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.
Other skills, from other repositories
ci-security-scanning-with-strix
Add security scanning to CI/CD with Strix — GitHub Actions, GitLab CI, or any pipeline — so every pull request gets a diff-scoped AI pentest that blocks vulnerable code before it merges, with results as PR comments and SARIF uploaded to code scanning. Covers both the self-hosted open-source CLI (runs in your runner)…
desktop-principles
Desktop-specific UX principles - hover states, pointer precision, keyboard shortcuts, multi-window, focus management. Covers macOS, Windows, Linux, web desktop.
upgrading-golang
Upgrades Go version across the entire Chainloop codebase including source files, Docker images, CI/CD workflows, and documentation. Use when the user mentions upgrading Go, golang version, or updating Go compiler version.
python-canary-fix
Investigate and propose fixes for Python canary cron failures in the openinference repo. Use when the user mentions Python canary failures, Python cron failures, or when the auto-fix CI job reports Python instrumentation canary issues.
ci-fixer
CI failures - read error, minimal fix, verify.
infrastructure-setup
Provides project infrastructure conventions and review criteria for local setup, Docker, Git hooks, CI/CD, service delivery, release artifacts, monitoring, backups, and operations. Use when: "настрой инфраструктуру", "измени CI/CD", "подготовь деплой", "настрой Docker", "собери release artifact", "настрой мониторинг"…