agent-block 0.27.0

Lua-first Agent Runtime built on AgentMesh
1
2
3
4
5
-- Execute a shell command and print the result.
local result = sh.exec("echo ok")
print("ok=" .. tostring(result.ok))
print("code=" .. tostring(result.code))
print("stdout=" .. result.stdout)