بنقرة واحدة
skill-creator
Create new skills by generating SKILL.md files in the user's skills directory
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create new skills by generating SKILL.md files in the user's skills directory
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | skill-creator |
| description | Create new skills by generating SKILL.md files in the user's skills directory |
| tags | meta, workflow, skills |
When the user asks to create a new skill, follow this workflow:
Ask the user:
write-tests, deploy-aws)If the user provides enough info upfront, skip the questions and proceed.
Create the file at ~/.bandry/skills/<name>/SKILL.md with this structure:
---
name: <name>
description: <description>
tags: <tags>
---
# <Title>
<Guidance content organized into clear sections>
Use the exec tool to create the directory and write the file:
mkdir -p ~/.bandry/skills/<name>
cat > ~/.bandry/skills/<name>/SKILL.md << 'SKILL_EOF'
<generated content>
SKILL_EOF
Tell the user the skill was created and that it will be available on the next chat session (skills are cached per session).