SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bobmatnyc/claude-mpm-skills --skill skill-creator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
LinkedIn automation via the Linked API CLI - fetch profiles, search people and companies, send messages, manage connections, create posts, react, comment, and run Sales Navigator and custom workflows. Use when the user wants to interact with LinkedIn.
Xquik X data automation API - Use REST or MCP for tweet search, user lookup, follower exports, media downloads, monitors, webhooks, giveaway draws, and confirmation-gated X actions.
MCP (Model Context Protocol) - Build AI-native servers with tools, resources, and prompts. TypeScript/Python SDKs for Claude Desktop integration.
| name | skill-creator |
| description | Guide for creating effective skills |
| user-invocable | false |
| disable-model-invocation | true |
| license | Complete terms in LICENSE.txt |
| progressive_disclosure | {"entry_point":{"summary":"Create modular skills that extend Claude with specialized knowledge, workflows, and tools through structured components","when_to_use":"When users want to create or update skills with specialized domain knowledge, workflows, or tool integrations. Focus on progressive disclosure for skills >150 lines.","quick_start":"1. Understand skill with concrete examples 2. Plan reusable components (scripts/references/assets) 3. Initialize with init_skill.py 4. Edit SKILL.md and resources 5. Package and validate 6. Iterate based on usage"},"references":["skill-structure.md","creation-workflow.md","progressive-disclosure.md","best-practices.md","examples.md"]} |
Create effective skills that extend Claude's capabilities through specialized knowledge, workflows, and tools. Skills are modular packages that transform Claude from a general-purpose agent into a specialized agent with procedural knowledge for specific domains.
This skill exemplifies its own teachings by using progressive disclosure to keep the entry point lean while providing deep detail in reference files.
Activate when:
Four Core Capabilities:
Three-Level Loading System:
Step 1: Understand with Concrete Examples Gather 3-5 realistic usage examples. Ask: "What would users say to trigger this skill?" and "What tasks should it accomplish?" → Complete guide
Step 2: Plan Reusable Components Analyze examples to identify: scripts (repeated code), references (domain knowledge), assets (templates). → Planning guide
Step 3: Initialize Skill
Run scripts/init_skill.py <skill-name> --path <output-directory> to generate template structure. → Initialization details
Step 4: Edit Skill Implement scripts/references/assets, then update SKILL.md using imperative voice. Apply progressive disclosure if >150 lines. → Editing guide
Step 5: Package and Validate
Run scripts/package_skill.py <path/to/skill-folder> to validate and create distributable zip. → Packaging guide
Step 6: Iterate Use on real tasks, notice struggles, update skill accordingly. → Iteration guide
skill-name/
├── SKILL.md (required) # Entry point with frontmatter + markdown
├── scripts/ (optional) # Executable code (Python/Bash)
├── references/ (optional) # Documentation loaded as needed
└── assets/ (optional) # Templates, images, files for output
Component Guidelines:
When to apply: Skills >150 lines total
Implementation:
progressive_disclosure frontmatter with summary, when_to_use, quick_startBenefits:
→ Complete progressive disclosure guide
Meta-example: This skill-creator demonstrates progressive disclosure:
scripts/init_skill.py creates proper structure automaticallyscripts/package_skill.py validates and packagesSTOP when:
ALL of these mean: STOP. Review principles and references.
Meta-Skills:
Development Skills:
Workflow Skills:
From skill optimization experience:
Remember: Skills are modular packages that transform Claude into a specialized agent. Apply progressive disclosure for skills >150 lines. This skill demonstrates the pattern it teaches.