43 lines
544 B
Django/Jinja
43 lines
544 B
Django/Jinja
---
|
|
name: {{ skill_name }}
|
|
description: {{ description }}
|
|
metadata:
|
|
author: {{ author }}
|
|
---
|
|
|
|
# {{ title }}
|
|
|
|
{{ summary }}
|
|
|
|
## When To Use This Skill
|
|
|
|
{% for item in when_to_use %}
|
|
- {{ item }}
|
|
{% endfor %}
|
|
|
|
## Workflow
|
|
|
|
### 1. Understand the request
|
|
|
|
{% for item in understand_steps %}
|
|
- {{ item }}
|
|
{% endfor %}
|
|
|
|
### 2. Execute
|
|
|
|
{% for item in execute_steps %}
|
|
- {{ item }}
|
|
{% endfor %}
|
|
|
|
### 3. Validate
|
|
|
|
{% for item in validate_steps %}
|
|
- {{ item }}
|
|
{% endfor %}
|
|
|
|
## Reference Map
|
|
|
|
{% for item in reference_map %}
|
|
- {{ item }}
|
|
{% endfor %}
|