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

✍️ OpenClawRadar📅 Published: March 2, 2026🔗 Source
Local Trello-style project manager for OpenClaw agents using markdown files
Ad

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
Ad

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

Ad

👀 See Also

DELIGHT: Local Orchestrator Uses Multiple ChatGPT Sessions as Coordinated Agents
Tools

DELIGHT: Local Orchestrator Uses Multiple ChatGPT Sessions as Coordinated Agents

DELIGHT is a local orchestrator that runs multiple hidden ChatGPT browser sessions simultaneously, coordinating them like a team of agents without requiring API keys or GPU resources. It connects to OpenClaw as an action layer to apply changes to real files and run tests.

OpenClawRadar
Code Evolution Method Triples LLM Performance on ARC-AGI-2 Benchmark
Tools

Code Evolution Method Triples LLM Performance on ARC-AGI-2 Benchmark

Researchers achieved a 2.8x improvement on the ARC-AGI-2 benchmark using code evolution with open-weight models, reaching 34% accuracy at $2.67 per task. The same method pushed Gemini 3.1 Pro to 95% accuracy at $8.71 per task.

OpenClawRadar
LLMs Leak Reasoning into Structured Output Despite Explicit Instructions
Tools

LLMs Leak Reasoning into Structured Output Despite Explicit Instructions

A developer building a tool that makes parallel API calls to Claude and parses structured output found that validation models intermittently output reasoning text before corrected content, despite explicit instructions to return only corrected text. The fix involved prompt tightening plus a defensive strip function that runs before parsing.

OpenClawRadar
SkillMesh: MCP-Friendly Router for Large Tool Catalogs Reduces Context Size by 70%
Tools

SkillMesh: MCP-Friendly Router for Large Tool Catalogs Reduces Context Size by 70%

SkillMesh is an MCP-friendly router that retrieves only relevant expert cards for AI agent queries, reducing context size by 70% and improving tool selection. It supports Claude via MCP server, Codex skill bundles, and OpenAI-style function schemas.

OpenClawRadar