Execute end-to-end tests covering full user workflows across frontend and backend. Use when performing specialized testing.
Use when dispatched as a QA subagent to verify a single domain of a browser-game feature against a test-case list.
Execute integration tests validating component interactions and system integration. Use when performing specialized testing.
Execute mutation testing to evaluate test suite effectiveness. Use when performing specialized testing.
Run Node.js as a sidecar process in Tauri apps for JavaScript backend logic without requiring an end-user Node.js install.
Execute load testing, stress testing, and performance benchmarking. Use when performing specialized testing.
Runs the brokenrobot.xyz quality gate — type-check, lint, format-check, spec validation, DESIGN lint, design-token drift, build, and the third-party-resource guardrail — and…
Mechanical verification procedure for the verifier agent — detect available checks from project configuration, run them fastest-first in speed order, capture evidence, and derive…
Run automated release testing (UI or API) via the AWS DevOps Agent using a pre-configured test profile.
Execute fast smoke tests validating critical functionality after deployment. Use when performing specialized testing.
Drive strict red-green-refactor TDD discipline for any code change. Use when a user requests test-driven development, asks to write a failing test first, wants to add a feature…
Work with Runpod GPU infrastructure and documentation. Use when Codex needs to create, deploy, manage, debug, or review Runpod Pods, Serverless workers/endpoints, templates,…
AOSP Part V — Runtime. Use when reasoning about ART (dex2oat, AOT/JIT, baseline profiles, GC, oat/vdex/odex files, class loaders, JNI bridge) or the Native Bridge (Berber — from…
Vercel Runtime Cache API guidance — ephemeral per-region key-value cache with tag-based invalidation. Shared across Functions, Routing Middleware, and Builds.
Selects the optimal runtime ecosystem (JVM, .NET, Node.js/V8, native compilation) based on deployment characteristics, performance requirements, and operational constraints for…
Runtime operational metrics with meters, timers, histograms, and moving averages. node-measured patterns for tracking request rates, execution durations, error rates, and EWMAs…
Assess whether a feature is stateful or exempt, create and check its seven-part Runtime State Integration Contract, and summarize validation gaps.
Compiling formal invariants (TLA+, Alloy, temporal logic) into runtime monitors that continuously audit agent coordination daemons.
Use when making, reviewing, debugging, or scripting Runware API requests. Follow Runware's raw REST/WebSocket request shape, authentication, UUID, async polling, error, retry, and…
Runway ci integration — AI video generation and creative AI platform. Use when working with Runway for video generation, image editing, or creative AI.
Runway debug bundle — AI video generation and creative AI platform. Use when working with Runway for video generation, image editing, or creative AI.
Runway deploy integration — AI video generation and creative AI platform. Use when working with Runway for video generation, image editing, or creative AI.
Runway rate limits — AI video generation and creative AI platform. Use when working with Runway for video generation, image editing, or creative AI.
Runway reference architecture — AI video generation and creative AI platform. Use when working with Runway for video generation, image editing, or creative AI.
Check the current Agent Runway status - loaded architectural map, active conventions, module boundaries, and enforcement levels.
Guides users through migrating to Rust 2024 edition features including let chains, async closures, and improved match ergonomics.
Use rust-analyzer's Structural Search and Replace (SSR) to change lots of Rust code. SSR matches by AST structure and semantic meaning, understanding type resolution and path…
Audit Rust API documentation for required sections, intra-doc links, crate-level docs, and API-supporting private helper docs on changed APIs or whole-repo baseline audits when…
Distribution pipeline for signed Rust desktop applications -- code signing, notarization, auto-updates, and package manager distribution.
Checklist executor for Rust architecture reviews. Detects the Rust edition, async runtime, and workspace structure, then runs a systematic checklist covering ownership discipline,…
Use when writing async Rust — spawning tasks, sharing state across tasks/threads, choosing channels vs mutexes, or hitting Send-bound errors with async traits.
Rust async internals skill for understanding and debugging async Rust. Use when understanding the Future trait and poll model, Pin and Unpin, tokio task scheduling, debugging…
Master Rust async programming with Tokio, async traits, error handling, and concurrent patterns. Use when building async Rust applications, implementing concurrent system — from…
Master Rust async programming with Tokio, async traits, error handling, and concurrent patterns. Use when building async Rust applications, implementing concurrent system — from…
Read-only gap analysis comparing a Rust project's current quality setup against the 9-dimension methodology.
Rust coding guidelines for the Windmill backend. MUST use when writing or modifying Rust code in the backend directory.
Rust coding best practices based on Microsoft Pragmatic Rust Guidelines. ALWAYS invoke before writing or modifying Rust code.
A comprehensive guide to modern Rust best practices covering style, error handling, performance, concurrency, project organization, dependency management, documentation, testing,…
Comprehensive Rust coding standards, API design, and best practices with ~280 rules across 20 categories. Use when writing, reviewing, or refactoring Rust code.
Build and review Bevy procedural world generation with grid resources, deterministic seeds, reachability checks, chunk or room spawning, background generation boundaries, and…
Guides Rust binary size reduction for ccusage. Use when changing release profiles, dependency features, native packaging size, or investigating Rust executable bloat.
Build Rust native libraries for the FFI plugin
Use when when you have Rust source code (such as the mzPeak format implementation
Rust build, compilation, and dependency error resolution specialist. Fixes cargo build errors, borrow checker issues, and Cargo.toml problems with minimal changes.
Rust build time optimization skill for reducing slow compilation. Use when using cargo-timings to profile builds, configuring sccache for Rust, using the Cranelift backend,…
Run the full Rust workspace verification suite -- cargo fmt, clippy -D warnings, cargo test
Reviews Rust code for ownership, borrowing, lifetime, error handling, trait design, unsafe usage, and common mistakes.
Plugin-first Rust doctrine and runtime engine for ownership and type honesty, architecture decisions, async and concurrency, error handling, production posture, quality…
Common Rust development pitfalls: frequent compiler errors, struct constructor patterns, test organization, and coverage enforcement for reliable codebases.
Audit Rust concurrency and async code for correctness, Send/Sync discipline, blocking hazards, and lock/channel design on changed code or whole-repo baseline audits when…
Rust house style for subctl-adjacent work — cargo, clippy, rustfmt, error handling with `thiserror` / `anyhow`, async patterns with tokio, testing.
Shared reference for the Rust cluster: the library-vs-application error strategy (thiserror vs anyhow) that everything turns on, type-driven design conventions, the cargo tooling…
Use when writing or reviewing idiomatic Rust — edition 2024 features, ownership/borrowing design, and correcting the pitfalls that show up in LLM-generated Rust (clone tax, unwrap…
Systems programming specialist for Rust, ownership model, memory safety, concurrency, and performance optimizationUse when "rust, cargo, ownership, borrowing, lifetimes, rustc,…
Fetches crate metadata from the crates.io API and docs.rs API for Rust package discovery. Analyzes feature flags, dependency auditing via RustSec Advisory DB, and MSRV…
Scans Rust crate documentation using rustdoc JSON output and cargo-doc metadata. Indexes public API surfaces including traits, impls, and derive macros with cross-crate dependency…
Extracts and indexes Rust crate documentation using cargo-doc, docs.rs API, and syn for AST parsing. Generates searchable API references with cross-crate linking and example…
Indexes Rust crate documentation from docs.rs using rustdoc JSON output and cargo-doc. Extracts trait implementations, generic bounds, and lifetime annotations for searchable API…
Use when preparing a Rust crate release with metadata, semver, docs, tests, packaging, and rollback notes. Triggers:
Clone and explore Rust crate source code. Use when user wants to read source code for a Rust crate, explore a crate's implementation, understand how a crate works, or needs…