skill-creator
정보
스킬-크리에이터는 개발자가 SwarmClaw 에이전트를 위한 모듈식 스킬을 구축, 수정, 감사하는 데 도움을 줍니다. 이 스킬은 새로운 스킬을 처음부터 생성하거나 기존 스킬 파일 및 디렉터리를 개선, 검토, 정리하는 작업과 같은 경우에 트리거됩니다. 이 스킬은 에이전트에 워크플로우, 도구 통합, 도메인 지식을 추가하는 효과적인 스킬을 작성하기 위한 전문적인 지침을 제공합니다.
빠른 설치
Claude Code
추천npx skills add swarmclawai/swarmclaw -a claude-code/plugin add https://github.com/swarmclawai/swarmclawgit clone https://github.com/swarmclawai/swarmclaw.git ~/.claude/skills/skill-creatorClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Skill Creator
Guidance for creating effective skills that extend SwarmClaw agent capabilities.
About Skills
Skills are modular, self-contained packages that provide specialized knowledge, workflows, and tools. They transform a general-purpose agent into a specialized one equipped with procedural knowledge that no model can fully possess.
What Skills Provide
- Specialized workflows — multi-step procedures for specific domains
- Tool integrations — instructions for working with specific file formats or APIs
- Domain expertise — company-specific knowledge, schemas, business logic
- Bundled resources — scripts, references, and assets for complex and repetitive tasks
Core Principles
Concise is Key
The context window is a shared resource. Only add context the agent doesn't already have. Challenge each piece of information: "Does the agent really need this explanation?" Prefer concise examples over verbose explanations.
Set Appropriate Degrees of Freedom
- High freedom (text instructions): Multiple valid approaches, context-dependent decisions
- Medium freedom (pseudocode/parameterized scripts): Preferred pattern exists, some variation OK
- Low freedom (specific scripts): Fragile operations, consistency critical, exact sequence required
Anatomy of a Skill
skill-name/
├── SKILL.md (required)
│ ├── YAML frontmatter (name + description, required)
│ └── Markdown instructions (required)
└── Bundled Resources (optional)
├── scripts/ — Executable code (Python/Bash/etc.)
├── references/ — Documentation loaded into context as needed
└── assets/ — Files used in output (templates, icons, fonts)
Frontmatter
name: Skill name (hyphen-case, lowercase)description: Primary triggering mechanism. Include what the skill does AND when to use it. All "when to use" info goes here — not in the body.
Scripts (scripts/)
Executable code for tasks that require deterministic reliability or are repeatedly rewritten. Token efficient and may be executed without loading into context.
References (references/)
Documentation loaded as needed to inform the agent's process. Keep only essential instructions in SKILL.md; move detailed reference material here.
Assets (assets/)
Files not loaded into context but used in output (templates, images, fonts). Separates output resources from documentation.
What NOT to Include
- README.md, CHANGELOG.md, INSTALLATION_GUIDE.md, or other auxiliary docs
- Setup/testing procedures or user-facing documentation
- Information the agent already knows from general training
Skill Creation Process
- Understand the skill with concrete examples
- Plan reusable contents (scripts, references, assets)
- Initialize the skill
- Edit the skill (implement resources, write SKILL.md)
- Validate the skill
- Iterate based on real usage
Skill Naming
- Lowercase letters, digits, and hyphens only (hyphen-case)
- Under 64 characters
- Prefer short, verb-led phrases describing the action
- Name the skill folder exactly after the skill name
Step 1: Understanding with Concrete Examples
Ask the user clarifying questions:
- What functionality should the skill support?
- Can you give examples of how it would be used?
- What would a user say that should trigger this skill?
Step 2: Planning Reusable Contents
Analyze each example to identify what scripts, references, and assets would be helpful:
- Repeated code →
scripts/(e.g.,scripts/rotate_pdf.py) - Boilerplate →
assets/(e.g.,assets/hello-world/template) - Domain knowledge →
references/(e.g.,references/schema.md)
Step 3: Initializing the Skill
Use the bundled init script to create the directory structure:
python3 {baseDir}/scripts/init_skill.py <skill-name> --path <output-directory> [--resources scripts,references,assets] [--examples]
Examples:
python3 {baseDir}/scripts/init_skill.py my-skill --path skills
python3 {baseDir}/scripts/init_skill.py my-skill --path skills --resources scripts,references
Step 4: Edit the Skill
Write instructions that would help another agent instance execute tasks effectively. Include information that is beneficial and non-obvious.
Writing guidelines: Use imperative/infinitive form. Keep SKILL.md body under 500 lines.
Frontmatter description: Include both what the skill does and specific triggers for when to use it. This is the primary mechanism for skill selection.
Step 5: Validate the Skill
Run the validator to check structure and frontmatter:
python3 {baseDir}/scripts/quick_validate.py <path/to/skill-folder>
Step 6: Iterate
- Use the skill on real tasks
- Notice struggles or inefficiencies
- Update SKILL.md or bundled resources
- Test again
Progressive Disclosure
Skills use a three-level loading system:
- Metadata (name + description) — always in context (~100 words)
- SKILL.md body — when skill triggers (<5k words)
- Bundled resources — as needed (unlimited, since scripts can be executed without reading)
Keep SKILL.md lean. Move detailed information to reference files and describe clearly when to read them.
GitHub 저장소
연관 스킬
content-collections
메타이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
polymarket
메타이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
creating-opencode-plugins
메타이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
sglang
메타SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
