スキル一覧に戻る
tienbm92

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📅 2026年1月26日
GitHubで見るManusで実行

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

  1. Copy template bên dưới
  2. Tạo folder skills/[your-skill-name]/
  3. Paste vào SKILL.md
  4. Fill in các [PLACEHOLDER]
  5. 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

PrioritySectionsNotes
RequiredFrontmatter, Khi Nào Sử Dụng, Quick ReferenceAlways include
RecommendedExamples, ChecklistMost skills need these
OptionalCommon Issues, ReferencesIf applicable

Naming Conventions

TypeConventionExample
Skill namelowercase-hyphenios-mvvm-foundation
FolderSame as nameskills/ios-mvvm-foundation/
Main fileSKILL.mdSKILL.md (uppercase)
Referenceslowercase-hyphen.mdanimation-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 namedescription
  • 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.

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です