Skip to main content

这个仓库中的 skills

ahrav/Gossip-rs - 第 2 页

SkillsMP 已收集 ahrav/Gossip-rs 中的 85 个 Skill。打开任一 Skill 可查看来源和详情。

ahrav/Gossip-rs

已展示 40 / 85 个已收集 Skill。

职业分类
软件开发工程师
描述

Use when creating a new module in gossip-coordination, adding a gossip protocol component, or building a pipeline stage that touches distributed state. Generates DST-ready boilerplate with sans-IO pattern and proptest harnesses.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when /asm-forge shows autovectorization missed opportunities, when hot loops process arrays of bytes or integers, or when porting x86 SIMD to ARM NEON/SVE. Generates platform-specific intrinsics with correctness and performance validation.

原文语言:英语

更新
职业分类
数据库架构师
描述

Use when designing or auditing SQLite schemas, investigating slow queries, tuning indexes or pragmas, or reviewing WAL/journal configuration. Connects to the database for concrete evidence via EXPLAIN QUERY PLAN and page stats.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Use when a test module has many similar unit tests, when repetitive assertions could be replaced by property-based or parameterized tests, or when test maintenance cost is high. Consolidates verbose suites into rstest, proptest, or fuzz tests.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Use when test suites feel bloated, when unit tests duplicate coverage already provided by property-based or simulation tests, or during periodic test hygiene. Identifies and removes redundant tests while keeping signal.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Use when implementing a new feature and assessing coverage gaps, during periodic test hygiene, when test suites feel bloated, or before merging code that changes coordination or hot paths. Two-phase assess-then-improve testing pipeline.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Use when writing tests for new code and unsure which test type fits, when choosing between unit/rstest/proptest/fuzz/kani/sim, or when coordination or unsafe code changes need test coverage guidance. Recommends the optimal testing approach per code…

原文语言:英语

更新
职业分类
信息安全分析师
描述

Use when adding or modifying unsafe blocks, when reviewing code that uses raw pointers or transmute, or before merging changes to types with unsafe internals. Audits safety invariants and demands benchmark+ASM proof of performance benefit.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when the user wants to create a new runbook, write agent instructions for a repeatable task, or says "create a runbook for X", "write a runbook", "new runbook". Also triggers on "make this into a runbook" or converting an existing skill into a runbook.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Systematic multi-pass code deduplication audit for Rust workspaces. Use when duplication has accumulated across crates, when error boilerplate is excessive, when repeated From/Display/Error impls appear across modules, when onboarding thiserror, or when…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when AllocGuard trips and you need the call site, when /performance-analyzer flags allocations but you need attribution, when verifying HOT-tier allocation silence, or when /bench-compare shows regression and you suspect allocation overhead. Heap…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when flamegraph/perf profiling identified hot functions but you are unsure which are on the critical path, when optimizing a hot function yields no measurable improvement, when concurrent code has hidden contention or pipeline imbalance, or when you need…

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Use when a beads task exists and needs validation before implementation — verifies codebase references, identifies edge cases and design flaws, assesses scope and feasibility, splits oversized tasks, dispatches domain-specific skills (test-strategy,…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when optimizing Rust binary performance via profile-guided compilation and post-link layout — squeezing 10-30% from I-cache, branch prediction, and function placement without source changes

原文语言:英语

更新
职业分类
软件开发工程师
描述

Explain a PR's purpose, motivation, and architectural context with ASCII diagrams. Use when the user wants to understand what a PR does, why it exists, how it fits into the system, or asks for a visual summary of changes. Triggers on "explain this PR", "what…

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Review tests to ensure they actually prove the claimed invariant, especially state-machine, simulation, oracle, and regression tests where extra setup, missing negative paths, or order-sensitive comparisons can hide the real signal

原文语言:英语

更新
职业分类
软件开发工程师
描述

Respond to PR review comments by building the smallest proof that confirms or refutes the claim before changing code or docs — never blindly trust a reviewer

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Simulation-testability code review — enforces DST-compatible patterns in coordination, gossip, and pipeline code based on FoundationDB, TigerBeetle, sled, and Firezone evidence

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Assess and recommend the appropriate testing strategy for Rust code - unit tests, parameterized tests (rstest), property-based tests, fuzz tests, Kani model checking, or simulation testing

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when design documents in docs/ may be stale after code changes, when verifying boundary specs match current types and APIs, when checking for missing documentation coverage of new crates or features, or before merging branches that touch documented…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Write-then-verify documentation pipeline — a doc-rigor agent writes/improves docs, then a separate fresh doc-verify agent checks accuracy of API claims, command examples, units, and platform assumptions against code reality with zero confirmation bias

原文语言:英语

更新
职业分类
软件开发工程师
描述

Review Rust interfaces for ease of correct use and resistance to misuse, applying "make interfaces easy to use correctly and hard to use incorrectly"

原文语言:英语

更新
职业分类
数据库架构师
描述

Review and tune SQLite schemas, queries, indexes, and pragmas. Connects to the actual database to gather concrete evidence (EXPLAIN QUERY PLAN, page counts, table stats) before recommending changes.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when the user wants to package all source code into a tar.gz archive for upload or checkpoint. Creates a comprehensive archive of all workspace crates, docs, and config excluding binaries.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when the user wants a minimal source-only archive for upload or checkpoint. Creates a tar.gz with just source and test files from all workspace crates.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when a task needs an implementation plan that is iteratively created and stress-tested through review-and-revise cycles before implementation begins — catches blind spots, incorrect codebase assumptions, unnecessary complexity, and performance pitfalls…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Use when exploring the codebase conceptually — semantic search via claude-context MCP for queries like "how does X work", "find implementation of Y pattern", "where is the architecture for Z", understanding unfamiliar code, finding code by description rather…

原文语言:英语

更新
职业分类
软件开发工程师
描述

ASM-guided deep performance optimization. Collects assembly, audits codegen quality, applies targeted transforms, validates with benchmarks. Uses cargo-show-asm + Criterion as ground truth.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Run Criterion benchmarks with baseline comparison for performance optimization work

原文语言:英语

更新
职业分类
项目管理专家
描述

Use when creating any beads task — auto-researches the codebase, links related tasks, and produces a rich self-contained description from a structured template. Accepts minimal intent and outputs a complete task ready for agent implementation.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Run Jepsen-style cluster tests using Maelstrom (lightweight) or full Jepsen (heavyweight) — validates correctness of the deployed gossip-rs system with real network behavior, complementing in-process DST

原文语言:英语

更新
职业分类
软件开发工程师
描述

Deep Linux perf profiling — PMU counters, topdown analysis, flamegraphs, and annotated hotspot drill-down on ARM/Graviton

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Performance regression testing workflow for hot path changes

原文语言:英语

更新
职业分类
软件开发工程师
描述

Analyze Rust code for performance issues, allocation hot spots, and optimization opportunities

原文语言:英语

更新
职业分类
信息安全分析师
描述

Workflow for modifying and benchmarking detection rules

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Run cargo-fuzz targets with proper nightly toolchain and options

原文语言:英语

更新
职业分类
信息安全分析师
描述

Audit memory safety and security in unsafe code blocks, buffer handling, and security-sensitive operations

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Run deterministic simulation tests with progressive difficulty levels (sunny/stormy/radioactive) inspired by TigerBeetle VOPR — orchestrates seed management, workload selection, and invariant verification

原文语言:英语

更新
职业分类
软件开发工程师
描述

Scaffold simulation-testable modules with sans-IO pattern, proptest state machine tests, and fault injection points — prevents retrofitting costs by making code DST-ready from the start

原文语言:英语

更新
职业分类
软件开发工程师
描述

SIMD vectorization for Rust — detects ISA features, identifies vectorizable patterns, generates platform-specific intrinsics (ARM NEON/SVE, x86 SSE/AVX/AVX-512), validates correctness and performance. Uses tiered research with baked-in references and…

原文语言:英语

更新
已展示 40 / 85 个已收集 Skill。