bquast simple-agent-harness — Summary
Simple Agent Harness by bquast is a minimal autonomous LLM agent with zero framework dependencies: a shell script (agent.sh) that calls Ollama on a cron schedule, a soul file defining identity, a heartbeat prompt sent every 30 minutes, a rewritable memory file, and an append-only log. The agent can execute shell commands (fenced sh blocks) and rewrite its own memory (fenced memory blocks). This is the purest example of Archetype 4 (markdown scaffold + minimal primitives) pushed to its extreme: the "harness" is a 6-file system where the entire runtime is a bash script and the "framework" is three markdown files. It explicitly avoids all AI framework complexity. Differs from seeds: closest to agent-os (markdown scaffold, zero agent primitives) but agent-os generates project memory for Claude Code, while this IS an autonomous agent itself running locally via Ollama. The closest architectural analog is the continuous-ralph execution mode described for some seeds but implemented without any framework — a cron-driven daemon loop.