my-cubrid-skills-create
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
More from vimkim/my-cubrid-skills
jira
Look up CUBRID JIRA issue context. Use when a CBRD-XXXXX ticket is mentioned or when the user asks about a JIRA issue.
9create-testcases
Create CUBRID test cases (unit/SQL/shell) for a given feature or bug fix. Use when the user asks to create tests, write test cases, or mentions testing a CBRD ticket.
9cubrid-manual
Search the CUBRID manual (RST docs in en/ and ko/) for SQL syntax, configuration parameters, API references, admin utilities, and any CUBRID documentation. Use when you need to look up CUBRID behavior, verify SQL semantics, or answer questions about CUBRID features.
9cubrid-pr-review
CUBRID C/C++ PR code review with LSP/clangd analysis and C++ safety checks. Use when reviewing a CUBRID pull request, when the user shares a GitHub PR URL from a CUBRID repo, asks to review or check a pull request, or requests LSP-based analysis of PR changes. Even if the user just pastes a CUBRID PR link without explicit instructions, this skill applies.
9cubrid-pr-create
Create a GitHub PR for the CUBRID project with [CBRD-XXXXX] title format and Korean body with English section headers. Use when the user wants to create a pull request for CUBRID changes.
9cubrid-build
CUBRID build and test workflow using justfile. Use when building, compiling, or testing CUBRID source code in any CUBRID worktree or source directory.
8