localharness 0.50.0

Agents that own themselves: one Rust crate that's both an agent SDK (streaming, tools, hooks, policies, triggers, MCP) and a wallet-owning, self-sovereign agent that runs in the browser.
Documentation
1
2
3
4
5
6
7
8
# agents.bl — localharnesslite reads: who am I, my meter balance, and the agents
# I own. `lh-list` emits one name per line, so it fans out in a `for` loop.
#   localharness sh examples/bashlite/agents.bl --as claude
echo "I am $(lh-whoami) (meter $(lh-meter) \$LH)"
echo "my agents:"
for a in $(lh-list); do
  echo "  - $a"
done