The skill enumerates sensitive environment variables and
Claims to do
Systematic Debugging: Random fixes waste time and create new bugs. Quick patches mask underlying issues.
Actually does
This skill provides a structured methodology for systematic debugging, outlining four phases: Root Cause Investigation, Pattern Analysis, Hypothesis and Testing, and Implementation. It instructs the user on how to approach debugging problems, including reading error messages, reproducing issues, checking changes, gathering evidence (with example bash commands like `echo`, `env`, `security`, `codesign`), tracing data flow, forming hypotheses, and implementing fixes. It does not execute any commands, access data, or interact with external services itself, but rather guides the user's debugging process.
The skill includes bash commands that enumerate environment variables and system keychains. This capability, while presented as diagnostic, can expose sensitive information like cryptographic identities or API keys, leading to potential credential harvesting.
echo "IDENTITY: ${IDENTITY:+SET}${IDENTITY:-UNSET}"
env | grep IDENTITY
security list-keychains
security find-identity -vThe skill demonstrates the use of the `codesign` command, which allows signing applications with a specified identity. While intended for debugging, this command could be misused to sign malicious code or for privilege escalation if the agent's environment is compromised.
codesign --sign "$IDENTITY" --verbose=4 "$APP"
The skill references other skills (`superpowers:test-driven-development`, `superpowers:verification-before-completion`) as supporting techniques. This creates a dependency chain where the security of this skill relies on the integrity of the referenced skills.
- superpowers:test-driven-development - superpowers:verification-before-completion
[](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.