45 lines
830 B
Markdown
45 lines
830 B
Markdown
# PicoBot Skill Template
|
|
|
|
Use this as the starting point for a new skill.
|
|
|
|
---
|
|
name: example-skill
|
|
description: What this skill helps with and when to use it.
|
|
always: true
|
|
---
|
|
|
|
# Example Skill
|
|
|
|
## Purpose
|
|
|
|
Explain what this skill does in one or two sentences.
|
|
|
|
## When To Use
|
|
|
|
- Use this skill when ...
|
|
- Use this skill when ...
|
|
|
|
## Workflow
|
|
|
|
1. Do the first thing.
|
|
2. Do the second thing.
|
|
3. Verify the result.
|
|
|
|
## Rules
|
|
|
|
- Keep the instructions narrow.
|
|
- Prefer concrete examples over long explanations.
|
|
- Move long details into `references/` or `assets/`.
|
|
|
|
## Examples
|
|
|
|
```text
|
|
User request -> expected skill behavior
|
|
```
|
|
|
|
## Optional Files
|
|
|
|
- `agents/openai.yaml` for UI metadata and default prompts.
|
|
- `references/` for long-form guidance, edge cases, and examples.
|
|
- `assets/` for reusable files, templates, or sample data.
|