name: designing-skills description: >- Guides the design and structuring of AI agent skills for the SCT repository with multi-step phases, progressive disclosure, and dual-platform compatibility (GitHub Copilot and Claude Code). Use when creating new skills, reviewing existing skills, restructuring AI guidance into modular skill directories, editing SKILL.md files, or improving agent instructions.
Designing Skills for SCT
Build modular, task-specific AI agent skills that work across both GitHub Copilot and Claude Code.
Essential Principles
Capture Intent Before Writing
Interview first, write second.
Before drafting any skill files, gather concrete information about the task domain:
- What specific user requests should trigger this skill? Collect 5-10 example prompts.
- What does a good output look like? Get example inputs and expected outputs.
- What are the failure modes? What would "bad" output look like?
- Are there edge cases or ambiguous scenarios?
This front-loads the hardest design decisions. A skill written without intent capture produces generic guidance that doesn't match real usage patterns.
Description Is the Trigger
The description field controls when Claude Code activates the skill.
Claude decides whether to load a skill based solely on its frontmatter description. The body of SKILL.md — including "When to Use" and "When NOT to Use" sections — is only read AFTER the skill is already active. Put trigger keywords, use cases, and exclusions in the description. A bad description means wrong activations or missed activations regardless of what the body says.
GitHub Copilot discovers skills through explicit references in AGENTS.md — the description field still helps Copilot agents understand the skill's purpose.
Description constraints:
- Maximum 1024 characters
- No angle brackets (
<,>) — they break YAML parsing in some tools - Use third-person voice: "Guides..." not "I help with..."
- List triggering conditions, not workflow steps
Test the Description
Write trigger eval queries and verify activation.
A description you haven't tested is a description that doesn't work. For every skill, write 5-10 test queries:
- Should-trigger queries: User prompts where this skill MUST activate (e.g., "Create a new skill for code review")
- Should-NOT-trigger queries: User prompts where this skill must stay silent (e.g., "Fix the unit test for config parsing")
Read the description in isolation (without the skill body) and ask: would each query activate this skill correctly? If not, revise the description before writing the rest of the skill.
Explain the Why
Every instruction must explain WHY, not just WHAT.
LLMs follow instructions better when they understand the reasoning. "Use numbered phases" is weaker than "Use numbered phases because unnumbered prose produces unreliable execution order." The WHY gives the LLM judgment to handle cases the instruction didn't explicitly cover.
Numbered Phases
Phases must be numbered with entry and exit criteria.
Unnumbered prose instructions produce unreliable execution order. Every phase needs:
- A number (Phase 1, Phase 2, ...)
- Entry criteria (what must be true before starting)
- Numbered actions (what to do)
- Exit criteria (how to know it's done)
Progressive Disclosure
Progressive disclosure is structural, not optional.
SKILL.md stays under 500 lines. It contains only what the LLM needs for every invocation: principles, routing, quick references, and links. Detailed patterns go in references/. Step-by-step processes go in workflows/. One level deep — no reference chains.
Dual-Platform Compatibility
Skills must work for both GitHub Copilot and Claude Code.
Skills live in a common skills/ directory at the repository root. Discovery mechanisms differ by platform:
- Copilot: Reads
AGENTS.mdreferences and.github/skills/symlink. Skills are listed in the "Skills" section of rootAGENTS.md. - Claude Code: Imports skills via
@skills/<name>/SKILL.mdinCLAUDE.mdand.claude/skills/symlink. Frontmatterdescriptiontriggers automatic activation.
Skill content must be platform-agnostic — no Claude-only or Copilot-only instructions in the skill body.
SCT Conventions First
Skills must follow SCT repository conventions.
All skills should be consistent with conventions in AGENTS.md and .github/copilot-instructions.md:
- Python code examples use pytest (not unittest), Google docstrings, no inline imports
- Test examples go in
unit_tests/, use@pytest.fixtureand@pytest.mark.parametrize - Commands reference SCT tools:
uv run sct.py unit-tests,uv run sct.py pre-commit - Configuration examples reference
sdcm/sct_config.py,test-cases/,defaults/
Keep It Lean
Remove instructions that don't improve outcomes.
After testing a skill, review every instruction. If removing an instruction doesn't degrade the output quality, delete it. Bloated skills dilute LLM attention — every line competes for context. Prefer 10 precise instructions over 30 vague ones.
When to Use
- Creating a new skill directory under
skills/ - Reviewing or refactoring an existing skill for quality
- Deciding how to split content between SKILL.md, references/, and workflows/
- Structuring a skill that covers a specific SCT task domain (testing, planning, coding, reviewing)
- Adding dual-platform discovery configuration for a new skill
- Testing whether a skill's description triggers correctly
When NOT to Use
- Writing the actual domain content of a skill (this teaches structure, not domain expertise)
- Simple one-off documentation updates — edit the relevant file directly
- Updating
AGENTS.mdor.github/copilot-instructions.mdwithout creating a skill - Debugging skill logic that's domain-specific (use the domain skill itself)
High-Level Workflow
The full process is in create-a-skill.md. Summary:
- Capture intent — Interview for 5-10 example prompts, expected outputs, and failure modes
- Draft description — Write trigger-focused frontmatter description; test against eval queries
- Write SKILL.md — Essential principles, When to Use / When NOT to Use, quick references
- Split content — Move detailed patterns to
references/, step-by-step processes toworkflows/ - Register — Add entries to
AGENTS.mdtable andCLAUDE.mdimports - Validate — Run
tessl skill review, run unit tests (test_skills_structure.py), verify all links resolve
Skill Directory Structure
Every skill follows this structure:
skills/
└── <skill-name>/ # kebab-case directory name
├── SKILL.md # Main skill definition with YAML frontmatter
├── references/ # Deep-dive reference documents
│ ├── <topic>.md # Detailed guidance on a specific topic
│ └── ...
└── workflows/ # Step-by-step processes
├── <process>.md # Numbered phases with entry/exit criteria
└── ...
SKILL.md Template
---
name: <skill-name>
description: >-
<Third-person description with trigger keywords.
Use when <specific scenarios>. Applies to <specific domains>.>
---
# <Skill Title>
<One-line purpose statement.>
## Essential Principles
<3-5 non-negotiable rules, each explaining WHY>
## When to Use
<4-6 specific scenarios>
## When NOT to Use
<3-5 scenarios naming alternatives>
## <Domain-Specific Sections>
<Quick references, routing tables, decision trees>
## Reference Index
<Links to all supporting files in references/ and workflows/>
## Success Criteria
<Checklist for output validation>
Platform Discovery Configuration
When adding a new skill, the skill is automatically discoverable via symlinks:
.github/skills→skills/(Copilot native discovery).claude/skills→skills/(Claude Code native discovery)
Additionally, update both platform reference files:
Copilot Discovery (AGENTS.md)
Add an entry to the "Skills" section in AGENTS.md:
## Skills
| Skill | Description | Path |
|-------|-------------|------|
| designing-skills | Meta-skill for creating new AI agent skills | `skills/designing-skills/SKILL.md` |
| <new-skill> | <description> | `skills/<new-skill>/SKILL.md` |
Claude Code Discovery (CLAUDE.md)
Add an import to CLAUDE.md:
@skills/<new-skill>/SKILL.md
Anti-Pattern Quick Reference
The most common mistakes. Full catalog in anti-patterns.md.
| ID | Anti-Pattern | One-Line Fix |
|---|---|---|
| AP-1 | Vague description / missing scope | Add trigger keywords to description; add When to Use / When NOT to Use |
| AP-2 | Monolithic SKILL.md (>500 lines) | Split into references/ and workflows/ |
| AP-3 | Reference chains (A → B → C) | All files one hop from SKILL.md |
| AP-4 | Unnumbered phases | Number every phase with entry/exit criteria |
| AP-5 | Missing exit criteria | Define what "done" means for every phase |
| AP-6 | No verification step | Add validation at the end of every workflow |
| AP-7 | Broken file references | Verify every path resolves before submitting |
| AP-8 | Platform-specific content in skill body | Keep skill content platform-agnostic |
| AP-9 | Missing discovery configuration | Update both AGENTS.md and CLAUDE.md |
| AP-10 | No concrete examples | Show input → output for key instructions |
| AP-11 | Description summarizes workflow | Description = triggering conditions only, not workflow steps |
| AP-12 | SCT convention violations in examples | Verify examples use pytest, Google docstrings, silence, no inline imports |
| AP-13 | Reference dump instead of guidance | Teach decision criteria, not raw documentation |
| AP-14 | No trigger test queries | Write 5-10 should-trigger and should-NOT-trigger queries |
| AP-15 | Description exceeds constraints | Max 1024 chars, no angle brackets, third-person voice |
| AP-16 | No intent capture | Interview the user for example prompts and expected outputs before writing |
| AP-17 | Instructions without reasoning | Every rule must explain WHY, not just WHAT |
Reference Index
| File | Content |
|---|---|
| skill-structure.md | SCT-specific skill structure with file organization and frontmatter rules |
| anti-patterns.md | Common mistakes when creating skills with before/after fixes |
| Workflow | Purpose |
|---|---|
| create-a-skill.md | 6-phase process for creating a new skill from scratch |
| test-and-iterate.md | Test trigger accuracy and iteratively improve a skill |
Success Criteria
A well-designed SCT skill:
- Has valid YAML frontmatter with
nameanddescriptionfields - Description is under 1024 characters with no angle brackets
- Has When to Use (4+ scenarios) AND When NOT to Use (3+ scenarios) sections
- Numbers all phases with entry and exit criteria
- Every instruction explains WHY, not just WHAT
- Keeps SKILL.md under 500 lines with details in references/workflows
- Has no broken file references (all paths resolve)
- Has no reference chains (all links one hop from SKILL.md)
- Includes a verification step at the end of workflows
- Has trigger eval queries (5+ should-trigger, 3+ should-NOT-trigger)
- Description tested against trigger eval queries and activates correctly
- Includes concrete examples for key instructions
- Is registered in both
AGENTS.md(Copilot) andCLAUDE.md(Claude Code) - Contains no platform-specific instructions in the skill body
- Follows SCT conventions from
AGENTS.md