Local Trello-Style Project Manager for OpenClaw Agents

A developer on r/LocalLLaMA has created a local project management tool that mimics Trello functionality for use with OpenClaw AI agents. The system was built specifically to avoid connecting the AI agent to external services due to security concerns about client project data.
Technical Implementation
The tool runs on the same machine as the OpenClaw agent (described as "an old laptop") and is accessible only on the local network. The developer uses Telegram to notify their agent when new cards are ready for processing.
Tech Stack
- Node.js + Express (API server + static file serving)
- React + react-trello (Kanban UI with drag and drop)
- Markdown files with YAML frontmatter (data layer — no database)
- gray-matter (frontmatter parsing)
- multer (image uploads)
- nanoid (unique card ID generation)
- lucide-react (icons)
How It Works
Each project card is stored as a .md file on disk. The Express server reads and writes these files via a REST API, which the React frontend consumes. The OpenClaw agent bypasses the API entirely and reads/writes card files directly on the filesystem. Images are stored in a local directory and served through the API with token authentication.
The system supports creating cards, checklists, uploading images, and adding comments — described as "all the Trello basics." The developer reports that their agent has successfully created its own cards, managed priorities, and handled checklists.
The developer is considering whether to spend more time building out the tool and making it available to others, currently keeping it in a private repository.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Multi-LLM Paper-Trading Bot with Claude Opus as Lead Engineer and Gemini as Strategist: Architecture Breakdown
A solo builder shares a 4,900-LOC paper-trading bot on Alpaca where Claude Opus 4 (Engineer) has veto power over Gemini Pro (Strategist), with a 270+ entry disagreement log called the Strategist Codex.

Kelet: Automated Root Cause Analysis for AI Agents
Kelet is a service that automatically analyzes production AI agent failures by clustering traces and signals to identify root causes and suggest fixes. It integrates via Python/TypeScript SDKs or an installer skill and is currently free during beta.

HostMyClaudeHTML: One-Click Sharing for Claude HTML Artifacts
A developer built hostmyclaudehtml.com, a free tool that lets you share Claude-generated HTML artifacts as live URLs by dragging and dropping the .html file. No account is required for uploaders or viewers.

Gemini 3.1 Pro in Multi-Agent Systems: High Design Quality, 20% Tool-Call Failure Rate
Developers building Bobr, an AI presentation generator with a multi-agent architecture, report Gemini 3.1 Pro produces impressive design output but suffers from a ~20% tool-call failure rate and garbled text corruption in production pipelines.