ワンクリックで
skillify
Turn a transcript summary into a reusable Claude skill. Researches the topic and creates a skill file.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Turn a transcript summary into a reusable Claude skill. Researches the topic and creates a skill file.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Manage TikTok profiles to scrape. Switch accounts, add multiple profiles, or list saved profiles.
Transcribe ALL videos from a TikTok profile. Use when you want to process an entire profile's content.
Set up the project and learn how to use it. Run this first when opening the project.
Transcribe specific video URL(s). Use when you have one or more TikTok video URLs to process.
SOC 職業分類に基づく
| name | skillify |
| description | Turn a transcript summary into a reusable Claude skill. Researches the topic and creates a skill file. |
| user_invocable | true |
This command takes a transcript summary, researches the topic deeply, and creates a reusable Claude skill that captures that knowledge.
Ask the user:
Which summary would you like to turn into a skill?
Options:
- Paste a summary - Copy/paste content from a summary file
- Pick from summaries/ - I'll list available summaries for you to choose
- Use a transcript - Pick from transcripts/ directory
If they choose to pick from files, list available summaries:
ls -la summaries/*/*.md 2>/dev/null || echo "No summaries yet"
ls -la transcripts/*.txt 2>/dev/null || echo "No transcripts yet"
Read the selected summary/transcript and identify:
Use web search to deepen understanding of the topic:
Research queries to run:
Ask the user:
Where would you like to save this skill?
Examples:
~/.claude/skills/- Your global skills (available in all projects)./.claude/skills/- This project only- Custom path
Also ask:
What should the skill be named? (kebab-case)
Example:
agentic-engineeringorcontext-window-management
Create the skill directory and SKILL.md file:
{destination}/{skill-name}/
└── SKILL.md
The SKILL.md should follow this structure:
---
name: {skill-name}
description: {One-line description}. Use when {trigger conditions}.
user_invocable: false
---
# {Skill Title}
## Overview
{2-3 sentence summary of what this skill covers}
## Key Concepts
### {Concept 1}
{Explanation with examples}
### {Concept 2}
{Explanation with examples}
## When to Apply
Use this knowledge when:
- {Situation 1}
- {Situation 2}
- {Situation 3}
## Best Practices
1. **{Practice 1}**: {Explanation}
2. **{Practice 2}**: {Explanation}
3. **{Practice 3}**: {Explanation}
## Examples
### Example 1: {Title}
{Concrete example with code/steps if applicable}
### Example 2: {Title}
{Another example}
## Common Mistakes
- **{Mistake 1}**: {Why it's wrong and how to fix}
- **{Mistake 2}**: {Why it's wrong and how to fix}
## Related Topics
- {Related topic 1}
- {Related topic 2}
## Sources
- {Source from web research}
- {Original video URL}
After creating the skill, report:
User: /skillify
Claude: Which summary would you like to turn into a skill?
User: Use the agentic-engineering summary
Claude:
User: Save to ~/.claude/skills/ as "agentic-engineering"
Claude:
After running /skillify, users get a skill file like:
---
name: agentic-engineering
description: Best practices for AI-assisted development. Use when planning projects for Claude Code or other AI coding assistants.
user_invocable: false
---
# Agentic Engineering
## Overview
Agentic engineering is an approach to software development that optimizes for AI coding assistants...
## Key Concepts
### 90% Planning, 10% Execution
Most effort should go into research, discovery, and planning before writing code...
### Agent-First Project Setup
Structure projects so AI agents can easily navigate and understand context...
...