ワンクリックで
debugging
// Systematically diagnose and fix bugs in code. Use when the user reports an error, unexpected behavior, test failure, or needs help troubleshooting.
// Systematically diagnose and fix bugs in code. Use when the user reports an error, unexpected behavior, test failure, or needs help troubleshooting.
Review code for bugs, security issues, performance problems, and style violations. Use when the user asks for a code review, submits code for feedback, or wants to improve code quality.
Create polished written content including blog posts, documentation, emails, reports, and marketing copy. Use when the user needs to write, draft, or generate any form of text content.
Analyze datasets, identify patterns, compute statistics, and generate summary reports. Use when the user provides data to analyze, asks about trends, or needs statistical insights.
Edit and improve existing text for clarity, tone, grammar, and structure. Use when the user submits text for review, asks to improve writing, or needs proofreading.
Search the web for current information, verify facts across multiple sources, and compile cited research summaries. Use when the user asks factual questions, needs current data, or requests research on any topic.
| name | debugging |
| description | Systematically diagnose and fix bugs in code. Use when the user reports an error, unexpected behavior, test failure, or needs help troubleshooting. |
| metadata | {"author":"symphony","version":"1.0"} |
Activate this skill when the user:
Follow this systematic approach:
None where an object is expected (check return values)def f(items=[]))asyncio — forgetting await, event loop issuesNone attributesundefined vs null confusionthis binding in callbacks== vs ===)## Diagnosis
**Root cause**: [concise explanation]
**Evidence**: [what in the error/code points to this cause]
## Fix
[code change with explanation]
## Verification
[how to verify the fix works]
## Prevention
[suggested test or guard]