Enhance the .chain file format to include placeholders that prompt the user for values during execution. The filled placeholders will generate updated .chain files and corresponding YAML files for reuse.
Example Workflow:
- Input .chain file with placeholders:
Implement an application that collects use [[date_to_collect|what data do you want to collect?]] and saves it in [[file|file name]].[[format|format type?]]
---
Cover it with tests
---
Add the possibility to access this service via the REST endpoint
---
Add REST endpoint which returns [[file]].csv as the JSON
- Dialog prompts user:
- "What data do you want to collect?" → User, Email.
- "File name?" → user_data.
- "Format type?" → csv.
- Generate updated .chain and YAML files with resolved values.
Related to #16.