Skill Sections
Every skill generated by SkillThis contains up to five standard sections. Each serves a distinct purpose in teaching the AI your methodology.
Quick Start
Section titled “Quick Start”Purpose: Immediate, actionable value with no preamble.
The Quick Start is the first thing the AI reads after the frontmatter. It should provide an immediately usable example or a concise summary of the core workflow.
Good Quick Start:
## Quick Start
Given a pull request, evaluate it in this order:
1. Read the PR description and linked issue2. Check for security issues (injection, auth bypass, data exposure)3. Review performance implications (N+1 queries, missing indexes)4. Verify error handling and edge cases5. Suggest improvements with specific line referencesBad Quick Start:
## Quick Start
Code review is an important part of the software developmentlifecycle. It helps maintain code quality and catch bugs early.In this skill, we'll cover how to review code effectively...The bad version wastes tokens on preamble. The AI already knows what code review is.
Workflow
Section titled “Workflow”Purpose: Step-by-step process with clear ordering.
The Workflow section breaks down your methodology into sequential steps. For complex workflows, include a checklist:
## Workflow
### Phase 1: Discovery1. Read the customer's current tech stack documentation2. Identify likely pain points based on stack analysis3. Build a custom demo environment mirroring their setup
### Phase 2: Presentation1. Open with discovery questions (5-10 minutes)2. Demo only the 3-4 features that solve their specific problems3. Leave 15 minutes for hands-on exploration
### Phase 3: Follow-up1. Send personalized Loom walkthrough within 24 hours2. Include specific configuration for their use case3. Schedule technical deep-dive if interest confirmed
Progress Checklist:- [ ] Discovery research complete- [ ] Demo environment built- [ ] Presentation delivered- [ ] Follow-up sentChecklists are especially valuable for complex multi-step workflows where the AI needs to track progress.
Examples
Section titled “Examples”Purpose: Concrete input/output pairs showing the skill in action.
Examples are the most heavily weighted section (20% of the grade). They must be concrete, not abstract.
Good examples (concrete input/output):
## Examples
**Example 1: API Endpoint Review**Input: PR adds a new `/api/users/:id` DELETE endpointOutput:- Flag: No authentication check on delete operation- Flag: Missing rate limiting- Suggestion: Add soft-delete with `deleted_at` timestamp instead of hard delete- Suggestion: Return 204 No Content, not 200 with body
**Example 2: Database Migration**Input: PR adds a new index on `orders.customer_id`Output:- Approve: Index matches the N+1 query pattern in `OrderService`- Note: Consider adding `CONCURRENTLY` for zero-downtime on production- Note: Estimated build time ~30 seconds for current table sizeBad examples (abstract):
## Examples
When reviewing code, look for common issues like securityvulnerabilities, performance problems, and maintainabilityconcerns. A good review catches bugs before they reach production.The bad version describes what to do rather than showing a real case.
Best Practices
Section titled “Best Practices”Purpose: Guidelines, tips, and recommended approaches.
This section captures the wisdom that comes from experience. Keep entries specific and actionable.
## Best Practices
- Always prep candidates before interviews (reduces no-shows by 40%)- Debrief hiring managers same-day while impressions are fresh- Use the "soft close" approach: help candidates decide, never hard sell- Build relationships even with rejected candidates (future pipeline)- Track all interactions in ATS for pipeline analyticsEach item should be a concrete action, not an abstract principle.
Common Pitfalls
Section titled “Common Pitfalls”Purpose: What NOT to do, common mistakes to avoid.
Pitfalls act as guardrails, preventing the AI from making the same mistakes humans commonly make.
## Common Pitfalls
- Screening for keywords instead of capability (filters out strong candidates)- Skipping the motivation check (leads to early attrition)- Not calibrating with the hiring manager on what "senior" means- Sending generic outreach messages (response rate drops 60%)- Waiting until offer stage to discuss compensation expectationsSection Order
Section titled “Section Order”The standard order is:
- Quick Start (immediate value)
- Workflow (detailed process)
- Examples (concrete demonstrations)
- Best Practices (guidelines)
- Common Pitfalls (guardrails)
Not all sections are required. A skill focused on a simple process might only need Quick Start, Workflow, and Examples.
Length Guidelines
Section titled “Length Guidelines”The entire skill body should target approximately 500 lines maximum. If it’s longer, consider:
- Cutting verbose explanations (the AI is smart, don’t over-explain)
- Removing obvious advice
- Providing defaults instead of listing many options
- Splitting into separate files for advanced features (when using Claude Code)