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 skills add Knuckles-Team/repository-manager --skill repository-manager-gate-executiongit clone --depth 1 https://github.com/Knuckles-Team/repository-managerWrote 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/knuckles-team/repository-manager/repository-manager-gate-execution)<a href="https://agentmods.dev/skills/knuckles-team/repository-manager/repository-manager-gate-execution"><img src="https://agentmods.dev/badge/skills/knuckles-team/repository-manager/repository-manager-gate-execution/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/knuckles-team/repository-manager/repository-manager-gate-execution"><img src="https://agentmods.dev/badge/skills/knuckles-team/repository-manager/repository-manager-gate-execution.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00218 | $0.02963 |
| Opus 5 | $0.00109 | $0.01482 |
| Sonnet 5 | $0.00044 | $0.00593 |
| Haiku 4.5 | $0.00022 | $0.00296 |
Grade A, and why
repository-manager-gate-execution 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 9d 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
chokepoint before every `subprocess.run` this package constructs. Goes How it starts
The opening of the file, as written. The whole thing — 226 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repository Manager — Gate Execution
rm_gates is the one tool that drives both tiers of the pre-commit gate:
stage="fast" runs a repo's pre-commit-stage hooks (formatters/linters, no
network/tests, target ≤5s warm); stage="heavy" runs its pre-push-stage
hooks (pytest, cargo, uv lock --check, ...) via
pre-commit run --hook-stage <stage>. The measured reason this skill exists:
on 2026-08-21 a single epistemic-graph push cost roughly six hours
because every one of six failing pre-commit hooks was re-proven, on every
fix, by re-running the repo's entire 90-minute heavy wave — there was no way
to ask "just the hooks that were failing." The same push's integration suite
was independently reporting ~500 timeout errors that turned out to be one
cold cargo build blowing a 60-second per-test fixture timeout, hiding 17
real failures underneath the noise. retest and the gate ledger close the
first gap; profile is how you find the second kind before it hides
anything.
When to use
- Submit a fast or heavy gate wave across one, several, or all repos (
run). - Re-validate a fix without re-running everything that already passed
(
retest) — narrows to whatever the ledger last recorded failing for that repo/stage, escalating to a full wave automatically once every retested hook passes. - Poll a running wave, or get the roll-up of what's failing right now
(
status). - Get condensed failure detail for one job/repo (
explain). - Find the slowest hooks or repos, fleet-wide or for one job (
profile).
When NOT to use
- The merge queue's own differential gate-vs-base-ref comparison at land time
→
repository-manager-merge-and-reconcile. - Python
pyproject.tomlinstall/build (not gate execution) →repository-manager-workspace-validation. - Content-addressed build/cache dedup →
repository-manager-build-coordination. - Deciding how many heavy gate waves may run concurrently across the fleet →
repository-manager-fleet-scale-operations.
What ships with it
2 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.
- 9d ago First seen · 226 lines · 218 tokens per session scan A 0b676bcd1a96
repository-manager-gate-execution is a skill published in the GitHub repository Knuckles-Team/repository-manager (2 stars, last pushed 12d ago), licensed MIT. It adds 218 tokens to every session and 2,963 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
setup-pre-commit
Use when bootstrapping or extending the pre-commit hook chain (Husky + lint-staged + Prettier + typecheck + integration tests) for an EVOKORE-style TypeScript repo, including detecting an existing setup, surfacing the diff, and never silently overwriting a configured chain.
flutter-mcp-toolkit-control
Drive a running Flutter app — tap, scroll, type, fill forms, hot-reload, navigate. Use when you need to interact with the UI.
codspeed-optimize
Autonomously optimize code for performance using CodSpeed benchmarks, flamegraph analysis, and iterative improvement. Use this skill whenever the user wants to make code faster, reduce CPU usage, optimize memory, improve throughput, find performance bottlenecks, or asks to 'optimize', 'speed up', 'make faster'…
codspeed-setup-harness
Set up performance benchmarks and CodSpeed harness for a project. Use this skill whenever the user wants to create benchmarks, add performance tests, set up CodSpeed, configure codspeed.yml, integrate a benchmarking framework (criterion, divan, pytest-benchmark, vitest bench, go test -bench, google benchmark), or when…
harness-engineering-lifecycle
Design, implement, and integrate generalized validation harnesses across a producer-consumer boundary after a local harness contract exists. Use when refactoring custom validation CLIs/MCPs for large polyrepos, extending Steward across sibling repos, or deploying a local tool to a consumer project for dogfooding and…
coding-agents-hooks-authoring
To author, register, and test Rosetta hooks, add a SemanticKind, or debug a hook that won't fire.