ワンクリックで
skill-creator
Create new Claude Code skills. Use when the user wants to create a custom skill, slash command, or automation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create new Claude Code skills. Use when the user wants to create a custom skill, slash command, or automation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Extract dominant colors from an image. Use when the user wants to find the main colors in an image or generate a color palette.
Generate/edit images with Nano Banana Pro (Gemini 3 Pro Image). Use for image create/modify requests incl. edits. Supports text-to-image + image-to-image; 1K/2K/4K; use --input-image.
Download random placeholder images from Lorem Picsum. Use when user asks for placeholder images, needs sample images for frontend work, or mentions needing images for UI/design tasks.
| name | skill-creator |
| description | Create new Claude Code skills. Use when the user wants to create a custom skill, slash command, or automation. |
| argument-hint | <skill-name> [description] |
Help users create new Claude Code skills.
Skills live in ~/.claude/skills/<skill-name>/ with this structure:
~/.claude/skills/
<skill-name>/
skill.md # Required: skill definition
scripts/ # Optional: helper scripts
script.py
script.sh
---
name: skill-name
description: Short description for Claude to know when to use this skill.
argument-hint: <arg1> [optional-arg] # Optional: shown in /help
allowed-tools: Bash(pattern), Read # Optional: restrict tool access
---
# Skill Title
Instructions for Claude when this skill is invoked.
## Usage
Document how to use the skill.
## Examples
Show example invocations.
| Field | Required | Description |
|---|---|---|
name | Yes | Skill identifier (lowercase, hyphens) |
description | Yes | When Claude should use this skill |
argument-hint | No | Usage hint shown in /help |
allowed-tools | No | Restrict which tools the skill can use |
Never try to read secrets from files. If a skill requires an API key or secret:
export API_KEY=xxx).env, .zshrc.secret, or similar filesExample section for skills needing secrets:
## API Key
**Do not try to read secrets from files.** If the API key is not available, ask the user to:
1. Set the `YOUR_API_KEY` environment variable
2. Restart Claude Code
When the user asks to create a skill:
Ask clarifying questions if needed:
Create the directory: mkdir -p ~/.claude/skills/<name>
Write skill.md with:
Create helper scripts in scripts/ if needed
Test the skill by invoking it: /<skill-name>
Simple skill (no scripts):
~/.claude/skills/greet/skill.md
Skill with Python script:
~/.claude/skills/image-gen/
skill.md
scripts/
generate.py
Skill with API key:
## API Key
**Do not try to read secrets from files.** If missing, ask user to:
1. Set `OPENAI_API_KEY` environment variable
2. Restart Claude Code
When creating a skill:
~/.claude/skills/<name>/skill.md/<name>