checked 4d ago
Ship a risky change behind a feature gate
Walks through adding an autogate to workerd—registering the enum, mapping the string, wiring usage, and writing tests—so you can roll out safely and revert fast.
Engineering / pipelines-datafor-engineersplanning
checked 4d ago
Locate and run a test in workerd
Navigates the workerd test hierarchy (wd-test, kj_test targets, bazel patterns) and runs the right test for your change — including parent-project integration tests when needed.
Engineering / workflow-sprint-structurefor-engineerslight-setup
checked 4d ago
Keep your bug hunt organized and searchable
Creates a structured investigation log that grows with you through a bug hunt—capturing what you've checked, dead ends, and partial findings so you don't re-derive the same conclusions or lose the thread.
Engineering / debugging-investigationatomicfor-engineers
checked 4d ago
Give feedback on code without sounding harsh
Structures a PR review with suggested edits, tone guardrails, and templates so feedback lands as helpful rather than critical. Works with GitHub CLI.
Engineering / code-reviewatomicfor-engineers
checked 4d ago
Catch Rust safety issues in workerd code
Reviews Rust code for unsafe patterns, CXX FFI correctness, JSG resource leaks, and error handling. Runs through a domain-specific checklist tuned for workerd's C++ interop.
Engineering / code-reviewatomicfor-engineers
checked 4d ago
Update V8 in workerd without breaking the build
Walks through the full sequence for bumping V8: rebasing patches, updating hashes, verifying integrity, and testing. Catches the order-dependent steps that break silently.
Engineering / pipelines-dataatomicfor-engineers
checked 4d ago
Set up commit categories for your changelog
Defines which file paths and commit messages map to which changelog sections (Features, Bugfixes, Docs, etc.). Load this once, then reference it in changelog generation.
Engineering / pipelines-datametafor-engineers
checked 4d ago
Verify the fix actually works before shipping
Runs the relevant test suite, build steps, or integration checks and confirms output against the original problem statement before allowing a "done" claim.
Engineering / code-reviewatomicfor-engineers
checked 4d ago
Add a compatibility flag to workerd
Walks through the full checklist: schema changes, C++ wiring, test coverage, and docs. Catches the easy mistakes that block a PR.
Engineering / workflow-sprint-structureatomicfor-engineers
checked 4d ago
Run bazel tests without hidden false passes
Enforces hygiene rules before bazel test runs—clears caches, validates filter flags, and catches partial test matches that silently pass. Prevents confident bugs from stale results.
Engineering / pipelines-dataatomicfor-engineers
checked 4d ago
Draft copy that pastes cleanly into any platform
Formats drafts as markdown so bold, lists, code blocks, and links stay intact when you copy them into GitHub, Jira, Notion, or your wiki — no reformatting after paste.
Engineering / workflow-sprint-structuremetafor-engineers
checked 4d ago
Debug module-registry issues in workerd
Helps engineers navigate workerd's module registry, troubleshoot resolution and compilation errors, and review registration code against the three reference specs.
Engineering / debugging-investigationatomicfor-engineers
checked 4d ago
Pressure-test code review feedback before you act
Takes a reviewer's comment and checks it for logical consistency, testing implications, and hidden assumptions — surfaces when feedback is vague, contradicts the codebase, or misses context.
Engineering / code-reviewatomicfor-engineers
checked 4d ago
Find a bug by writing a test for it
Guides you to write a minimal, failing test that reproduces the bug, then narrows the cause by toggling code until the test passes. Faster than reading logs.
Engineering / debugging-investigationatomicfor-engineers
checked 4d ago
Review C++ code against workerd style rules
Applies Cloudflare's C++ style guidelines (naming, memory management, error handling, constness) to pull requests or code snippets in the workerd codebase.
Engineering / code-reviewatomicfor-engineers
checked 4d ago
Review workerd code for perf and web-standard fit
Examines workerd API patches for performance regressions, web-standards compliance, security gaps, and compatibility flags. Flags tcmalloc tradeoffs and autogates misalignment.
Engineering / code-reviewatomicfor-engineers
checked 4d ago
Spot memory and thread bugs in C++ code
Reviews C++ for unsafe lifetime patterns, V8/KJ boundary hazards, cross-thread access, and coroutine pitfalls—catches the subtle errors human review often misses in workerd-style systems code.
Engineering / code-reviewatomicfor-engineers