no-mistakes is a local Git proxy that validates changes in an isolated worktree before forwarding a push to the real remote and opening a pull request. It is for developers and coding agents that want automated checks, safe fixes, CI repair, and human review before changes are published.
Borrowing it
Nothing to install: this file belongs to kunchenguid/no-mistakes. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/kunchenguid/no-mistakes/main/.agents/skills/ci-monitor/SKILL.mdgit clone --depth 1 https://github.com/kunchenguid/no-mistakesWrote 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/kunchenguid/no-mistakes/ci-monitor)<a href="https://agentmods.dev/skills/kunchenguid/no-mistakes/ci-monitor"><img src="https://agentmods.dev/badge/skills/kunchenguid/no-mistakes/ci-monitor/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/kunchenguid/no-mistakes/ci-monitor"><img src="https://agentmods.dev/badge/skills/kunchenguid/no-mistakes/ci-monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 13 Skill allows unbounded resource consumption (API calls, storage, compute). Without rate limits or quotas, a compromised or misbehaving agent can cause denial-of-service or cost overruns.Fix: Set explicit rate limits, timeouts, and resource quotas for API calls, file operations, and compute. Implement circuit breakers for runaway loops.
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.00025 | $0.02624 |
| Opus 5 | $0.00013 | $0.01312 |
| Sonnet 5 | $0.00005 | $0.00525 |
| Haiku 4.5 | $0.00003 | $0.00262 |
Grade A, and why
ci-monitor 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 today.
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 — 23 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CI Monitor Lifecycle
- The CI step produces findings, not fixes: a settled observation returns one finding per issue with an
action(ciObservationFindings,internal/pipeline/steps/ci_findings.go) and the executor's shared auto-fix loop drives fix rounds (repairFromFindingsinci_fix.goconsumessctx.PreviousFindings), soauto_fix.ciis counted by the executor from round history and a review-bot check (scm.ReviewBots, identified byscm.Check.App) parks asask-usercomment findings without spending a round. A published repair keeps monitoring inside the fix round and must callsctx.MarkRunning()so status returns torunningfor the readiness consumers.AGENTS.md"CI Step Findings Model" owns the contract and regression list. ci_timeoutis an idle timeout, not an absolute deadline: onlytimeoutAnchorre-arms when the upstream default-branch tip advances,startedstays fixed for poll pacing, and re-arm only ever extends the deadline (fail-safe on transient base-tip failures). Value semantics (0unset, negative unlimited sentinel, keyword parsing) live inconfig.go; keepconfig.DefaultCITimeoutanddefaultConfigYAMLin sync (TestDefaultConfigYAML_MatchesGoDefaults). User-facing semantics are owned bydocs/src/content/docs/reference/global-config.md.- GitHub readiness is the union of the exact current PR head commit's check rollup and every Actions workflow run returned by the Actions API for that same SHA. A workflow rejected before creating jobs/check-runs is absent from the commit rollup but still present in that API; run discovery errors and unknown run states fail closed instead of certifying a green rollup. Regressions:
TestGetChecksIncludesFailedWorkflowRunMissingFromPRRollup,TestGetChecksBindsRollupAcrossABAHeadMovement,TestCIStep_FailedHeadWorkflowRunPreventsChecksPassed. - GitHub's raw commit
statusCheckRollupreturns every check run a commit ever had, including a same-named run a later run at that same head has already superseded (e.g. a required-check job re-triggered bysynchronizeafter a pipeline auto-fix push).Host.GetChecks(internal/scm/github/github.go) collapses same-name reruns of one workflow to the neweststartedAt(using Actions run identity to break timestamp ties, comparing against every retained duplicate, and preserving unordered records, including ambiguous pending replacements, before acompletedAtfallback) while preserving independent workflows, unidentified external checks, and same-named commit status contexts, restoring the semanticsgh pr checksalready applies and this repo's own gateverify.pyalready assumes (last-wins). Collapse must run AFTERappendUnrepresentedWorkflowRuns, never before: that call dedupes the Actions-run union against checks by run ID over the FULL uncollapsed rollup, so collapsing first drops a superseded run's ID out of the "represented" set and the union re-adds the same stale run under its own workflow run name. Without this collapse, a monitor that keepssynchronizein its gate trigger set can loop forever: each auto-fix push legitimately fails the gate at the old head, a later same-head rebind turns it green, but the stale FAILURE stays visible and re-triggers another auto-fix round. Regressions:TestGetChecksCollapsesSupersededSameNameCheckToLatestAtOneHead,TestGetChecksCollapseOrderingDoesNotLetWorkflowRunUnionResurrectSupersededCheck,TestGetChecksPreservesIndependentSameNameWorkflows,TestGetChecksPreservesIndependentSameNameExternalCheckRuns,TestGetChecksCollapseComparesNewestRunWithEverySameNameCandidate,TestGetChecksKeepsQueuedReplacementWithEqualStartTime,TestGetChecksPreservesUnorderedExternalPendingReplacement,TestGetChecksPreservesSameNameStatusContextAndCheckRun. - A published CI repair rebinds an existing pipeline attestation in the PR body to the new head (
restampPublishedAttestationafterpublishRepair) only when the host has an existing attestation and aPRContentReader. All supported providers implement raw reads; Bitbucket owned templates carry the same marker as visible text. Owned restamps enforce provider budgets before the adapter can clamp (especially Azure). Hosts without readers skip with a warning. A restamp that cannot settle after retries is unsettled, not success. The CI fixer prompt may conclude that a stale/attestation/infrastructure red is not a code defect; a genuine failing test or build must still be fixed. Regressions:TestCIStep_PublishRepairRebindsAttestationAcrossRepairPushes,TestCIStep_PublishRepairDoesNotMintAttestation,TestCIStep_PublishRepairSkipsRestampWithoutReader,TestRestampPRAttestation_MissingReaderIsSkipped,TestRebindPipelineAttestationHead_VerifyPyRoundTrip,TestCIStep_FixPromptPrefersSimplificationOverMachinery,TestCIStep_FixPromptDistinguishesCodeDefectFromExternalFailure. - CI readiness never treats an unproven empty forge check list as green. Ready requires observed all-green checks, or trusted default-branch
no_ci: truewith zero registered checks (internal/pipeline/steps/ci.godecides whether the declaration applies;internal/cimonitorowns the agent-facing log vocabulary and Ready/DeclaredNoCI parse). Delayed registration, pending checks, failures, errors, unknowns, and stale-head evidence stay not-ready; registered checks on a declared no-CI repo are still honored. Regressions:TestChecksPassed_PR607RealLogSequence,TestCIStep_EmptyChecksWithoutNoCIStaysNotReadyPastOldGracePeriod,TestCIStep_EmptyChecksWithTrustedNoCIBecomesReady,TestCIStep_DelayedCheckRegistrationStaysNotReadyUntilGreen,TestCIStep_DeclaredNoCIWithUnexpectedChecksHonorsThem,TestEffectiveRepoConfig_NoCITrustedOnly. - Persistent provider check-read failures are not an invisible spin: 6 consecutive
GetCheckserrors while the PR is still open park the CI step at an ask-user gate whose provider-neutral finding names the provider CLI/credentials support and includes the underlying error (with a GitHub-specific clause requiringgh>= 2.50 for thegh pr checks --jsoncall), and the streak resets on any successful read. Regression:TestCIStep_PersistentCheckReadFailureParksAtAskUser. - Reap an orphaned monitor from outside its worktree with
no-mistakes axi abort --run <id>; it needs onlyNM_HOMEand never starts a stopped daemon. A known run succeeds only with durable terminal truth, a recorded nonterminal run fails unconfirmed, and only an unknown id is an idempotent no-op. Bareaxi abortstays worktree/branch-scoped. - A merged or closed PR observation transactionally completes an active run and its CI step; PR lifecycle state is monotonic, so duplicate or delayed observations cannot reactivate or regress a terminal run. Startup reconciles legacy
pendingorrunningrows that already hold terminal PR state before parked-run planning and generic crash recovery. Regressions:TestUpdateRunPRStateFinalizesActiveTerminalOutcomes,TestUpdateRunPRStateIgnoresDuplicateAndDelayedRegressions,TestReconcileTerminalPRRunsFinalizesLegacyActiveRows,TestRecoverOnStartup_FinalizesLegacyTerminalPRRun, e2eTestTerminalPRRunDisappearsFromActiveListing. - A provider-reported
cancelledcheck is never a job verdict, so the deterministic rerun runs strictly before any CI fix round: cancellation and a GitHub pre-run infrastructure failure (a job that failed in setup/action resolution before any repository step ran, flaggedCheck.PreRunFailureby the opt-inscm.PreRunFailureDetectorand re-bucketed to cancel so it never masks a real test/lint failure, which cleared setup and failed a later step) are the outcomes that earn a rerun, either outcome after its budget parks asask-userinstead of entering theauto_fix.ciloop, and any genuine or unrecognized failure or merge conflict in the same poll suppresses reruns so real failures still escalate on their first observation. The budget is per check name per run and spent on request rather than on success, and a rerun is never issued once the published branch head no longer equalsruns.head_sha, because it would certify a commit this run never delivered. Each outstanding rerun records its verified pipeline head and the same-name provider links visible when it was requested; it retires durably when the run head advances or a new conclusive non-cancel link appears. Retirement keeps the spent budget and never changes check buckets. A delayed same-named green sibling can satisfy the link trigger on the same head, matching the default branch's existing name-keyed masking; removing that limitation requires provider truth outside this policy. Classification, the deliberateTIMED_OUT/STALEexclusions, rollup-lag grace, and retirement live ininternal/pipeline/steps/ci_transient.go; provider support is the optionalscm.CheckRerunner(GitHub only), pre-run infrastructure detection is the optionalscm.PreRunFailureDetector(GitHub only, folded in bymarkPreRunInfraFailures), and user-facing semantics are owned bydocs/src/content/docs/reference/repo-config.md. Regressions:TestCIStep_CancelledCheckIsRerunBeforeEscalating,TestCIStep_CancelledCheckStaysUnresolvedAfterItsBudget,TestCIStep_LaggingRerunRollupKeepsWaitingForTheRepublishedCheck,TestCIStep_SameHeadGreenRerunEmitsChecksPassed,TestCIStep_DelayedSameNameCheckRetainsLegacyNameBehavior,TestCIStep_ResolvedRerunDoesNotParkALaterGreenHead,TestRetireResolvedReruns,TestRetireResolvedRerunsRetriesAfterPersistenceFailure,TestCIStep_MovedPublishedHeadTerminatesInsteadOfRerunning,TestCIStep_MovedPublishedHeadClearsCIReadiness,TestClassifyCheckFailure,TestMarkPreRunInfraFailures_RetriesInfraButNotGenuine,TestMarkPreRunInfraFailures_OptInGated,TestPreRunFailures_FlagsSetupFailureNotGenuine,TestPreRunFailures_FailsClosedOnUnreadableRun. - Terminal is not pending. Readiness must reject every non pass/fail/skip bucket (
hasUnresolvedChecks), but only checks that can still finish on their own (hasPendingChecks) may keep the monitor polling. Acancelbucket - GitHubCANCELLED, GitLabcanceled, BitbucketSTOPPED, and how GitHub reports a job killed by its owntimeout-minutes- is a published conclusion that nothing will replace, so with no rerun outstanding it is reported as anask-usertransient finding (unresolvedTransientFindings, selected bycancelledWithoutRerun) instead of waiting. Conflating the two is the #628 regression that hung real runs for their wholeci_timeout; an unrecognized bucket is deliberately still treated as waiting, because unknown is not evidence of terminal. Regressions:TestCIStep_CancelledCheckAmongPassingChecksEscalatesInsteadOfPollingForever,TestCIStep_ZeroRerunBudgetEscalatesCancelledCheckWithoutMakingItReady,TestCIStep_BitbucketStoppedCheckParksForADecision. - CI readiness is read from the provider's live PR head check rollup on every poll, so it always describes the head the forge currently has for that PR; no recorded SHA gates it, and a run whose row still names a pre-advance commit must still recognize green at the head the pipeline last pushed. Regression:
TestCIStep_GreenChecksAtAdvancedHeadAreRecognizedWhileRunTracksOlderHead.
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.
- today Changed 9322953db6b6
- 4d ago Changed · +1 lines d8d70729ba29
- 13d ago First seen · 22 lines · 25 tokens per session scan A 3549c07f30f9
ci-monitor is a skill published in the GitHub repository kunchenguid/no-mistakes (8,416 stars, last pushed today), licensed MIT. It adds 25 tokens to every session and 2,624 once invoked, about $0.0001 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
import-prom-rule
Bulk import of a Prometheus alert rule YAML file (create a whole set of rules at once). Dedicated to handling a remote URL or local YAML text, automatically parsing the three formats groups / a plain rules array / a single rule. ⚠️ Do not use this skill for single-rule creation — when the user describes a single alert…
chinese-git-workflow
A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.
configure-env-variables
Configures environment variables for Power Pages site settings to support ALM across environments. Creates environment variable definitions in Dataverse, guides the user through linking site settings to those variables via the Power Pages Management app, adds the variables to the solution, and generates a…
atmos-profiles
Atmos profiles: profile directories, --profile and ATMOSPROFILE activation, profile merge behavior, environment switching, and routing profile-specific auth/toolchain/config overrides.
managing-github-actions-secrets
Creates and updates GitHub Actions secrets for PostHog workflows. Use when adding a new CI secret, rotating an existing secret, wiring a workflow to an API token, package registry credential, deploy key, or any value referenced via ${{ secrets. }} in .github/workflows/.
webhook-management
Configure and validate CCAM webhook targets across supported chat, incident, automation, and generic providers. Use when listing provider requirements, creating or updating a target, scoping it to alert rules, sending a test notification, reviewing delivery history, or deleting a target.