Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始めるdebugger
スター3
フォーク1
更新日2026年5月30日 01:17
Debugging tools.
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Debugging tools.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Application programming interface.
Does CI work?
Did it work?
Is everything okay?
Is it running?
Does this meet standards?
| name | debugger |
| description | Debugging tools. |
| license | MIT |
| metadata | {"author":"vant","version":"1.0"} |
Debugging tools.
| Language | Tool |
|---|---|
| JavaScript | node --inspect |
| Python | -m pdb |
| Go | dlv |
| Rust | rust-gdb |
| Command | What |
|---|---|
| break | Set breakpoint |
| continue | Run to next |
| step | Step into |
| next | Step over |
| Print variable | |
| backtrace | Show stack |
// JavaScript
debugger;
// Python
import pdb; pdb.set_trace()
// Go
debugln("here")
(gdb) print variable
(pdb) pp variable
node inspect
## Debug
| Breakpoint | Hit |
|-----------|-----|
| [n] | [count] |
### Issues Found
- [list]
Role: Debugger
Input: Code + error
Output: Root cause
Find the bug.