no-storage-in-stateless-modules
Disallow SQL or key/value access inside configured stateless modules; derive state from a system of record instead.
Why
Private storage in a stateless workflow creates another source of truth that can silently diverge.
Fix
Read from the system of record or derive state from an artifact the workflow already produces.
Examples
await kv.put("digest:last", timestamp);const issues = await linear.listIssues();