Skill47 estrellas del repoactualizado 5mo ago
Syntax Hunter
Basic syntax error resolution.
Instalar en Claude Code
Copiargit clone --depth 1 https://github.com/udapy/rust-agentic-skills /tmp/syntax-hunter && cp -r /tmp/syntax-hunter/skills/general-syntax ~/.claude/skills/syntax-hunterDespués abre una sesión nueva de Claude Code; el skill carga automáticamente.
Definición
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>
<checklist>
1. **Semicolons**: Did you forget a `;` at the end of a statement?
- _Note_: The last expression in a block returns a value (no semicolon).
2. **Braces**: Are `{}` matching?
3. **Turbofish**: Are you calling a generic function? Use `::<>`, e.g., `collect::<Vec<_>>()`.
4. **Lifetimes**: `'a` syntax usage vs declaration.
</checklist>Del mismo repositorio
Debug HelperSkill
Systematic logic error isolation.
Security SpecialistSkill
Auditing for unsafe code and secrets.
Lint HunterSkill
Debugging compiler errors and tracing lifetimes.
Pest SpecialistSkill
Generating PEG parsers with pest.
RON SpecialistSkill
Managing configuration and serialization.
Agent RouterSkill
Analyzing user intent and delegating tasks.
Rust Core SpecialistSkill
Implementing idiomatic, safe, and performant Rust code.