Skip to main content

Debug Workflow

Guides developers through debugging scenario tests using Ruby debug gem, enhancing test execution understanding and root cause analysis.

Install this skill

or
35/100

Security score

The Debug Workflow skill was audited on Feb 9, 2026 and we found 7 security issues across 1 threat category, including 3 high-severity. Review the findings below before installing.

Categories Tested

Security Issues

high line 47

System command execution

SourceSKILL.md
47- `system("ls -la #{tmpdir}")` to check file system
medium line 83

System command execution

SourceSKILL.md
83(rdbg) system("ls -la #{tmpdir}") # List all created dirs
medium line 84

System command execution

SourceSKILL.md
84(rdbg) system("find #{tmpdir} -type d") # Find all directories
medium line 85

System command execution

SourceSKILL.md
85(rdbg) system("ls -la #{project_dir}") # List project contents
high line 88

System command execution

SourceSKILL.md
88When debugging: Use `system()` calls to explore actual vs expected file structure. This shows what was really created.
medium line 113

System command execution

SourceSKILL.md
113(rdbg) system("ls -la #{tmpdir}") # Check what's created
high line 136

System command execution

SourceSKILL.md
136| `system(cmd)` | | Execute shell command | `(rdbg) system("ls -la #{tmpdir}")` |
Scanned on Feb 9, 2026
View Security Dashboard
Installation guide →