This skill executes arbitrary bash commands for diagnostics, performing
Claims to do
Systematic Debugging: Random fixes waste time and create new bugs. Quick patches mask underlying issues.
Actually does
This skill provides a detailed, multi-phase methodology for systematic debugging, emphasizing root cause investigation before proposing fixes. It instructs users on how to gather evidence by carefully reading error messages, reproducing issues, checking recent changes (e.g., via Git), and adding diagnostic instrumentation using shell commands like `echo`, `env`, `grep`, `security`, and `codesign` to inspect system states and data flow.
The skill instructs the agent to execute arbitrary bash commands for diagnostic purposes. These commands (`env`, `security list-keychains`, `security find-identity -v`, `codesign`) can perform system reconnaissance, expose sensitive environment variables or keychain identities, and sign applications, posing a significant risk if abused or if variables are manipulated.
```bash
echo "IDENTITY: ${IDENTITY:+SET}${IDENTITY:-UNSET}"
env | grep IDENTITY
security list-keychains
security find-identity -v
codesign --sign "$IDENTITY" --verbose=4 "$APP"
```[](https://mondoo.com/ai-agent-security/skills/github/obra/superpowers/systematic-debugging)<a href="https://mondoo.com/ai-agent-security/skills/github/obra/superpowers/systematic-debugging"><img src="https://mondoo.com/ai-agent-security/api/badge/github/obra/superpowers/systematic-debugging.svg" alt="Mondoo Skill Check" /></a>https://mondoo.com/ai-agent-security/api/badge/github/obra/superpowers/systematic-debugging.svgSkills can read files, run commands, and access credentials. Mondoo helps organizations manage the security risks of AI agent skills across their entire fleet.