tracepilot-gemini-cli: Skill for Gemini CLI

.gemini/skills/ci/SKILL.md

ci is a skill for Gemini CLI from priyanshuchawda/tracepilot-gemini-cli. It costs 42 tokens per session (727 once invoked), scanned A, a copy of ci, Apache-2.0.

A Gemini CLI skill for monitoring GitHub Actions, the service that runs automated checks for a repository. It finds the relevant branch run, reports workflow status, and runs suggested tests or lint checks locally when CI fails.

In plain words
What is it for?
Use it to watch the current branch's workflows, stop triage at the first failure, and reproduce failed tests or lint commands on your machine.
Why use it?
It connects a remote CI failure with local reproduction, reducing the time spent finding the failed job and working out how to repeat it.

Skill for Gemini CLI

Written for Gemini CLI: installed under .gemini/. Also seen: mentions Gemini CLI.

This is priyanshuchawda/tracepilot-gemini-cli's own configuration. It tells Gemini CLI how to work on tracepilot-gemini-cli itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything tracepilot-gemini-cli configures →

Reuse

Borrowing it

Nothing to install: this file belongs to priyanshuchawda/tracepilot-gemini-cli. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/priyanshuchawda/tracepilot-gemini-cli/main/.gemini/skills/ci/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/priyanshuchawda/tracepilot-gemini-cli

Made for: Gemini CLI.

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 ci

README.md
[![agentmods](https://agentmods.dev/badge/skills/priyanshuchawda/tracepilot-gemini-cli/ci.svg)](https://agentmods.dev/skills/priyanshuchawda/tracepilot-gemini-cli/ci)
Your own site
<a href="https://agentmods.dev/skills/priyanshuchawda/tracepilot-gemini-cli/ci"><img src="https://agentmods.dev/badge/skills/priyanshuchawda/tracepilot-gemini-cli/ci.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 727 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod 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.1 $0.00042 $0.00727
Opus 5 $0.00021 $0.00364
Sonnet 5 $0.00008 $0.00145
Haiku 4.5 $0.00004 $0.00073

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

Security

Grade A, and why

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 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/ci.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Origin

This is a copy

100% identical to ci — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.gemini/skills/ci/SKILL.md · 67 lines

How it starts

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

CI Replicate & Status

This skill enables the agent to efficiently monitor GitHub Actions, triage failures, and bridge remote CI errors to local development. It defaults to automatic replication of failures to streamline the fix cycle.

Core Capabilities

  • Automatic Replication: Automatically monitors CI and immediately executes suggested test or lint commands locally upon failure.
  • Real-time Monitoring: Aggregated status line for all concurrent workflows on the current branch.
  • Fail-Fast Triage: Immediately stops on the first job failure to provide a structured report.

Workflow

1. CI Replicate (replicate) - DEFAULT

Use this as the primary path to monitor CI and automatically replicate failures locally for immediate triage and fixing.

  • Behavior: When this workflow is triggered, the agent will monitor the CI and immediately and automatically execute all suggested test or lint commands (marked with 🚀) as soon as a failure is detected.
  • Tool: node .gemini/skills/ci/scripts/ci.mjs [branch]
  • Discovery: The script automatically finds the latest active or recent run for the branch. Do NOT manually search for run IDs.
  • Goal: Reproduce the failure locally without manual intervention, then proceed to analyze and fix the code.

1. CI Status (status)

Use this when you have pushed changes and need to monitor the CI and reproduce any failures locally.

  • Tool: node .gemini/skills/ci/scripts/ci.mjs [branch] [run_id]
  • Discovery: The script automatically finds the latest active or recent run for the branch. You should NOT manually search for `run_id` using `gh run list` unless a specific historical run is requested. Simply provide the branch name.
  • Step 1 (Monitor): Execute the tool with the branch name.
  • Step 2 (Extract): Extract suggested `npm test` or `npm run lint` commands from the output (marked with 🚀).
  • Step 3 (Reproduce): Execute those commands locally to confirm the failure.
  • Behavior: It will poll every 15 seconds. If it detects a failure, it will exit with a structured report and provide the exact commands to run locally.

Read the full file on GitHub · 67 lines

Files

What ships with it

1 file 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. 7d ago First seen · 67 lines · 42 tokens per session scan A 2f6c8c68cc4e

Subscribe to this mod's changes

ci is a skill published in the GitHub repository priyanshuchawda/tracepilot-gemini-cli (1 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 42 tokens to every session and 727 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to ci, differing in 0 lines, and is treated as a copy.