RADAR DES SKILLS · GITHUB

Des Agent Skills utiles, classés selon leur usage réel.

Comparez les Skills vérifiés par fonction, contenu, installations et fiabilité de la source avant de les ajouter.

PÉRIMÈTRE
VÉRIFIÉ
Skills
10 772
dépôts
1711
dernière synchronisation
23 sept. 2026
10 772 Skills
full-stack-skills
Communauté

rust-code-review

Review Rust changes for correctness, memory and thread safety, error semantics, unnecessary allocation or cloning, lock scope, API compatibility, test gaps, documentation, and dependency risk, applying the Rust API Guidelines checklist (C-PANIC, C-UNWRAP, C-TRANSMUTE, C-BOOL, C-NEWTYPE, C-COMMON-TRAITS, C-CONVERT, C-SEALED, C-NON-EXHAUSTIVE). Use when reviewing Rust diffs, pull requests, libraries, unsafe boundaries, or production incidents; report actionable findings by severity before summaries, route automated formatting or lint policy to rust-style-clippy, and route API shape decisions (trait sealing, error taxonomy, newtype design, builder patterns) to rust-api-design.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-concurrency

Design, implement, diagnose, and test Rust concurrency and parallelism with threads, Send and Sync, locks, atomics, channels, Tokio, Rayon, Crossbeam, bounded backpressure, actor ownership, task supervision, graceful shutdown, runtime diagnostics, and Loom model tests. Use when users ask about shared state, deadlocks, async tasks, CPU parallelism, high concurrency, daemon resource budgets, slow consumers, worker pools, lock-free structures, or concurrent correctness.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-crate-discovery

Discover, evaluate, score, and compare Rust crates for adoption — search crates.io, fetch metadata from 4 sources (crates.io API, docs.rs, GitHub API, RustSec advisory DB), apply a weighted 0-100 scoring model across adoption/maintenance/documentation/maturity/community/license, flag red concerns (unmaintained, advisories, no docs, single-maintainer), and recommend the best fit. Use when users ask "which crate should I use for X", "is this crate maintained/safe/popular", "compare these 3 crates", or need to pick a dependency before adoption; hand post-adoption governance (cargo-deny, license policy, advisory response) to rust-dependencies, semver and breaking-change classification to rust-semver, and manifest mechanics to rust-cargo-build.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-dependencies

Manage Rust dependency governance at scale — version requirement strategy, crate and source selection, feature minimization, transitive dependency analysis, cargo-deny license/ban/advisory/source policy, cargo-audit, cargo-outdated, Renovate/Dependabot automation, dependency update cadence, cycle diagnosis, and supply-chain security. Use for dependency strategy, crate approval, license compliance, advisories, allowed sources, automated updates, or dependency-graph governance; hand Cargo manifest and registry configuration, lockfile mechanics, resolvers, and Cargo command behavior to rust-cargo-build, semver compatibility decisions to rust-semver, and lint policy to rust-style-clippy.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-documentation

Design, write, build, test, and publish Rust documentation with rustdoc, cargo doc, doctests, intra-doc links, crate-level guides, examples, README synchronization, mdBook, docs.rs metadata, link checking, documentation CI, and the Rust API Guidelines Documentation chapter (C-DOC, C-LINK, C-META, C-EXAMPLE). Use when users ask for Rust API docs, a project book, runnable examples, docs.rs readiness, missing-doc policy, API guideline compliance, documentation architecture, or stale documentation repair.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-macros

Design, name, implement, debug, test, and review Rust declarative and procedural macros, including macrorules matchers and repetition, hygiene, $crate paths, derive, attribute and function-like macros, proc-macro crate naming, syn parsing, quote generation, diagnostics, cargo-expand, doctests, and trybuild. Use when users need compile-time code generation, a Rust DSL, or guidance choosing -derive versus -macros; keep ordinary trait, generic, or handwritten APIs outside macros unless generation has a clear maintenance benefit.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-module-layout

Design and enforce the internal layout of a single Rust crate — lib.rs/main.rs as a thin index, semantically named directory modules, mod declarations, pub visibility, and targeted re-exports. Use when users ask how to organize src/, write lib.rs, split a growing crate into subdirectories, choose between foo.rs and foo/mod.rs, name modules, avoid flat lib.rs "index plus glob re-export" anti-patterns, or migrate Java-style or Python-style flat projects to idiomatic Rust module trees.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-performance

Measure, profile, optimize, and regression-test Rust performance across latency, throughput, CPU, allocations, memory, binary size, and compile time using representative workloads, Criterion, iai-callgrind, cargo-flamegraph, samply, DHAT, heap or pprof tools, cargo-bloat, cargo-llvm-lines, and build timings. Use when users report slow Rust code, high memory or CPU, large binaries, noisy benchmarks, tail-latency regressions, or need performance budgets and evidence-backed optimization.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-semver

Manage Rust crate semantic versioning — what counts as a public API (visible items + reachable through re-exports), pre-1.0 rules (0.x.y compatibility), breaking change detection via cargo-semver-checks (270+ lints), workspace lockstep publishing with cargo-workspaces, yank/deprecate workflows, RustSec advisories, and the semver implications of [nonexhaustive], sealed traits, hidden modules, feature flags, and trait impl additions. Use when users ask whether a change is breaking, want to publish a new version safely, run cargo-semver-checks, coordinate multi-crate workspace releases, or handle a yanked/advisory situation; hand Cargo manifest mechanics to rust-cargo-build, API design choices to rust-api-design, and CI config to rust-style-clippy.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-stdlib

Select and compose Rust standard-library APIs — collections (HashMap/BTreeMap/Vec/VecDeque/LinkedList/BinaryHeap), smart pointers (Box/Rc/Arc/RefCell/Mutex/OnceLock/LazyLock), string types (String/&str/OsString/PathBuf/Cow), interior mutability (Cell/RefCell/OnceCell/OnceLock), I/O streams (Read/Write/BufRead), iterators, Option/Result combinators, threads and mpsc channels, time (Duration/Instant/SystemTime), paths, env, process, fs, net, and module selection decisions. Use when users ask "which std type should I use", compare collection/pointer/string alternatives, design Option/Result chains, choose Cell vs RefCell vs Mutex, work with std threads/channels, or pick the right std module for a task; hand async runtime to rust-concurrency, language semantics to rust-stable, and application-layer concerns to domain skills.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-style-clippy

Apply and diagnose Rust style, rustfmt, Clippy, compiler diagnostics, Edition migrations, lint policy, idiomatic control flow, error handling, allocation behavior, production Rust conventions, and the Rust API Guidelines ↔ Clippy lint mapping. Use when users ask to format or lint Rust, fix warning or error codes, migrate editions, review unwrap or clone usage, improve idioms, map a C- API guideline rule to the enforcing Clippy lint, or establish CI quality gates. Route API shape decisions (naming conventions, type/trait design, module layout, full C- guideline review) to the rust-api-design skill.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-unsafe-ffi

Design, implement, audit, and test unsafe Rust and foreign-function boundaries, including raw pointers, validity and aliasing invariants, MaybeUninit, layout, Pin, manual Send and Sync, allocators, C ABI declarations, callbacks, ownership transfer, unwinding, and Edition 2024 unsafe syntax. Use when safe Rust cannot express the required memory or ABI operation; require minimal unsafe blocks, explicit safety contracts, safe wrappers, Miri where applicable, and real platform integration tests.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
full-stack-skills
Communauté

rust-workspace

Design Rust project topology — single-crate packages, project-sized multi-crate workspaces (small root-flat, hybrid/domain-grouped, contained crates/, nested, or root-package layouts), workspace-level configuration, dependency DAGs, and crate-boundary decisions. Use when users ask how to split a project into crates, choose paths from the resulting project scale instead of copying a source-language module tree, configure a workspace, avoid dependency cycles, refactor a mixed root-package workspace, or decide between modules and crates. For in-crate src/ layout, see rust-module-layout.

installations
1
GitHub Stars
5
Mis à jour
19 sept.
kevinnio
Communauté

tutor

- TuTor learning-by-doing tutor for teachers and students: coaches without giving the full solution, verifies each step with read-only tools, never writes or runs the user's deliverable. Use when learning, practice, homework, tutorials, or the user says not to do the work for them.

installations
1
GitHub Stars
5
Mis à jour
22 sept.
wearescientist
Communauté

awesome-design-md

Select and apply a fitting Awesome Design MD DESIGN.md style for frontend/UI work. Use when the user asks to design UI, redesign a page, beautify a frontend, create a dashboard, improve layout/visual hierarchy, change visual style, use a big-company design style, or mentions DESIGN.md, Awesome Design MD, big-tech styles, brand-inspired UI, Apple/Stripe/Linear/Cursor/Raycast/Voltagent/Binance/Coinbase/xAI-style interfaces.

installations
1
GitHub Stars
9
Mis à jour
20 mai
willem4130
Communauté

elite-powerpoint-designer

Create world-class PowerPoint presentations with professional design, consistent branding, sophisticated animations, and polished visual hierarchy. Use when users request presentations, slide decks, pitches, reports, or want to convert markdown to professionally designed PowerPoint with Apple/Microsoft/Google-level quality.

installations
1
GitHub Stars
9
Mis à jour
11 nov.
blaxel-ai
Communauté

blaxel-cli

Manage Blaxel resources from the command line using the bl CLI. Deploy agents, sandboxes, jobs, and MCP servers. Also installs the Blaxel CLI if not present.

installations
1
GitHub Stars
3
Mis à jour
15 sept.
blaxel-ai
Communauté

blaxel-sdk

Use when creating cloud sandboxes (microVMs) to run code, start dev servers, and generate live preview URLs. Also covers deploying AI agents, MCP servers, batch jobs, and Agent Drives (shared filesystems) on Blaxel's serverless infrastructure. Reach for this skill when you need isolated compute environments, real-time app previews, shared file storage across sandboxes, or to deploy agentic workloads.

installations
1
GitHub Stars
3
Mis à jour
15 sept.
spillwavesolutions
Communauté

mastering-aws-cli

AWS CLI v2 quick-reference for experienced developers. Covers compute (Lambda, ECS, EKS), storage (S3, DynamoDB, Aurora), networking (VPC, SSM tunneling), security (IAM, Secrets Manager), and GitHub Actions CI/CD. Use when asked to "write aws commands", "debug aws access", "set up cross-account roles", "configure aws cli", "assume role", "S3 bucket operations", or "deploy to ECS".

installations
1
GitHub Stars
8
Mis à jour
29 déc.
fountain-fm
Communauté

fountain-clip-finder

Find the strongest clip moments in a show, write the post copy, and open a draft post for each channel.

installations
1
GitHub Stars
2
Mis à jour
21 sept.
fountain-fm
Communauté

fountain-clip-producer

Render a clip post into a finished, platform-ready video with framing, captions, and overlays.

installations
1
GitHub Stars
2
Mis à jour
21 sept.
fountain-fm
Communauté

fountain-daily-growth

Read yesterday's results and today's news, then brief fountain-clip-finder on the best trends.

installations
1
GitHub Stars
2
Mis à jour
21 sept.
fountain-fm
Communauté

fountain-onboarding

Set up Fountain. Trigger on first use, when asked, when preferences are empty, or when a skill is missing something.

installations
1
GitHub Stars
2
Mis à jour
21 sept.
fountain-fm
Communauté

fountain-reports

Build the reports the user reads - compose components into a preset, then email or print it.

installations
1
GitHub Stars
2
Mis à jour
21 sept.