vltansky

Debug Skill — Development skill for Claude Code

Development community

Ported Cursor's Debug Mode as a skill for Claude Code, OpenCode, Codex, Cursor, and any agent that supports skills.

How to install Debug Skill

This entry records only its repository, not the path inside it, so there is no exact command to give. Open vltansky/debug-skill and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Debug Skill does

Ported [Cursor's Debug Mode](https://cursor.com/blog/debug-mode) as a skill for Claude Code, OpenCode, Codex, Cursor, and any agent that supports skills.

Alternatives in Development

  • IPolloWork — Enterprise-grade, local-first Agent Workbench for people and agent teams 4.9k ★
  • Petdex — A public gallery of animated pets for Codex, Claude Code, DeepSeek Harness, Hermes, OpenCode, Gemini CLI, and 4k ★
  • Hapi — App for Claude Code / Codex / Gemini / OpenCode, vibe coding anytime, anywhere 3.6k ★

README

Debug Skill

Ported [Cursor's Debug Mode](https://cursor.com/blog/debug-mode) as a skill for Claude Code, OpenCode, Codex, Cursor, and any agent that supports skills.

![Debug Skill Screenshot](screenshot.png)

**How it works:**

  • Start a log server on localhost
  • Instrument code to send logs
  • Read logs from file, fix with evidence

Runtime agnostic - works anywhere with localhost access.

Installation

Quick Install (recommended)

npx add-skill vltansky/debug-skill

Installs to all detected agents (Claude Code, OpenCode, Codex, Cursor, Antigravity).

**Options:**

npx add-skill vltansky/debug-skill --global    # Install globally
npx add-skill vltansky/debug-skill -a claude-code  # Specific agent
npx add-skill vltansky/debug-skill -g -y       # CI/CD (no prompts)

Claude Code Plugin

/install vltansky/debug-skill

Manual

git clone https://github.com/vltansky/debug-skill.git
cp -r debug-skill ~/.claude/skills/debug

Usage

In your AI agent, invoke the skill:

/debug /path/to/project

Or just describe a bug - the skill auto-triggers on phrases like:

  • "debug this", "fix this bug", "why isn't this working"
  • "investigate this issue", "trace the problem"
  • "UI not updating", "state is wrong", "value is null"

Permissions

To skip permission prompts, add to `~/.claude/settings.json`:

{
  "permissions": {
    "allow": ["Skill(debug:debug)", "Bash(node:*)"]
  }
}

Agent Compatibility

Agent Global Path Project Path
Claude Code ~/.claude/skills/debug/ .claude/skills/debug/
OpenCode ~/.config/opencode/skill/debug/ .opencode/skill/debug/
Codex ~/.codex/skills/debug/ .codex/skills/debug/
Cursor ~/.cursor/skills/debug/ .cursor/skills/debug/
Antigravity ~/.gemini/antigravity/skills/debug/ .agent/skills/debug/

Structure

debug-skill/
├── SKILL.md              # Skill instr