- Home
- /
- Categories
- /
- Debugging
Debugging
Find and fix bugs, error analysis
effect-ts
by ivanacostarubio
ALWAYS use this skill when writing ANY TypeScript code. All TypeScript in this project MUST use the Effect library. Use Effect for error handling (not try/catch), Effect.gen for async code (not async/await with Promises), Schema for validation (not zod/yup), Services and Layers for dependency injection, and Effect patterns for all business logic. This applies to any TypeScript file creation, modification, or code generation.
code-reviewer
by jgarrison929
Use when reviewing code changes, pull requests, or asking for code quality feedback. Covers readability, maintainability, security, performance, error handling, naming conventions, and test coverage.
faasjs-unit-testing
by faasjs
FaasJS unit testing playbook - use test() only, shared mocks setup, and coverage matrix.
golang
by dmonteroh
"Build and review production Go (1.21+) services/CLIs with idiomatic design, correctness, and safe concurrency/cancellation patterns."
qa-run
by ajaywadhara
"8-agent QA loop: browser exploration via Playwright MCP, then analyze, plan, test, audit, heal, expand, snapshot. Quality gate score >= 85 to pass."
code-review
by terraphim
Thorough code review for Rust/WebAssembly projects. Identifies bugs, security issues, performance problems, and maintainability concerns. Provides actionable feedback with specific suggestions.
fix-bug
by ajaywadhara
"Bug-to-test pipeline: reproduce the bug as a failing test first, then fix. The regression test lives forever."
adonisjs
by filipebraida
Build AdonisJS 6 features from scratch through production. Full lifecycle - build, debug, test, optimize, refactor. Follows TypeScript-first, Lucid ORM, and AdonisJS conventions.
flipswitch-status
by flipswitch-io
Shows an overview of all feature flags with on/off status per environment, targeting rules, and rollout indicators. Use when checking the current state of feature flags or when the user asks about flag status across environments.
debrief
by MuathZahir
This skill should be used when the user asks to "create a Debrief trace", "generate a code walkthrough", "make a narrated code explanation", "create a replay trace", "write trace narration", or mentions Debrief traces, JSONL trace files, or code walkthrough generation. Provides comprehensive guidance for writing natural, engaging narration that sounds like a senior engineer explaining code.
test-driven-development
by Jackiexiao
"Use before implementation for features/bugfixes: write tests first."
traces-and-audit
by tracemem
Auditing memory traces and debugging.
nextjs-404-troubleshooting
by WebSmartTeam
Fix Next.js 404 errors from async params, localStorage SSR issues, and domain config mismatches. Covers Next.js 15/16 breaking changes where params became Promise-based. Triggers: 404 error, page not found, pages not generating, all 404s, localStorage SSR, async params, generateStaticParams not working.
non-stop
by WebSmartTeam
Work autonomously until task is complete with self-correction loop. No questions asked - makes decisions based on evidence (console errors, screenshots, test results). Use when you want continuous uninterrupted work. Can be combined with ultraplan phases - "Create Phase 2 in non-stop mode". Triggers: non-stop, don't stop, work until done, autonomous mode, keep going, work autonomously, no questions.
scf-worker
by lpding888
云函数工程师,负责腾讯云 SCF 无服务器函数开发。遵循最小权限、幂等、重试+死信、可观测性工程基线。处理 COS 直传签名、回调处理、媒体转码、Webhook 转发、批处理任务。适用于收到 SCF 部门任务卡(如 CMS-S-001)或修复类任务卡时使用。
fundamentals
by pluginagentmarketplace
Core JavaScript fundamentals including variables, data types, operators, control flow, and basic syntax. Essential foundation for all JavaScript development.
receiving-code-review
by Jackiexiao
"Use when receiving code review feedback; verify suggestions before implementing."
implementation
by terraphim
Production-ready code implementation following approved designs. Writes clean, tested, documented code. Zero linting violations. All code includes tests.
debugging
by terraphim
Systematic debugging for Rust applications. Root cause analysis, logging strategies, profiling, and issue reproduction. All debug changes removed before final report.
msw
by thongdn-it
MSW (Mock Service Worker) best practices for API mocking in tests (formerly test-msw). This skill should be used when setting up MSW, writing request handlers, or mocking HTTP APIs. This skill does NOT cover general testing patterns (use test-vitest or test-tdd skills) or test methodology.
javascript
by dmonteroh
"Build and debug modern JavaScript (ES6+) with async patterns and Node.js/browser compatibility when authoring, modernizing, or diagnosing JS."
ecosystem
by pluginagentmarketplace
JavaScript ecosystem including npm, build tools (Webpack, Vite), testing (Jest, Vitest), linting, and CI/CD integration.
open-source-contribution
by terraphim
Open source contribution best practices. Creating quality pull requests, writing good issues, following project conventions, and collaborating effectively with maintainers.
gs-sst-infra
by gilbertopsantosjr
Guide for AWS serverless infrastructure using SST v3. Covers DynamoDB, Next.js deployment, Lambda handlers with Clean Architecture adapter pattern, and CI/CD configuration.