Generates a SKILL.md-based skill bundle (a directory containingDocumentation Index
Fetch the complete documentation index at: https://docs.agentfront.dev/llms.txt
Use this file to discover all available pages before exploring further.
SKILL.md plus optional references/). This is the markdown-only skill format — useful when a skill is documentation-driven rather than backed by a @Skill class.
For class-based skills with @Skill decorators, use the Skill Generator instead.
Usage
Options
| Option | Type | Default | Description |
|---|---|---|---|
name | string | — | Required. Skill name (kebab-case) |
project | string | — | Required. The project to add the skill to |
description | string | — | Required. Short description of the skill |
directory | string | skills | Custom directory relative to the project root |
tags | string | — | Comma-separated tags for categorization |
withReferences | boolean | false | Include a references/ directory |
Generated Files
Generated SKILL.md
When to Use This vs @Skill
- Use
skill-dirfor purely documentation-driven skills (markdown-only) that don’t need executable behavior or DI access. - Use
skillwhen you need a TypeScript class with access to providers, hooks, or other SDK runtime features.