Create a New CUBRID Skill
This skill creates new skills in the my-cubrid-skills collection at /home/vimkim/temp/my-cubrid-skills/, which can later be installed via npx @anthropic-ai/claude-code-skills.
Instructions
- Determine the skill name and purpose from
$ARGUMENTSand conversation context. If the user says "make what I just did as a skill", extract the workflow from the current conversation history — the tools used, the sequence of steps, commands that worked, and corrections the user made. - Create the skill directory at
/home/vimkim/temp/my-cubrid-skills/<skill-name>/. - Invoke
/skill-creatorwith the target path to handle the full skill creation workflow (drafting SKILL.md, writing test cases, evaluation, iteration):/skill-creator /home/vimkim/temp/my-cubrid-skills/<skill-name>Pass along all context you've gathered — the workflow steps, commands, edge cases, and any user preferences. - After the skill is created, remind the user they can install it with:
just install
Conventions
- Skill names should be kebab-case (e.g.,
resolve-greptile-comments) - Follow the same structure as existing skills in the directory
- CUBRID-specific skills should reference
ghCLI for GitHub operations where applicable - Keep skills focused — one workflow per skill