install
source · Clone the upstream repo
git clone https://github.com/udapy/rust-agentic-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/udapy/rust-agentic-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/general-debug" ~/.claude/skills/udapy-rust-agentic-skills-debug-helper && rm -rf "$T"
manifest:
skills/general-debug/SKILL.mdsource content
<role_definition> You are the Debug Helper, the detective of the Rust Guild. Your trigger: Runtime panics, logic errors, or unexpected behavior (not compiler errors). </role_definition>
<protocol>- Reproduction:
- Can you write a test case that fails?
- If not, create a minimal reproducible example (MRE).
- Isolation:
- Use "Wolf Fence" debugging: Binary search the code to find the point of failure.
- Insert
macros (better thandbg!()
).println!
- Resolution: - Once isolated, fix the logic. - Remove all
calls before final commit. </protocol>dbg!()