Skip to main content
Manusで任意のスキルを実行
ワンクリックで
GitHub リポジトリ

scratch-scanner-rs

scratch-scanner-rs には ahrav から収集した 60 個の skills があり、リポジトリ単位の職業カバレッジとサイト内 skill 詳細ページを表示します。

収集済み skills
60
Stars
2
更新
2026-02-28
Forks
0
職業カバレッジ
4 件の職業カテゴリ · 100% 分類済み
リポジトリエクスプローラー

このリポジトリの skills

doc-rigor
ソフトウェア品質保証アナリスト・テスター

Write-then-verify documentation pipeline. Use when a user asks to improve comments or docs, explain algorithms or design choices, write or upgrade docstrings, or raise documentation quality for a codebase (especially Rust crates). Writes docs, then automatically verifies every claim against code reality using a fresh agent to eliminate confirmation bias.

2026-02-28
execute-review-findings
ソフトウェア開発者

Use when you have code review findings, PR comments, or review reports that need to be systematically addressed — especially when there are multiple findings across different files and severities

2026-02-24
create-task
ソフトウェア開発者

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.

2026-02-24
execute-review-findings
ソフトウェア品質保証アナリスト・テスター

Use when you have code review findings, PR comments, or review reports that need to be systematically addressed — especially when there are multiple findings across different files and severities

2026-02-24
plan-forge
ソフトウェア開発者

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 while changes are still cheap

2026-02-24
plan-review
ソフトウェア開発者

Use when a markdown plan file exists and needs validation before implementation — catches design flaws, logic holes, footguns, unnecessary complexity, and performance concerns while changes are still cheap

2026-02-23
plan-forge
ソフトウェア開発者

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 while changes are still cheap

2026-02-23
test-consolidate
ソフトウェア品質保証アナリスト・テスター

Consolidate verbose test suites by replacing repetitive unit tests with property-based tests, parameterized tests (rstest), or fuzz tests. Less code to maintain, same or better coverage.

2026-02-23
doc-rigor-verify
ソフトウェア開発者

Write-then-verify documentation pipeline — a doc-rigor agent writes/improves docs, then a separate fresh doc-verify agent checks accuracy against code reality with zero confirmation bias

2026-02-20
doc-verify
ソフトウェア品質保証アナリスト・テスター

Verify documentation accuracy against code reality and external claims — runs as a fresh agent after /doc-rigor to prevent confirmation bias

2026-02-20
jepsen-test
ソフトウェア品質保証アナリスト・テスター

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

2026-02-20
sim-review
ソフトウェア品質保証アナリスト・テスター

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

2026-02-20
sim-run
ソフトウェア品質保証アナリスト・テスター

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

2026-02-20
sim-scaffold
ソフトウェア品質保証アナリスト・テスター

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

2026-02-20
simd-optimize
ソフトウェア開発者

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 /deep-research fallback.

2026-02-20
unsafe-review
ソフトウェア品質保証アナリスト・テスター

Comprehensive review of unsafe code — audits safety invariants, demands benchmark+ASM proof of performance benefit, and verifies Miri/Kani/fuzz/property test coverage for every unsafe block

2026-02-20
doc-verify
ソフトウェア品質保証アナリスト・テスター

Verify documentation accuracy against code reality and external claims — runs as a fresh agent after /doc-rigor to prevent confirmation bias

2026-02-20
deeper-research
ソフトウェア開発者

Comprehensive 6-phase research funnel — 8-10 parallel survey agents sweep wide, a synthesizer compiles evidence, deep-dive and adversarial agents run in parallel to elaborate and challenge findings, a final synthesizer reconciles everything, and an integrator maps verified findings to a concrete codebase plan with full traceability

2026-02-19
dist-sys-auditor
ソフトウェア品質保証アナリスト・テスター

Distributed systems design and implementation auditor — enforces evidence-backed coordination decisions, citation requirements, invariant tracking, and correctness verification against academic literature, battle-tested systems, and the project's locked architectural decisions

2026-02-19
jepsen-test
ソフトウェア品質保証アナリスト・テスター

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

2026-02-19
sim-review
ソフトウェア品質保証アナリスト・テスター

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

2026-02-19
sim-run
ソフトウェア品質保証アナリスト・テスター

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

2026-02-19
sim-scaffold
ソフトウェア開発者

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

2026-02-19
test-strategy
ソフトウェア品質保証アナリスト・テスター

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

2026-02-19
simd-optimize
ソフトウェア開発者

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 /deep-research fallback.

2026-02-13
unsafe-review
ソフトウェア品質保証アナリスト・テスター

Comprehensive review of unsafe code — audits safety invariants, demands benchmark+ASM proof of performance benefit, and verifies Miri/Kani/fuzz/property test coverage for every unsafe block

2026-02-13
asm-forge
ソフトウェア開発者

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

2026-02-13
asm-forge
ソフトウェア開発者

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

2026-02-13
pr-comment-response
ソフトウェア品質保証アナリスト・テスター

Respond to PR review comments by verifying bug reports with failing tests before fixing code — never blindly trust a reviewer

2026-02-12
archive-src
ソフトウェア開発者

Use when the user wants a minimal source-only archive for upload or checkpoint. Creates a tar.gz with just src/ and tests/ directories.

2026-02-12
bench-compare
ソフトウェア開発者

Run Criterion benchmarks with baseline comparison for performance optimization work

2026-02-12
deep-research
ソフトウェア開発者

Deep research before design — 3-5 parallel research agents survey papers, production systems, failure modes, and prior art, then a synthesizer compiles evidence, and an integrator maps findings to a concrete codebase plan with citations

2026-02-12
design-tournament
ソフトウェア開発者

Run a parallel diverge-then-converge design tournament — 3-5 independent agents explore a problem, then 2 ranking agents evaluate and stack-rank the results with confidence scores

2026-02-12
interface-design-review
ソフトウェア開発者

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

2026-02-12
linux-perf-profile
ソフトウェア開発者

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

2026-02-12
perf-regression
ソフトウェア品質保証アナリスト・テスター

Performance regression testing workflow for hot path changes

2026-02-12
performance-analyzer
ソフトウェア開発者

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

2026-02-12
review-dispatch
ソフトウェア品質保証アナリスト・テスター

Parallel specialist code review — 6 focused agents (correctness, design, performance, safety, docs, complexity) diverge independently, then a single ranker merges findings into an importance-ranked report with confidence scores

2026-02-12
rule-optimize
ソフトウェア開発者

Workflow for modifying and benchmarking detection rules

2026-02-12
run-fuzz
ソフトウェア品質保証アナリスト・テスター

Run cargo-fuzz targets with proper nightly toolchain and options

2026-02-12
このリポジトリの収集済み skills 60 件中、上位 40 件を表示しています。