← Back to list

make-skill-template
by tienbm92
Personal AI context base used for bootstrapping new projects and feature development. Acts as the backbone for architecture, domain rules, and reusable design patterns.
⭐ 0🍴 0📅 Jan 26, 2026
SKILL.md
name: make-skill-template description: 'Template nhanh để tạo skill mới. Copy-paste và fill in blanks, không cần research format.'
Make Skill Template
Quick template để tạo Copilot skill mới. Copy → Paste → Fill blanks → Done.
Quick Start
- Copy template bên dưới
- Tạo folder
skills/[your-skill-name]/ - Paste vào
SKILL.md - Fill in các
[PLACEHOLDER] - Remove sections không cần
Full Template
---
name: [skill-name-lowercase-hyphenated]
description: '[1-2 sentence description. What does it do? When to use?]'
---
# [Skill Title]
> [One-line summary hoặc tagline]
## Khi Nào Sử Dụng
- [Use case 1]
- [Use case 2]
- [Use case 3]
---
## Quick Reference
| [Column 1] | [Column 2] |
|------------|------------|
| [Item] | [Description] |
| [Item] | [Description] |
| [Item] | [Description] |
---
## Core Concepts
### [Concept 1]
[Explanation - 2-3 paragraphs max]
### [Concept 2]
[Explanation - 2-3 paragraphs max]
---
## Examples
### [Example Name]
\`\`\`[language]
[code example]
\`\`\`
---
## Checklist
- [ ] [Step 1]
- [ ] [Step 2]
- [ ] [Step 3]
---
## Common Issues
| Issue | Solution |
|-------|----------|
| [Problem] | [Fix] |
| [Problem] | [Fix] |
---
## References
- [Reference 1](references/ref1.md)
- [External Link](https://example.com)
Minimal Template
Cho simple skills:
---
name: [skill-name]
description: '[Brief description]'
---
# [Title]
## Khi Nào Sử Dụng
- [Use case]
## Quick Reference
| Item | Description |
|------|-------------|
| [A] | [Details] |
## Example
\`\`\`
[code]
\`\`\`
Reference File Template
Khi cần file trong references/:
# [Topic Name]
> Part of [parent-skill-name] skill
## Overview
[Introduction]
## Details
[Main content]
## Examples
[Code/content examples]
## See Also
- [Related topic](related.md)
Frontmatter Rules
---
name: must-be-lowercase-with-hyphens # ✅
name: MySkill # ❌
name: my_skill # ❌
description: 'Use single quotes for description. End with period.' # ✅
description: No quotes here # ❌
description: "Double quotes work but single preferred" # ⚠️
---
Section Priority
| Priority | Sections | Notes |
|---|---|---|
| Required | Frontmatter, Khi Nào Sử Dụng, Quick Reference | Always include |
| Recommended | Examples, Checklist | Most skills need these |
| Optional | Common Issues, References | If applicable |
Naming Conventions
| Type | Convention | Example |
|---|---|---|
| Skill name | lowercase-hyphen | ios-mvvm-foundation |
| Folder | Same as name | skills/ios-mvvm-foundation/ |
| Main file | SKILL.md | SKILL.md (uppercase) |
| References | lowercase-hyphen.md | animation-guidelines.md |
File Structure Examples
Simple Skill
skills/git-basics/
└── SKILL.md
Skill with References
skills/ios-mvvm-foundation/
├── SKILL.md
└── references/
├── animation-guidelines.md
├── navigation-patterns.md
└── testing.md
Checklist Khi Tạo Skill
- Folder name = skill name (lowercase-hyphen)
- SKILL.md có frontmatter với
namevàdescription - Có "Khi Nào Sử Dụng" section
- Có ít nhất 1 table hoặc list
- Có ít nhất 1 code example (nếu technical)
- All links hoạt động
- Không có placeholder text còn sót
Quick Copy Sections
Table Template
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Data | Data | Data |
Code Block Template
\`\`\`swift
// Swift code here
\`\`\`
Checklist Template
- [ ] Item 1
- [ ] Item 2
- [ ] Item 3
Callout Template
> **Note**: Important information here.
> **Warning**: Be careful about this.
> **Tip**: Helpful suggestion.
Score
Total Score
70/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon