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

Memora v0.2.25 MCP Server: 5× Faster Writes on D1 Database
Memora v0.2.25, an MCP server for Claude persistent memory, achieves 5× faster writes on Cloudflare D1 with memory_create dropping from 10s+ to ~1.8s and memory_update from 10s+ to ~1.1s per call.

Claude-File-Recovery: CLI tool extracts files from Claude Code session history
claude-file-recovery is a Python CLI tool and TUI that parses JSONL session transcripts from ~/.claude/projects/ to recover files created, modified, or read by Claude Code, including point-in-time recovery of earlier file versions.

GrapeRoot Pro Adds Undo Shield to Prevent Claude Code from Deleting Your Project
After Reddit reports of Claude Code deleting entire projects, GrapeRoot Pro introduces an Undo Shield that watches Claude's session graph and blocks destructive commands like rm -rf on heavily edited files.

Open source PR review agent PrixAI detects all 10/10 planted bugs at 6x lower cost than CodeRabbit
A Reddit user built PrixAI, an open source PR review agent that uses local/cheap inference models to match CodeRabbit's features at 6x less cost, detecting all 10 intentionally planted issues in a test PR.