An open standard to define LLM driven processes. Steps, actions, loops, all in a portable JSON file. Run with Prism or your own executor.
npm install daf-sdk
{ "dafVersion": "1.2.0", "variables": { "EMAIL": "you@example.com" }, "processes": [{ "name": "Newsletter", "steps": [ {"type": "prompt", "content": "Scrape tech news"}, {"type": "prompt", "content": "Write summary"}, {"type": "prompt", "content": "Email to $EMAIL"} ] }] }
{"type":"action","variant":"..."} in its response.