技能雷达 · GITHUB
值得安装的 Agent Skills。
汇总公开仓库中已验证的 Skills。安装前先看清它能做什么、包内包含什么、热度如何,以及来源是否可靠。
- 目录范围
- 已验证
- Skills
- 10,772
- 仓库
- 1711
- 最近同步
- 2026年9月23日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
full-stack-skillsrust-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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月19日
kevinniotutor
- 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.
- 安装量
- 1
- GitHub Stars
- 5
- 最近更新
- 9月22日
wearescientistawesome-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.
- 安装量
- 1
- GitHub Stars
- 9
- 最近更新
- 5月20日
willem4130elite-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.
- 安装量
- 1
- GitHub Stars
- 9
- 最近更新
- 11月11日
blaxel-aiblaxel-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.
- 安装量
- 1
- GitHub Stars
- 3
- 最近更新
- 9月15日
blaxel-aiblaxel-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.
- 安装量
- 1
- GitHub Stars
- 3
- 最近更新
- 9月15日
spillwavesolutionsmastering-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".
- 安装量
- 1
- GitHub Stars
- 8
- 最近更新
- 12月29日
fountain-fmfountain-clip-finder
Find the strongest clip moments in a show, write the post copy, and open a draft post for each channel.
- 安装量
- 1
- GitHub Stars
- 2
- 最近更新
- 9月21日
fountain-fmfountain-clip-producer
Render a clip post into a finished, platform-ready video with framing, captions, and overlays.
- 安装量
- 1
- GitHub Stars
- 2
- 最近更新
- 9月21日
fountain-fmfountain-daily-growth
Read yesterday's results and today's news, then brief fountain-clip-finder on the best trends.
- 安装量
- 1
- GitHub Stars
- 2
- 最近更新
- 9月21日
fountain-fmfountain-onboarding
Set up Fountain. Trigger on first use, when asked, when preferences are empty, or when a skill is missing something.
- 安装量
- 1
- GitHub Stars
- 2
- 最近更新
- 9月21日
fountain-fmfountain-reports
Build the reports the user reads - compose components into a preset, then email or print it.
- 安装量
- 1
- GitHub Stars
- 2
- 最近更新
- 9月21日