Agent skill · Databases

debug

Debug issues by investigating logs, database state, and git history

parcadeigithub.com/parcadeiGitHub ↗
claude-codeMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill debug --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: .claude/skills/debug/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Debug You are tasked with helping debug issues during manual testing or implementation. This command allows you to investigate problems by examining logs, database state, and git history without editing files. Think of this as a way to bootstrap a debugging session without using the primary window's context. ## Initial Response When invoked WITH a plan/ticket file: ``` I'll help debug issues with [file name]. Let me understand the current state. What specific problem are you encountering? - What were you trying to test/implement? - What went wrong? - Any error messages? I'll investigate the logs, database, and git state to help figure out what's happening. ``` When invoked WITHOUT parameters: ``` I'll help debug your current issue. Please describe what's going wrong: - What are you working on? - What specific problem occurred? - When did it last work? I can investigate logs, database state, and recent changes to help identify the issue. ``` ## Environment Information You have access to these key locations and tools: **Logs**: - Application logs (check project-specific locations) - Common locations: `./logs/`, `~/.local/share/{app}/`, `/var/log/` **Database** (if applicable): - SQ

What's inside
Steps it walks through
  1. Initial Response
  2. Environment Information
  3. Process Steps
  4. Step 1: Understand the Problem
  5. Step 2: Investigate the Issue
  6. Step 3: Present Findings
  7. Important Notes
  8. Quick Reference
Commands it runs
ls -t ./logs/*.log | head -1
Or check project-specific log locations
sqlite3 {database_path} ".tables"
sqlite3 {database_path} ".schema {table}"
sqlite3 {database_path} "SELECT * FROM {table} ORDER BY created_at DESC LIMIT 5;"
ps aux | grep {service_name}
lsof -i :{port}
git status
git log --oneline -10
git diff
More from Continuous-Claude-v3
All skills →
About this skill
What does the debug skill do?

Debug issues by investigating logs, database state, and git history

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill debug --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going