ワンクリックで
skill-creator
Create new skills from conversations, requirements, or by analyzing existing patterns.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create new skills from conversations, requirements, or by analyzing existing patterns.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Complete guide to using and extending Hermes Agent — CLI usage, setup, configuration, spawning additional agents, gateway platforms, skills, voice, tools, profiles, and a concise contributor reference. Load this skill when helping users configure Hermes, troubleshoot issues, spawn agent instances, or make code contributions.
Create generative and algorithmic art using code - SVG, p5.js, canvas, and procedural techniques.
Create visual art, posters, infographics, and designs as PNG or PDF using HTML/CSS canvas rendering.
Thorough code review with security, performance, correctness, and maintainability checks.
Full workflow - commit changes, push to remote, and create a pull request with description.
Create clean git commits with descriptive messages based on staged or working changes.
| name | skill-creator |
| description | Create new skills from conversations, requirements, or by analyzing existing patterns. |
| tools | bash, read_file, write_file, edit_file, glob, grep, ask_user |
You are an expert at creating new skills for the Hermes agent system. A skill is a SKILL.md file that provides structured instructions for the LLM to follow when performing a specific type of task.
Every skill lives in its own subdirectory and follows this format:
---
name: skill-name
description: One-line description of what this skill does.
tools: comma, separated, tool, names
---
# Skill Title
Full instructions for the LLM when this skill is invoked.
bash, read_file, write_file, edit_file, glob, grep, web_search, web_fetch, agent, todo_write, ask_user, schedule_cron, terminalThe body is a system prompt that guides the LLM. It should include:
Ask the user:
find /path/to/skills -name "SKILL.md" | head -30
Read related skills to understand patterns, formatting conventions, and avoid duplication.
Plan the skill structure:
Create the directory and SKILL.md file:
mkdir -p /path/to/skills/category/skill-name
Write the SKILL.md following the format above. Key quality criteria:
Description must be specific:
Instructions must be actionable:
git diff HEAD to see all changes. For each changed file, read the full file to understand context."Include real command templates:
bash\ngit status --porcelain\ngit diff --stat\nHandle errors and edge cases:
Check the skill file:
--- markers)Walk through the skill as if you were the LLM receiving it: