30 lines
674 B
YAML
30 lines
674 B
YAML
name: explain
|
|
version: "1.0.0"
|
|
description: "Explain code or concepts clearly"
|
|
category: education
|
|
tags:
|
|
- explanation
|
|
- learning
|
|
- code
|
|
arguments:
|
|
- name: audience
|
|
flag: "--audience"
|
|
default: "general"
|
|
description: "Audience level: beginner, general, expert"
|
|
- name: format
|
|
flag: "--format"
|
|
default: "paragraph"
|
|
description: "Output format: paragraph, bullet, or step-by-step"
|
|
steps:
|
|
- type: prompt
|
|
provider: "claude"
|
|
template: |
|
|
You are a clear and concise explainer.
|
|
Audience: {audience}
|
|
Format: {format}
|
|
|
|
Explain the following content:
|
|
{input}
|
|
output_var: explanation
|
|
output: "{explanation}"
|