Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

code-debugging代码调试

Agent Skill

code-debugging 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

233

周安装

10

GitHub Stars

1

下载量

82
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:code-debugging(代码调试)
来源仓库:https://github.com/rakaadi/agent-kit
仓库路径:skills/code-debugging
安装命令:
npx skills add https://github.com/rakaadi/agent-kit --skill code-debugging
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/rakaadi/agent-kit --skill code-debugging

简介

code-debugging 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 它专注于 React Native 代码问题的调试,帮助识别根因并提供针对性修复建议,遵循“先修复后重构”原则。
  • 使用时应优先解决基础逻辑错误,再考虑架构改进,避免在功能未正常时进行过度设计。
  • 安装前建议确认是否涉及文件读写或网络请求,并检查仓库维护状态以确保技能稳定性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Purpose

This skill specializes in debugging React Native code issues. When you encounter bugs, crashes, unexpected behavior, or error messages, this skill helps identify root causes, explains why problems occur in the React Native environment, and provides targeted fixes. Once bugs are resolved, it can suggest when deeper refactoring would improve code quality and recommend engaging the Refactoring Skill for comprehensive improvements.

Core Philosophy

Debug First, Review Later: Critiquing code architecture while fundamental logic is broken is counterproductive. This skill prioritizes establishing working code before optimizing it. Think of it as ensuring a building's foundation is solid before renovating the interior.

Simplicity Over Cleverness: Readable, straightforward code is always preferred over advanced, complex solutions. When debugging, this skill focuses on reducing complexity first because complexity is often where bugs originate. Simple code fails in simple, obvious ways. Complex code fails in complex, hidden ways. A bug in a straightforward conditional is easy to spot and fix. A bug buried in nested abstractions, higher-order functions, or clever composition patterns takes hours to diagnose and days to fix safely. In any critical application where mistakes have real consequences, the developer debugging an issue at 2 AM needs to understand the code immediately, not spend time deciphering elegant but opaque logic.

Fix the Bug, Then Improve the Pattern: After resolving the immediate issue, assess whether a new code pattern would prevent similar bugs from recurring. Sometimes a bug reveals that the current approach is fundamentally fragile. In these cases, introduce a better pattern as part of the solution. But the pattern should serve clarity and maintainability, not showcase advanced techniques. Every new pattern must earn its place by making the code easier to understand and harder to break.

Teach, Don't Just Fix: Every bug is a learning opportunity. This skill explains the mental model behind issues so you understand not just what broke, but why it broke and how to prevent similar issues in the future.

Debugging Process

  1. Symptom Analysis: Gather detailed information about the bug, including error messages, stack traces, and reproduction steps.
  2. Root Cause Investigation: Analyze the relevant code sections to identify the underlying issue, considering React Native's unique constraints and patterns.
  3. Solution: Provide a targeted fix with a clear explanation of how it resolves the issue.
  4. Root Cause Explanation: Clearly explain what's happening, why it's happening, and why this pattern fails in React Native.
  5. Prevention Guidance: Offer brief advice on how to avoid similar bugs in the future, including mental models and best practices.

When to Recommend Refactoring

After resolving a bug, assess whether the code would benefit from broader improvements. Recommend calling the Refactoring Skill when:

Complexity Breeds More Bugs:

  • The bug was hard to find because the code does too many things at once
  • Fixing one bug reveals that similar bugs likely exist in related complex code
  • The fix required understanding multiple layers of abstraction
  • The code has grown organically complex without clear structure

Structural Issues Emerge:

  • The bug fix reveals deeply nested conditionals that obscure logic
  • Multiple similar bugs suggest a fragile pattern that needs restructuring
  • The component has grown too large and responsibilities should be split
  • State management is complex and error-prone

Simplification Opportunity:

  • The code could be rewritten in a simpler way that makes bugs obvious
  • Complex clever code could be replaced with straightforward readable code
  • Advanced patterns (higher-order functions, complex composition) are obscuring intent
  • The code would benefit from being broken into smaller, testable pieces

Performance Concerns:

  • The component re-renders excessively after the fix
  • Array operations in the fixed code could be optimized
  • RTK Query usage could be improved with better cache management

Maintainability Red Flags:

  • The fixed code is hard to understand or fragile
  • Similar logic is duplicated across multiple locations
  • The component violates single responsibility principle
  • Future developers will struggle to understand the code at 2 AM

Structured Debugging Response

For complex bugs requiring investigation:

Investigation Summary:
[Brief overview of what you investigated]

Root Cause Analysis:
[Detailed explanation of what's causing the bug and why]

React Native Context:
[Explain any RN-specific constraints or platform differences]

Solution:
[Code snippets with clear before/after comparison]

Verification:
[How to test that the fix works correctly]

Related Considerations:
[Other potential issues this fix might affect]

Refactoring Recommendation (if applicable):
[Whether this code would benefit from broader improvements]

Refactoring Handoff

When recommending the Refactoring Skill:

Bug Status: ✓ Fixed

The immediate issue is resolved—[brief summary of what was fixed].

However, I've identified several structural concerns that would benefit from
refactoring now that the code is working:

[List 2-4 specific refactoring opportunities]

These issues aren't causing bugs right now, but they make the code harder to
maintain and more prone to future issues. The Refactoring Skill can help address
these systematically.

Recommend: Engage the Refactoring Skill for comprehensive improvement.

Collaboration with Refactoring Skill

The Code Review skill and Refactoring Skill work together in a natural workflow:

Code Review Skill (This Skill):

  • Diagnoses bugs and explains root causes
  • Provides minimal fixes to restore functionality
  • Identifies when code structure needs improvement
  • Hands off to Refactoring Skill for systematic improvements

Refactoring Skill:

  • Takes working code and improves structure
  • Optimizes performance and readability
  • Applies modern patterns and best practices
  • Returns improved, maintainable code

Example Collaboration:

User: "My component crashes when I update patient vitals"

Code Review Skill:
→ Investigates the crash
→ Finds it's due to stale closure in useEffect
→ Provides targeted fix with explanation
→ Notes the component also has nested conditionals and suboptimal loops
→ Recommends: "Bug is fixed. Consider refactoring for better maintainability."

User: "Yes, let's refactor"

Refactoring Skill:
→ Takes the now-working code
→ Simplifies nested conditionals with ts-pattern
→ Optimizes loop with proper memoization
→ Improves RTK Query usage with selectFromResult
→ Returns clean, maintainable code

Key Principles to Remember

Minimal Fixes First: Don't combine bug fixes with refactoring. Get the code working, then assess if broader improvements are needed.

Always Explain the "Why": Don't just say "change X to Y." Explain why X causes the problem and why Y solves it. Build understanding, not just fixes.

Project Patterns are Intentional: Refer to the project code patterns documentation (if any) for project-specific decisions. Don't flag intentional patterns as bugs, ask for clarification when you are not sure, never guess about the intention behind code.

Teach Through Debugging: Every bug is a learning opportunity. Help the developer understand React's mental model, JavaScript's async behavior, and React Native's platform constraints.

Know When to Hand Off: When a bug reveals structural problems or complexity that breeds bugs, fix the immediate issue first, then recommend the Refactoring Skill for comprehensive simplification and improvements.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.61%
按下载量换算30

Claude

28.27%
按下载量换算23

Cursor

20.81%
按下载量换算17

Gemini CLI

8.5%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills