| name | LightFlow Text Template |
| description | Use this skill when working with the lightflow.text_template workflow that renders prompt templates from JSON variables. |
| version | 0.1.0 |
LightFlow Text Template
Use lightflow.text_template to render prompt text with {{key}} placeholders. Nested JSON values can be addressed with dot paths such as {{user.name}}.
Workflow
- Workflow id:
lightflow.text_template
- Runtime:
lightflow.text.template.
- Input
template: required template text; widget textarea.
- Input
vars: optional JSON object; default {}; widget json.
- Output
text: rendered text.
Usage
lfw run lightflow.text_template -i template='Describe {{topic}}' -i vars='{"topic":"a quiet lake"}'
API Usage
Start lfw serve, then call the workflow through the shared HTTP run contract. Adjust inputs to match the workflow contract above.
curl -sS -X POST http://127.0.0.1:5174/workflows/lightflow.text_template/run \
-H 'content-type: application/json' \
-d '{"inputs":{}}'