소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 17일 02:23
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill webapp-testing명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| description | Guidelines for creating high-quality Agent Skills for GitHub Copilot |
| applyTo | **/.github/skills/**/SKILL.md, **/.claude/skills/**/SKILL.md |
Instructions for creating effective and portable Agent Skills that enhance GitHub Copilot with specialized capabilities, workflows, and bundled resources.
Agent Skills are self-contained folders with instructions and bundled resources that teach AI agents specialized capabilities. Unlike custom instructions (which define coding standards), skills enable task-specific workflows that can include scripts, examples, templates, and reference data.
Key characteristics:
Skills are stored in specific locations:
| Location | Scope | Recommendation |
|---|---|---|
.github/skills/<skill-name>/ | Project/repository | Recommended for project skills |
~/.github/skills/<skill-name>/ | Personal (user-wide) | Recommended for personal skills |
Each skill must have its own subdirectory containing at minimum a SKILL.md file.
---
name: webapp-testing
description: Toolkit for testing local web applications using Playwright. Use when asked to verify frontend functionality, debug UI behavior, capture browser screenshots, check for visual regressions, or view browser console logs. Supports Chrome, Firefox, and WebKit browsers.license: Complete terms in LICENSE.txt
license: Complete terms in LICENSE.txt
---
| Field | Required | Constraints |
|---|---|---|
name | Yes | Lowercase, hyphens for spaces, max 64 characters (e.g., webapp-testing) |
description | Yes | Clear description of capabilities AND use cases, max 1024 characters |
license | No | Reference to LICENSE.txt (e.g., Complete terms in LICENSE.txt) or SPDX identifier |
CRITICAL: The description field is the PRIMARY mechanism for automatic skill discovery.
Copilot reads ONLY the name and description to decide whether to load a skill.
If your description is vague, the skill will never be activated.
What to include in description:
Good description:
description: Toolkit for testing local web applications using Playwright. Use when asked to verify frontend functionality, debug UI behavior, capture browser screenshots, check for visual regressions, or view browser console logs. Supports Chrome, Firefox, and WebKit browsers.
Poor description:
description: Web testing helpers
The poor description fails because:
The body contains detailed instructions that Copilot loads AFTER the skill is activated. Recommended sections:
| Section | Purpose |
|---|---|
# Title | Brief overview of what this skill enables |
## When to Use This Skill | List of scenarios (reinforces description triggers) |
## Prerequisites | Required tools, dependencies, environment setup |
## Step-by-Step Workflows | Numbered steps for common tasks |
## Troubleshooting | Common issues and solutions table |
## References | Links to bundled docs or external resources |
Skills can include additional files that Copilot accesses on-demand:
| Folder | Purpose | Loaded into Context? | Example Files |
|---|---|---|---|
scripts/ | Executable automation that performs specific operations | When executed | helper.py, validate.sh, build.ts |
references/ | Documentation the AI agent reads to inform decisions | Yes, when referenced | api_reference.md, schema.md, workflow_guide.md |
assets/ | Static files used AS-IS in output (not modified by the AI agent) | No | logo.png, brand-template.pptx, custom-font.ttf |
templates/ | Starter code/scaffolds that the AI agent MODIFIES and builds upon | Yes, when referenced | viewer.html (insert algorithm), hello-world/ (extend) |
.github/skills/my-skill/
├── SKILL.md # Required: Main instructions
├── LICENSE.txt # Recommended: License terms (Apache 2.0 typical)
├── scripts/ # Optional: Executable automation
│ ├── helper.py # Python script
│ └── helper.ps1 # PowerShell script
├── references/ # Optional: Documentation loaded into context
│ ├── api_reference.md
│ ├── workflow-setup.md # Detailed workflow (>5 steps)
│ └── workflow-deployment.md
├── assets/ # Optional: Static files used AS-IS in output
│ ├── baseline.png # Reference image for comparison
│ └── report-template.html
└── templates/ # Optional: Starter code the AI agent modifies
├── scaffold.py # Code scaffold the AI agent customizes
└── config.template # Config template the AI agent fills in
LICENSE.txt: When creating a skill, download the Apache 2.0 license text from https://www.apache.org/licenses/LICENSE-2.0.txt and save as
LICENSE.txt. Update the copyright year and owner in the appendix section.
Assets are static resources consumed unchanged in the output:
logo.png that gets embedded into a generated documentreport-template.html copied as output formatcustom-font.ttf applied to text renderingTemplates are starter code/scaffolds that the AI agent actively modifies:
scaffold.py where the AI agent inserts logicconfig.template where the AI agent fills in values based on user requirementshello-world/ project directory that the AI agent extends with new featuresRule of thumb: If the AI agent reads and builds upon the file content → templates/.
If the file is used as-is in output → assets/.
Use relative paths to reference files within the skill directory.
Example syntax (adapt paths to your actual skill structure):
## Available Scripts
Run the \[helper script\]\(./scripts/helper.py\) to automate common tasks.
See \[API reference\]\(./references/api_reference.md\) for detailed documentation.
Use the \[scaffold\]\(./templates/scaffold.py\) as a starting point.
Skills use three-level loading for efficiency:
| Level | What Loads | When |
|---|---|---|
| 1. Discovery | name and description only | Always (lightweight metadata) |
| 2. Instructions | Full SKILL.md body | When request matches description |
| 3. Resources | Scripts, examples, docs | Only when Copilot references them |
This means:
When including scripts, prefer cross-platform languages:
| Language | Use Case |
|---|---|
| Python | Complex automation, data processing |
| pwsh | PowerShell Core scripting |
| Node.js | JavaScript-based tooling |
| Bash/Shell | Simple automation tasks |
Best practices:
--help flag)Include scripts in your skill when:
Scripts enable evolution: even simple operations benefit from being implemented as scripts when they may grow in complexity, need consistent behavior across invocations, or require future extensibility.
--force flags only for destructive operationsDocument parameters clearly:
| Parameter | Required | Default | Description |
| ----------- | -------- | ------- | ---------------------------- |
| `--input` | Yes | - | Input file or URL to process |
| `--action` | Yes | - | Action to perform |
| `--verbose` | No | `false` | Enable verbose output |
Before publishing a skill:
SKILL.md has valid frontmatter with name and descriptionname is lowercase with hyphens, ≤64 charactersdescription clearly states WHAT it does, WHEN to use it, and relevant KEYWORDSreferences/ folder)references/ folder with clear links from SKILL.mdWhen executing multi-step workflows, create a TODO list where each step references the relevant documentation.
Example syntax (adapt paths to your actual skill structure):
## TODO
- [ ] Step 1: Configure environment - see \[workflow-setup.md\]\(./references/workflow-setup.md#environment\)
- [ ] Step 2: Build project - see \[workflow-setup.md\]\(./references/workflow-setup.md#build\)
- [ ] Step 3: Deploy to staging - see \[workflow-deployment.md\]\(./references/workflow-deployment.md#staging\)
- [ ] Step 4: Run validation - see \[workflow-deployment.md\]\(./references/workflow-deployment.md#validation\)
- [ ] Step 5: Deploy to production - see \[workflow-deployment.md\]\(./references/workflow-deployment.md#production\)
This ensures traceability and allows resuming workflows if interrupted.