Skills
Markdown knowledge packages in agentskills.io format. Skill templates, creating custom skills, and 3-stage lazy loading.
Markdown knowledge packages that teach agents domain expertise. Like Claude Code skills, but for company agents. Based on the open agentskills.io standard.
What Are Skills
Skills are packaged knowledge documents with optional scripts and references that teach agents how to do specific things. Code review conventions, deployment checklists, API design patterns, incident response playbooks -- anything an agent needs to know is a skill.
Skill Format
skills/
├── code-review/
│ ├── SKILL.md # Main knowledge document
│ ├── scripts/ # Optional automation scripts
│ ├── references/ # Optional reference materials
│ └── assets/ # Optional images, templates
├── deployment/
│ └── SKILL.md
└── git-workflow/
└── SKILL.mdSKILL.md Frontmatter
---
name: code-review
description: |
Code review standards, checklist, and conventions.
Use when reviewing PRs or providing code feedback.
license: MIT
metadata:
author: QUESTPIE
version: 1.0.0
tags: [code-quality, review, standards]
roles: [reviewer, developer]
---
# Code Review
## When to Use
When reviewing pull requests or providing code feedback...3-Stage Loading
Skills are loaded lazily to minimize context window usage:
- Metadata -- on startup, the loader scans all skill directories and reads only the frontmatter
- Body -- when an agent reads
skills/{id}/SKILL.md, the full markdown body is loaded - Resources -- if the skill has a
references/directory, those files are listed and available on demand
Skill Templates
The Solo Dev Shop template ships with 20 customizable skill templates:
| Skill | Roles | Description |
|---|---|---|
api-design | developer, strategist | REST/GraphQL API design conventions |
artifact-creation | developer, design | Creating live previews and artifacts |
ceo-watchdog | meta | Autonomous monitoring, health scans |
client-management | strategist, meta | Client relationships, proposals, invoicing |
code-review | reviewer, developer | Code review standards and checklist |
content-marketing | marketing | Content strategy, SEO, social media |
dashboard-customization | design, developer, meta | Theme, widgets, layout |
deployment | devops | Deploy checklist, rollback, health checks |
document-creation | all | Spec, ADR, and plan templates |
git-workflow | developer, reviewer | Branch strategy, PR conventions |
incident-response | devops, meta | Incident triage, communication, post-mortem |
integration-setup | devops, developer | 3-part integration pattern setup |
process-optimization | meta, strategist | Workflow optimization, bottleneck analysis |
project-scoping | strategist, planner | Feature scoping, estimation |
release-notes | developer, marketing | Changelog, release notes, versioning |
security-checklist | reviewer, devops | Security audit, vulnerability checks |
task-decomposition | meta, planner | Breaking intents into actionable tasks |
team-management | meta | Agent roster, role assignment |
testing-strategy | developer, reviewer | How to write unit, integration, and E2E tests |
workflow-design | meta, strategist | How to design workflow definitions |
Creating Your Own Skill
- Create the directory --
mkdir -p skills/my-skill - Write SKILL.md -- add frontmatter with name, description, and roles
- (Optional) Add references -- put supporting docs in
references/ - (Optional) Add scripts -- put automation scripts in
scripts/ - Test it -- run
autopilot skillsto verify it appears in the catalog
CLI Commands
# List all available skills
$ autopilot skills
# Show a specific skill
$ autopilot skills show code-reviewHow Agents Use Skills
When an agent starts a session, it sees the list of available skills (filtered by role) in its context. When it needs domain knowledge, it reads the corresponding SKILL.md file and applies it.
// Agent calls:
read_file("skills/code-review/SKILL.md")
// → Full SKILL.md body injected into agent context
// → Agent follows the checklist and conventionsMarketplace (Future)
Community-created skills will be available via the QUESTPIE Marketplace:
$ autopilot marketplace install @community/skill-seo-expert
$ autopilot marketplace publish ./skills/seo-optimizationLiving Dashboard
The most commercially exciting feature. A React app in the company filesystem that agents edit in real time. Custom widgets, theme overrides, layout config, custom pages. No deployment.
Artifacts
Agent-created live previews — React apps, HTML pages, and static sites. Artifact router with cold-start, port pool, and idle timeout.