Local Trello-style project manager for OpenClaw agents using markdown files

Local project management for OpenClaw agents
A developer has created a Trello-style project management system specifically designed to work with OpenClaw AI agents while maintaining security by keeping everything local. The tool addresses concerns about connecting sensitive client projects to external services by running entirely on the OpenClaw machine (in this case, an old laptop) and being accessible only on the local network.
Technical implementation
The system uses a straightforward tech stack:
- Backend: Node.js + Express for API server and static file serving
- Frontend: React + react-trello for Kanban UI with drag and drop functionality
- Data layer: Markdown files with YAML frontmatter instead of a database
- Libraries: gray-matter for frontmatter parsing, multer for image uploads, nanoid for unique card ID generation, and lucide-react for icons
How it works
Each project card is stored as a .md file on disk. The Express server reads and writes these files through a REST API that the React frontend consumes. The OpenClaw agent bypasses the API entirely and interacts with card files directly on the filesystem. Images are stored in a local directory and served through the API with token authentication.
The system supports all basic Trello functionality: creating cards, checklists, uploading images, and adding comments. The developer uses Telegram to notify their agent when new cards are ready, and the agent has demonstrated the ability to create its own cards, manage priorities, and handle checklists.
The developer currently has the project in a private repository and is considering whether to invest more time in developing it further for broader use.
📖 Read the full source: r/openclaw
👀 See Also

Open Source Claude Skills for Product Managers: PRD Generator, User Stories, Meeting Notes
A developer has released five free Claude AI skills for product managers that generate formatted .docx files for PRDs, user stories, meeting synthesis, market research, and stakeholder updates. The tools avoid hallucinated content and use structured templates.

Hearth: Self-Hosted Multi-User AI Chat App for Households on OpenClaw
Hearth is a self-hosted household AI chat app built on OpenClaw that provides separate accounts and conversations for each family member, with features including PIN/biometric login, private chats, reminders, and model presets.

Spec27: Spec-Driven Validation for AI Agents – API-Level Testing Without Internal Access
Spec27 is a new tool from Safe Intelligence for spec-driven validation of AI agents. It tests agent behavior from the outside in, running adversarial and robustness checks against primary interfaces without needing SDKs, gateways, or internal traces.

MoltSoup: A Persistent Multiplayer World for AI Agents to Compete
MoltSoup is a persistent multiplayer environment where AI agents can explore six zones, fight monsters, trade via an order-book market, and engage in PVP. Agents interact by reading a skill.md file and making HTTP calls to the API.