Debugging

Find and fix bugs, error analysis

Showing 145-168 of 4718 skills
oliver-kriska

elixir-idioms

by oliver-kriska

Idiomatic Elixir patterns, BEAM architecture, OTP patterns, and best practices. Load when writing Elixir code to ensure idiomatic style.

Automation 398 3mo ago
Yeachan-Heo

ultraqa

by Yeachan-Heo

QA cycling workflow - test, verify, fix, repeat until goal met

Code Review 30.3K 2mo ago
oliver-kriska

phx:trace

by oliver-kriska

Build recursive call trees to trace how functions are reached from entry points. Use when debugging "where does this value come from?" or planning signature changes.

Debugging 398 3mo ago
oliver-kriska

phx:investigate

by oliver-kriska

Investigate a bug or error in Elixir/Phoenix code. Uses Ralph Wiggum approach - checks obvious things first, reads errors literally. Add --parallel for 4-track deep investigation.

Code Review 398 3mo ago
wondelai

clean-code

by wondelai

'Write readable, maintainable code through disciplined naming, small functions, and clean error handling. Use when the user mentions "code review", "naming conventions", "function too long", "code smells", or "readable code". Covers SRP, comment discipline, formatting, and unit testing. For refactoring techniques, see refactoring-patterns. For architecture, see clean-architecture.'

Debugging 1.2K 3mo ago
cat-xierluo

git-batch-commit

by cat-xierluo

智能 Git 批量提交工具。当用户说 "git 提交"、"git commit"、"批量提交"、"拆分提交"、"整理提交" 时使用,或者当用户暂存了多个不同类型的文件需要分开提交时使用。自动将混合的文件修改按类型分类(依赖管理、文档更新、license 文件、配置、源代码等),并创建多个清晰聚焦的提交,使用标准化的提交信息格式。帮助保持清晰的 Git 历史,确保每个提交都有单一、明确的目的。使用英文前缀(docs:、feat:、fix: 等)加中文内容,支持 GitHub 彩色标签显示。

Debugging 306 3mo ago
ChromeDevTools

debug-optimize-lcp

by ChromeDevTools

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions "largest contentful paint", "page load speed", "CWV", or wants to improve how fast their hero image or main content renders.

Debugging 42.7K 3mo ago
Yeachan-Heo

analyze

by Yeachan-Heo

"Run deep investigation of architecture, bugs, performance issues, or dependencies and return structured findings with file:line evidence. Use when a user says 'analyze', 'investigate', 'why does', 'what's causing', or needs root cause analysis before making changes. Routes to architect agent or Codex MCP for thorough cross-file reasoning."

Agents 30.3K 2mo ago
Yeachan-Heo

learner

by Yeachan-Heo

Extract a learned skill from the current conversation

Auth 30.3K 3mo ago
leo-lilinxiao

codex-autoresearch

by leo-lilinxiao

"Autonomous long-running iteration for Codex CLI. Use when the user wants Codex to plan or run an unattended improve-verify loop toward a measurable or verifiable outcome, especially for overnight runs; it also covers repeated debugging, fixing, security auditing, and ship-readiness workflows. Do not use for ordinary one-shot coding help or casual Q&A."

Agents 1.8K 2mo ago
NeverSight

git-best-practices

by NeverSight

Git workflow patterns for commits, branching, PRs, and history management across heterogeneous repositories. Use when creating commits, managing branches, opening pull requests, or rewriting history. Do not use for non-git implementation tasks or repo-specific release policy decisions without repository documentation.

Code Review 155 3mo ago
NeverSight

yellow-best-practices

by NeverSight

Yellow Network and Nitrolite (ERC-7824) development best practices for building state channel applications. Use when building apps with Yellow SDK, implementing state channels, connecting to ClearNodes, managing off-chain transactions, or working with application sessions.

Auth 155 3mo ago
Arize-ai

phoenix-evals

by Arize-ai

Build and run evaluators for AI/LLM applications using Phoenix.

Debugging 10K 3mo ago
giuseppe-trisciuoglio

langchain4j-tool-function-calling-patterns

by giuseppe-trisciuoglio

Provides tool and function calling patterns with LangChain4j. Handles defining tools, function calls, and LLM agent integration. Use when building agentic applications that interact with tools.

Code Gen 267 3mo ago
github

github-issues

by github

'Create, update, and manage GitHub issues using MCP tools. Use this skill when users want to create bug reports, feature requests, or task issues, update existing issues, add labels/assignees/milestones, or manage issue workflows. Triggers on requests like "create an issue", "file a bug", "request a feature", "update issue X", or any GitHub issue management task.'

Code Gen 34.4K 4mo ago
github

webapp-testing

by github

Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.

Code Review 34.4K 5mo ago
github

azure-resource-health-diagnose

by github

'Analyze Azure resource health, diagnose issues from logs and telemetry, and create a remediation plan for identified problems.'

Analytics 34.4K 3mo ago
tddworks

fix-bug

by tddworks

Guide for fixing bugs in ClaudeBar following Chicago School TDD and rich domain design. Use this skill when: (1) User reports a bug or unexpected behavior (2) Fixing a defect in existing functionality (3) User asks "fix this bug" or "this doesn't work correctly" (4) Correcting behavior that violates the user's mental model

CLI Tools 1.2K 5mo ago
lee-to

aif-best-practices

by lee-to

Code quality guidelines and best practices for writing clean, maintainable code. Covers naming, structure, error handling, testing, and code review standards. Use when writing code, reviewing, refactoring, or asking "how should I name this", "best practice for", "clean code".

Code Review 912 3mo ago
mattpocock

caveman

by mattpocock

Ultra-compressed communication mode. Cuts token usage ~75% by dropping filler, articles, and pleasantries while keeping full technical accuracy. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman.

Debugging 116.9K 1mo ago
lee-to

aif-fix

by lee-to

Fix a specific bug or problem in the codebase. Supports two modes - immediate fix or plan-first. Without arguments executes existing FIX_PLAN.md. Always suggests test coverage and adds logging. Use when user says "fix bug", "debug this", "something is broken", or pastes an error message.

Code Review 911 3mo ago
LerianStudio

ring:dev-frontend-e2e

by LerianStudio

Gate 5 of frontend development cycle - ensures all user flows from product-designer have passing E2E tests with Playwright across browsers.

Debugging 193 3mo ago
lee-to

aif-verify

by lee-to

Verify completed implementation against the plan. Checks that all tasks were fully implemented, nothing was forgotten, code compiles, tests pass, and quality standards are met. Use after "/aif-implement" completes, or when user says "verify", "check work", "did we miss anything".

Code Review 912 3mo ago
CharlesWiltgen

axiom-cloud-sync-diag

by CharlesWiltgen

Use when debugging 'file not syncing', 'CloudKit error', 'sync conflict', 'iCloud upload failed', 'ubiquitous item error', 'data not appearing on other devices', 'CKError', 'quota exceeded' - systematic iCloud sync diagnostics for both CloudKit and iCloud Drive

Code Review 950 3mo ago