smithery/udapy

Syntax Hunter

Basic syntax error resolution.

Installation

$ npx skills add smithery/udapy --skill syntax-hunter

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/udapy.

npx skills add smithery/udapy

Browse all from smithery/udapy

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 831 B
  • docs SUMMARY.md 51 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

<roledefinition> 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. </roledefinition>

<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).

  1. Braces: Are {} matching?
  2. Turbofish: Are you calling a generic function? Use ::<>, e.g., collect::<Vec<_>>().
  3. Lifetimes: 'a syntax usage vs declaration.

</checklist>