home/categories/debugging
category focus

Debugging

Tools for finding and fixing code issues.

4271 स्किल्सall categories
sorting
stars
current ordering strategy
query
all entries
refine the visible subset
debugging
8.6K

verify-prompt-names

Verify Claude-generated prompt names, IDs, descriptions, and variable names in extracted prompt JSON files. Catches wrong category prefixes, duplicate IDs, fabricated categories, inconsistent variable names, and inaccurate descriptions by cross-referencing against actual repo conventions. Use after running `tools/nameWithClaude.js` to name or rename prompts, when reviewing newly named prompts before committing, or when validation errors mention A1–A3, A5, A15, A16, A20, or A23 rules. Trigger phrases: "verify names", "check names", "review naming", "verify prompt names", "are these names right", "validate naming".

Piebald-AI
Piebald-AI
tools
open
debugging
8.6K

adopt

Brownfield onboarding — audits existing project artifacts for template format compliance (not just existence), classifies gaps by impact, and produces a numbered migration plan. Run this when joining an in-progress project or upgrading from an older template version. Distinct from /project-stage-detect (which checks what exists) — this checks whether what exists will actually work with the template's skills.

Donchitos
Donchitos
tools
open
debugging
8.6K

perf-profile

Structured performance profiling workflow. Identifies bottlenecks, measures against budgets, and generates optimization recommendations with priority rankings.

Donchitos
Donchitos
tools
open
debugging
8.6K

regression-suite

Map test coverage to GDD critical paths, identify fixed bugs without regression tests, flag coverage drift from new features, and maintain tests/regression-suite.md. Run after implementing a bug fix or before a release gate.

Donchitos
Donchitos
tools
open
debugging
8.6K

security-audit

Audit the game for security vulnerabilities: save tampering, cheat vectors, network exploits, data exposure, and input validation gaps. Produces a prioritised security report with remediation guidance. Run before any public release or multiplayer launch.

Donchitos
Donchitos
tools
open
debugging
8.6K

soak-test

Generate a soak test protocol for extended play sessions. Defines what to observe, measure, and log during long play sessions to surface slow leaks, fatigue effects, and edge cases that only appear after sustained play. Primarily used in Polish and Release phases.

Donchitos
Donchitos
tools
open
debugging
8.6K

tech-debt

Track, categorize, and prioritize technical debt across the codebase. Scans for debt indicators, maintains a debt register, and recommends repayment scheduling.

Donchitos
Donchitos
tools
open
debugging
8.6K

test-flakiness

Detect non-deterministic (flaky) tests by reading CI run logs or test result history. Aggregates pass rates per test, identifies intermittent failures, recommends quarantine or fix, and maintains a flaky test registry. Best run during Polish phase or after multiple CI runs.

Donchitos
Donchitos
tools
open
debugging
8.4K

feature-flags

Create, modify, and remove feature flags in RedisInsight. Use when adding a new feature flag, introducing a dev flag, promoting a dev flag to regular, cleaning up old flags, or the user mentions feature flags, feature toggles, or gating features.

redis
redis
tools
open
debugging
8.1K

py

Comprehensive Python programming reference covering syntax, concurrency, networking, databases, ML/LLM development, and HPC. Use for: Python questions, debugging, performance optimization, async patterns, library examples, code review, best practices, MLOps workflows, distributed computing, security implementations, and any Python development tasks.

crazyguitar
crazyguitar
tools
open
debugging
8.1K

parent-project-skills

Bootstrap skill for discovering additional skills and context from a parent project when workerd is used as a submodule. Load this skill when tasks span project boundaries (e.g., Sentry/production investigation, integration testing, cross-repo debugging).

cloudflare
cloudflare
tools
open
debugging
8.1K

workerd-api-review

Performance optimization, API design & compatibility, security vulnerabilities, and standards spec compliance for workerd code review. Covers tcmalloc-aware perf analysis, compat flags, autogates, web standards adherence, and security patterns. Load this skill when reviewing API changes, performance-sensitive code, security-relevant code, or standards implementations.

cloudflare
cloudflare
tools
open
debugging
8.1K

workerd-safety-review

Memory safety, thread safety, concurrency, and critical detection patterns for workerd code review. Covers V8/KJ boundary hazards, lifetime management, cross-thread safety, and coroutine pitfalls. Load this skill when reviewing any C++ code.

cloudflare
cloudflare
tools
open
debugging
8.1K

understand-diff

Use when you need to analyze git diffs or pull requests to understand what changed, affected components, and risks

Lum1104
Lum1104
tools
open
debugging
8.1K

understand-explain

Use when you need a deep-dive explanation of a specific file, function, or module in the codebase

Lum1104
Lum1104
tools
open
debugging
8.1K

understand

Analyze a codebase to produce an interactive knowledge graph for understanding architecture, components, and relationships

Lum1104
Lum1104
tools
open
debugging
8.1K

database-optimizer

Optimizes database queries and improves performance across PostgreSQL and MySQL systems. Use when investigating slow queries, analyzing execution plans, or optimizing database performance. Invoke for index design, query rewrites, configuration tuning, partitioning strategies, lock contention resolution.

Jeffallan
Jeffallan
tools
open
debugging
8.1K

postgres-pro

Use when optimizing PostgreSQL queries, configuring replication, or implementing advanced database features. Invoke for EXPLAIN analysis, JSONB operations, extension usage, VACUUM tuning, performance monitoring.

Jeffallan
Jeffallan
tools
open
debugging
8.1K

debugging-wizard

Parses error messages, traces execution flow through stack traces, correlates log entries to identify failure points, and applies systematic hypothesis-driven methodology to isolate and resolve bugs. Use when investigating errors, analyzing stack traces, finding root causes of unexpected behavior, troubleshooting crashes, or performing log analysis, error investigation, or root cause analysis.

Jeffallan
Jeffallan
tools
open
debugging
8.1K

javascript-pro

Writes, debugs, and refactors JavaScript code using modern ES2023+ features, async/await patterns, ESM module systems, and Node.js APIs. Use when building vanilla JavaScript applications, implementing Promise-based async flows, optimising browser or Node.js performance, working with Web Workers or Fetch API, or reviewing .js/.mjs/.cjs files for correctness and best practices.

Jeffallan
Jeffallan
tools
open
debugging
8K

webiny-local-development

Deploying, developing locally, managing environments, and debugging Webiny projects. Use this skill when the developer asks about deployment commands (deploy, destroy, info), local development with watch mode (API or Admin), the Local Lambda Development system, environment management (long-lived vs short-lived, production vs dev modes), build parameters, state files, debugging API/Admin/Infrastructure errors, or the redeploy-after-watch requirement.

webiny
webiny
tools
open
debugging
7.8K

data-analysis

Analyze, explore, clean, and visualize datasets with statistical rigor. Use when user asks to analyze data, find patterns, compute statistics, create visualizations, clean messy data, or explore a dataset. Trigger when user says things like "analyze this data", "what trends do you see", "find patterns in", "create a chart", "clean this dataset", "run statistics on", "what does this data tell us", or provides CSV/Excel/JSON data for exploration. Also trigger for A/B test analysis, cohort analysis, and data quality assessments. Do NOT trigger for simple data format conversions, database query writing without analysis, or ETL pipeline design.

Upsonic
Upsonic
tools
open
debugging
7.8K

profiling

Profile Lean programs with demangled names using samply and Firefox Profiler. Use when the user asks to profile a Lean binary or investigate performance.

leanprover
leanprover
tools
open
Previous
Page 27 / 178
Next