rust-port-validation-gauntlet
Use when running a Rust port through build, test, clippy, fmt, miri, fuzz, and bench gates. Triggers:
What this skill does
# rust-port-validation-gauntlet — drive a crate to all-green through every quality gate
> Take a Rust port/crate and run it through the full gate battery as a loop that
> iterates until everything is green, recording every dead end so it is never retried.
## ⚠️ Critical Constraints
- **One gate, one fix, one re-run — never batch.** Run a gate, fix exactly what it
reports, re-run that same gate before advancing.
**Why:** batched edits make it impossible to attribute a regression; a "fix" for
clippy can silently break a test, and you lose the causal chain.
- **Every failed attempt goes in the ledger before the next attempt.** No fix is
tried twice.
**Why:** the loop's whole value is monotonic progress; without negative evidence
an autonomous agent re-discovers the same dead end on every pass and never converges.
- **Never weaken a gate to make it pass.** Do not add `#[allow(...)]`, `--no-default-features`,
`#[ignore]`, or lower the lint level to get green.
**Why:** that converts a real defect into hidden debt and defeats the gauntlet.
WRONG: `#[allow(clippy::all)]` over the module. CORRECT: fix the lint, or record
in the ledger why the lint is provably inapplicable with a scoped, justified allow.
- **Gate order is fixed and fail-fast.** fmt → build → clippy → test → miri → fuzz → bench.
**Why:** cheap, deterministic gates first; a fmt or build failure invalidates every
downstream result, so running them first saves the whole battery.
## Why This Exists
A port (C/C++/Python → Rust, or a crate-split) is exactly where latent undefined
behavior, lint debt, and missing test coverage hide. Running gates ad-hoc and by
hand means an agent forgets what it already tried, oscillates between two broken
states, and declares victory after the cheap gates pass. This skill makes the
gauntlet **autonomous and monotonic**: a fixed gate order, a verification checkpoint
between every gate, and a persisted negative-evidence ledger so the loop converges
instead of looping forever.
## Quick Start
```bash
# from the crate root (the dir with Cargo.toml)
fmt: cargo fmt --all -- --check
build: cargo build --all-targets --all-features
clippy:cargo clippy --all-targets --all-features -- -D warnings
test: cargo test --all-features
miri: cargo +nightly miri test # UB detector (needs rustup component add miri)
fuzz: cargo +nightly fuzz run <target> -- -max_total_time=60
bench: cargo bench
```
Initialize the ledger once, then enter the loop:
```bash
bash {baseDir}/scripts/init-ledger.sh GAUNTLET-LEDGER.md
```
## The Gauntlet Loop
1. **Snapshot.** Record the crate name, toolchain (`rustc -Vv`), and enabled features
into the ledger header. This pins what "green" means.
2. **Pick the next red gate** in fixed order: fmt → build → clippy → test → miri →
fuzz → bench. Run only that gate.
3. **If green:** mark the gate PASS in the matrix, advance to the next gate.
4. **If red:** read the failure. **Before editing, check the ledger** — if this exact
approach is already a logged dead end, pick a different one. Apply ONE targeted fix.
5. **Verification checkpoint:** re-run the same gate. Also re-run fmt + build + clippy +
test (the fast quartet) to catch a fix that regressed an earlier gate.
6. **Log the outcome.** If the fix worked, note it. If it failed, append a
negative-evidence row (gate, approach, why it failed) so it is never retried.
7. **Repeat** until all gates in the matrix are PASS, or until a gate is logged as
blocked with evidence (e.g. miri unsupported for an FFI call) and explicitly waived.
Per-gate failure patterns, miri/fuzz setup, and the ledger schema:
see [references/gates.md](references/gates.md).
## Output Specification
- **File:** `GAUNTLET-LEDGER.md` at the crate root.
- A **gate matrix** table: `| Gate | Status | Last run | Notes |`.
- A **negative-evidence log** table: `| Gate | Approach tried | Why it failed | Date |`.
- **Stdout:** one PASS/FAIL line per gate per pass.
- Done = every row in the gate matrix is PASS or an evidence-backed WAIVED.
## Quality Rubric
- Every gate in the matrix is PASS or WAIVED-with-evidence; no gate left UNKNOWN.
- No gate was made to pass by weakening it (no blanket `allow`, no `--no-default-features`
shortcut, no `#[ignore]`) — verifiable by diffing the crate against the start snapshot.
- The negative-evidence log has no duplicate (gate, approach) rows — the loop never
retried a dead end.
## Examples
- **Clippy red on a ported module:** `cargo clippy ... -D warnings` flags
`needless_lifetimes`. Fix the signature, re-run clippy + the fast quartet, mark PASS.
- **Miri finds UB in unsafe FFI shim:** miri reports a use-after-free through a raw
pointer. Fix the lifetime; if miri cannot model the foreign call at all, log it
WAIVED with the exact unsupported-operation message as evidence.
## Troubleshooting
| Symptom | Likely cause | Move |
| --- | --- | --- |
| Loop oscillates between two failures | A fix for gate X regresses gate Y | Re-run the fast quartet after every fix (step 5); log both as a paired dead end |
| `cargo miri` not found | miri component/toolchain missing | `rustup +nightly component add miri`; see references/gates.md |
| Fuzz never finds a crash but never returns | No time bound | Always pass `-- -max_total_time=N`; treat clean run as PASS |
| Same fix attempted twice | Ledger not consulted before editing | Enforce step 4: read the negative-evidence log first |
## See Also
| I need to… | Reference |
| --- | --- |
| Per-gate failure patterns, miri/fuzz/bench setup, ledger schema | [references/gates.md](references/gates.md) |
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.