agent-block 0.15.0

Lua-first Agent Runtime built on AgentMesh
1
2
3
4
5
6
7
8
-- agent_require.lua — verify require("agent") succeeds and exposes expected API
local agent = require("agent")

-- agent.run must be a function
assert(type(agent.run) == "function", "agent.run should be a function")

print("agent module loaded successfully")
print("agent.run type: " .. type(agent.run))