- Home
- /
- Categories
- /
- Debugging
Debugging
Find and fix bugs, error analysis
chaos-engineer
by dmonteroh
"Design and run safe chaos experiments (failure injection + game days) to validate resilience and reduce blast radius. Produces hypotheses, steady-state signals, rollback gates, and experiment specs. Use when resilience is uncertain or before high-risk changes."
clean-code-principles
by emvnuel
Detects violations of Clean Code principles and suggests refactorings. Use when reviewing code quality, improving readability, or refactoring methods, classes, and modules.
testing
by pluginagentmarketplace
JavaScript testing with Jest, Vitest, and Testing Library for comprehensive test coverage.
socket-programming
by pluginagentmarketplace
Low-level socket programming including BSD sockets, Winsock, and network byte manipulation
debugging
by pluginagentmarketplace
JavaScript debugging techniques using DevTools, Node.js debugger, and advanced troubleshooting.
coding-standards
by yzlin
Guide for writing clean, maintainable code following industry best practices and design principles like DRY, SOLID, and composition patterns. Use when writing any code to ensure consistency, readability, and long-term maintainability across all programming languages.
markdown-writing
by huminglong
Guidelines for creating and modifying markdown files. Use when writing documentation, README files, or any markdown content.
xm-cloud
by twofoldtech-dakota
Apply when working with Sitecore XM Cloud, JSS, Next.js rendering host, or Experience Edge
frontend-modern
by twofoldtech-dakota
Modern frontend patterns for headless Optimizely CMS (React, Next.js)
gs-create-domain-module
by gilbertopsantosjr
Creates complete, production-ready feature modules following Clean Architecture OOP principles with Entities, Use Cases, Repository pattern, DI Container, and thin adapter actions. Adapted for Next.js 15+, DynamoDB/OneTable, ZSA, and Vitest.
flipswitch-toggle
by flipswitch-io
Enables or disables a feature flag in a specific environment. Use when changing a flag's state, turning on a feature for testing, or disabling a flag in production.
commit
by idjoo
"Smart atomic commits with Conventional Commits and emoji. Use when committing changes, creating git commits, or when the user says 'commit'. Analyzes workspace changes, splits into logical atomic units, and commits with emoji conventional format (type(scope): emoji description)."
devops
by terraphim
DevOps automation for Rust projects. CI/CD pipelines, container builds, deployment automation, and infrastructure as code. Optimized for GitHub Actions and Cloudflare deployment.
component-library
by pluginagentmarketplace
Build production-grade, accessible, and tested component libraries with Storybook, Chromatic, and design tokens
kata-debug
by gannonh
Systematically debug issues, investigating bugs, troubleshooting problems, or tracking down errors with persistent state across context resets. Triggers include "debug", "investigate bug", "troubleshoot", "find the problem", "why isn't this working", and "debug session".
web3-frontend
by pluginagentmarketplace
Master Web3 frontend development with wallet integration, viem/wagmi, and dApp UX
python-reviewer
by physics91
WHEN: General Python code review, PEP8 compliance, type hints, Pythonic patterns WHAT: PEP8/style check + Type hint validation + Pythonic idioms + Error handling + Documentation WHEN NOT: FastAPI → fastapi-reviewer, Django → django-reviewer, Data science → python-data-reviewer
security-scanner
by physics91
WHEN: Security scan, vulnerability detection, XSS/CSRF analysis, secret exposure, OWASP Top 10 WHAT: XSS/injection detection + hardcoded secrets + auth/authz issues + severity-based vulnerability list WHEN NOT: Performance → perf-analyzer, Cloud security → cloud-security-expert
flask-reviewer
by physics91
WHEN: Flask project review, Blueprint structure, extensions, request handling WHAT: Blueprint organization + Extension patterns + Request/response handling + Configuration + Testing WHEN NOT: FastAPI → fastapi-reviewer, Django → django-reviewer, General Python → python-reviewer
go-api-reviewer
by physics91
WHEN: Go API review with Gin/Echo/Fiber/Chi, router patterns, middleware, request handling WHAT: Router organization + Middleware patterns + Request validation + Error responses + OpenAPI WHEN NOT: General Go → go-reviewer, Rust API → rust-api-reviewer
go-reviewer
by physics91
WHEN: Go project review, error handling, goroutines, interfaces, testing WHAT: Error handling patterns + Concurrency safety + Interface design + Testing + Idiomatic Go WHEN NOT: Go API frameworks → go-api-reviewer, Rust → rust-reviewer
rust-reviewer
by physics91
WHEN: Rust project review, ownership/borrowing, error handling, unsafe code, performance WHAT: Ownership patterns + Lifetime analysis + Error handling (Result/Option) + Unsafe audit + Idiomatic Rust WHEN NOT: Rust API → rust-api-reviewer, Go → go-reviewer
react-setup
by otoshek
Use when initializing a new React frontend with Vite to connect to a Django backend over HTTPS. Sets up routing, CSRF protection, Axios config, and validates the build. Not for existing React projects.
rust-api-reviewer
by physics91
WHEN: Rust API review with Actix-web/Axum/Rocket, async patterns, extractors, middleware WHAT: Async handlers + Extractors + State management + Error responses + Tower middleware WHEN NOT: General Rust → rust-reviewer, Go API → go-api-reviewer