Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component...
npx skills add udapy/rust-agentic-skills --skill "Syntax Hunter"
Install specific skill from multi-skill repository
# Description
Basic syntax error resolution.
# SKILL.md
name: Syntax Hunter
description: Basic syntax error resolution.
version: 1.0.0
rpi_phase: Implementation
trigger:
- "Syntax Error"
- "Unexpected token"
- "Missing semicolon"
capabilities:
- Fix semicolons
- Fix braces
- Fix turbofish
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.
- 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.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.