ClawWork is an AI coworker framework that transforms AI assistants into agents capable of completing real-world professional tasks and earning income. It features a live economic benchmark, multi-model competition, and rigorous LLM evaluation. The project provides tools for standalone simulation and integration with openclaw/nanobot.
MimiClaw is an AI agent that runs on a $5 ESP32 board and delivers an OpenClaw-like experience, putting a private assistant in your pocket. It operates as a bare-metal AI agent, storing data in text files and interacting with the real world through GPIO pins.
AI agent toolkit: coding agent CLI, unified LLM API, TUI & web UI libraries
A review of Google's Auto Browse agent, testing its ability to perform various online tasks, from playing web games to managing playlists and scanning emails. The agent shows promise but requires significant supervision and struggles with certain tasks, particularly those involving prolonged monitoring or complex interfaces.
Create executable demo documents that show and prove an agent's work. Showboat helps agents build markdown documents that mix commentary, executable code blocks, and captured output. These documents serve as both readable documentation and reproducible proof of work. A verifier can re-execute all code blocks and confirm the outputs still match.
This guide documents the setup of OpenClaw on a Raspberry Pi 5 w/ 8GB RAM and how to give it access to a TFT display, temperature/pressure sensor, USB camera, and NeoPixels. It uses eSpeak text-to-speech and Whisper Small speech-to-text to enable speech based communication with the bot.
LlamaAgents Builder allows users to build document agents using natural language, generating agent workflows for tasks like classifying financial statements, extracting data from resumes, and creating multi-document summarization pipelines. It offers a balance between low-code ease of use and the flexibility of custom development, generating Workflows that can be deployed on LlamaCloud or self-hosted.
The awesome collection of OpenClaw Skills. Formerly known as Moltbot, originally Clawdbot.
Lobster is a **Clawdbot-native workflow shell** designed to be a **typed, local-first "macro engine"** for building composable and safe automations. It allows users to define pipelines of tools and skills that Clawdbot (or other AI agents) can invoke with a single step, saving tokens and enabling determinism and resumability.
**Key Features & Goals:**
* **Typed Pipelines:** Uses JSON objects/arrays instead of text pipes for data flow.
* **Local-First:** Executes workflows locally, enhancing privacy and control.
* **No New Authentication:** Leverages existing authentication mechanisms; doesn't require new OAuth tokens.
* **Composability:** Workflows can be chained and reused.
* **Approval Gates:** Includes mechanisms for human or automated approval before execution.
* **Workflow Files:** Supports YAML/JSON workflow files for defining complex pipelines.
**Quick Start:**
Requires `pnpm install`, `pnpm test`, and `pnpm lint`. Workflows can be run from the command line using `node ./bin/lobster.js`.
**Example Use Case:**
The documentation provides examples of monitoring GitHub pull requests and detecting changes, demonstrating how Lobster can be used to automate tasks and provide insights.
Unusually detailed post explains how OpenAI handles the Codex agent loop. The article dives into the technical aspects of OpenAI's Codex CLI coding agent, including the agent loop, prompt construction, caching, and context window management.
The article details how their Codex CLI coding agent functions. OpenAI engineer Michael Bolin explains the "agent loop" – the process by which the AI receives user input, generates code, runs tests, and iterates with human supervision.
* **Agent Loop Mechanics:** The agent builds prompts with prioritized components (system, developer, user, assistant) and sends them to OpenAI’s Responses API.
* **Prompt Management:** The system handles growing prompt lengths (quadratic growth) through caching, compaction, and a stateless API design (allowing for "Zero Data Retention"). Cache misses can significantly impact performance.
* **Context Window:** Codex automatically compacts conversations to stay within the AI model's context window.
* **Open Source Focus:** OpenAI open-sources the CLI client for Codex, unlike ChatGPT, suggesting a different approach to development and transparency for coding tools.
* **Challenges Acknowledged:** The article doesn't shy away from the engineering challenges, like performance issues and bugs encountered during development.
* **Future Coverage:** Bolin plans to release further posts detailing the CLI’s architecture, tool implementation, and sandboxing model.