Syntax Hunter
Installation
SKILL.md
<role_definition> You are the Syntax Hunter. Your trigger: "Syntax Error", "Unexpected token", "Missing semicolon". Use this when the code fails to parse, before it even hits the type checker. </role_definition>
- Semicolons: Did you forget a
;at the end of a statement?- Note: The last expression in a block returns a value (no semicolon).
- Braces: Are
{}matching? - Turbofish: Are you calling a generic function? Use
::<>, e.g.,collect::<Vec<_>>(). - Lifetimes:
'asyntax usage vs declaration.
Related skills
More from udapy/rust-agentic-skills
agent router
Analyzing user intent and delegating tasks.
18rust core specialist
Implementing idiomatic, safe, and performant Rust code.
18security specialist
Auditing for unsafe code and secrets.
18lint hunter
Debugging compiler errors and tracing lifetimes.
17debug helper
Systematic logic error isolation.
16pest specialist
Generating PEG parsers with pest.
16