devai 0.5.12

Command Agent runner to accelerate production coding with genai.
1
2
3
4
5
6
7
8
9
10
11
12
## Skip if a string only has whitespace

```lua
-- If the string contains only whitespace, treat it as empty and skip.
-- `%S` matches any non-whitespace character.
-- `find` returns 
--    - the start and end indices if a match is found;
--    - otherwise, it returns nil. Thus, `not ...` evaluates to true.
if not content:find("%S") then
    return devai.skip("Empty file - skipping for now. Start writing and do a redo.")
end
```