Documentation Index
Fetch the complete documentation index at: https://errand.nuvrel.dev/llms.txt
Use this file to discover all available pages before exploring further.
file(path) reads the file at path and returns its contents as a UTF-8 string. The path is relative to the playbook’s working directory.
Signature
Example
Read a version from a dedicated file and use it across the playbook:Notes
- If the file does not exist or cannot be read, Errand reports an error at evaluation time.
- The file contents are read as-is, including any trailing newline. Use
trimspaceorchompto strip it. - For binary files, use
filebase64to read as base64-encoded string. - To check whether a file exists before reading it, use
fileexistsin a condition.