Skill Creator Instructions
This skill provides a standardized workflow for creating new skills within the agent's environment.
Workflow: Create New Skill
When the user asks to create a new skill, follow these steps:
- •
Gather Information:
- •Skill Name: Ask for a concise, human-readable name (e.g., "React Component Generator").
- •Directory Name: Derive a
snake_casedirectory name (e.g.,react_component_generator). - •Description: Ask for a brief description of what the skill does.
- •Instructions: Ask for the specific rules, scripts, or workflows the skill should enforce.
- •
Create Directory Structure:
- •Skills are located in:
c:\Users\rgonz\OneDrive\Apps\skills\ - •Create the subdirectory:
c:\Users\rgonz\OneDrive\Apps\skills\[directory_name]
- •Skills are located in:
- •
Generate
SKILL.md:- •Create
c:\Users\rgonz\OneDrive\Apps\skills\[directory_name]\SKILL.md. - •Content Format:
markdown
--- name: [Skill Name] description: [Description] --- # [Skill Name] Instructions [Instructions provided by the user]
- •Create
- •
Optional: Advanced Structure:
- •If the user has scripts or examples, create
scripts/orexamples/subdirectories as needed.
- •If the user has scripts or examples, create
- •
Verification:
- •Confirm the file exists.
- •Inform the user the skill is ready and can be invoked by referencing it or its instructions.
Tips for Writing Skills
- •Clarity: Instructions should be unambiguous.
- •Context: Specialize the skill for a specific domain (e.g., "Only use for Vue.js projects").
- •Examples: Providing examples in the
SKILL.mdis highly effective.