localharness 0.78.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
9
{
  "id": "007",
  "prompt": "Show the title \"HELLO WORLD\" at scale 3 near the top-left, with a dimmer subtitle \"FROM RUSTLITE\" at scale 1 under it. draw_string only accepts a string literal.",
  "solution_rl": "fn frame(t: i32) {\n    host::display::clear(0x101010);\n    host::display::draw_string(8, 12, \"HELLO WORLD\", 0xffffff, 3);\n    host::display::draw_string(8, 44, \"FROM RUSTLITE\", 0x808080, 1);\n    host::display::present();\n}\n",
  "tags": [
    "display",
    "draw_string"
  ]
}