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

Claude Academy: A Free Coding Bootcamp That Runs Inside Claude Desktop
A developer has built Claude Academy, a free coding bootcamp that operates entirely within Claude Desktop's Code tab. The system uses three commands to deliver 64 structured lessons across web development fundamentals, with progress tracking and real project building.

Native macOS MCP Server for Full OS Control
A native macOS server provides 24 tools for pixel-accurate clicks, key combos, drag-and-drop, app management, multi-display support, and clipboard access. It's open source and works with Claude Code, Cursor, or any MCP client.

PreToolUse Hook Fixes Claude Code Image Crash Problem
A developer created a PreToolUse hook that intercepts Claude Code's Read calls on images, converts them safely, and proxies them through a Haiku subprocess to prevent API Error 400 crashes from problematic images.

Am I OpenAI Compatible: Tool & Docs for Unified API Signatures
A new tool and documentation page documents OpenAI compatibility across open-source AI engines like vLLM and llama.cpp, including official and unofficial signatures.