Files
yao-meta-skill/templates/complex_skill.md.j2
T
2026-03-31 19:59:29 +08:00

62 lines
1.0 KiB
Django/Jinja

---
name: {{ skill_name }}
description: {{ description }}
metadata:
author: {{ author }}
version: {{ version }}
---
# {{ title }}
{{ summary }}
## When To Use This Skill
{% for item in when_to_use %}
- {{ item }}
{% endfor %}
## Operating Contract
- Primary output: {{ primary_output }}
- Main tools or systems: {{ tools_summary }}
- Failure tolerance: {{ failure_tolerance }}
## Workflow
### 1. Intake
{% for item in intake_steps %}
- {{ item }}
{% endfor %}
### 2. Choose the path
{% for item in routing_steps %}
- {{ item }}
{% endfor %}
### 3. Execute
{% for item in execute_steps %}
- {{ item }}
{% endfor %}
### 4. Validate
{% for item in validate_steps %}
- {{ item }}
{% endfor %}
## Bundled Resources
- Read `references/` when domain-specific detail or long examples are needed.
- Use `scripts/` when deterministic or repetitive steps should not be re-authored in prose.
- Use `assets/` for templates or output artifacts, not instructions.
## Reference Map
{% for item in reference_map %}
- {{ item }}
{% endfor %}