📊 Full opportunity report: Disk Is the Contract: Inside Threlmark’s Local-First Architecture on ThorstenMeyerAI.com — validation score, market gap, and execution plan.
TL;DR
Threlmark introduces a local-first, disk-based architecture for project management, using JSON files as the source of truth. This design enables portability, safety, and external tool integration without a database.
Threlmark’s new architecture radically departs from traditional server-based project management tools by relying solely on JSON files stored on disk as the source of truth, without a server or database. This design enables full portability, safety, and external tool integration, making it a significant innovation in local-first application architecture.
Threlmark’s core decision is that the file system, specifically a directory of JSON files, serves as the contract for data integrity and operations. The data resides in a dedicated folder (~/.threlmark), with each project and item stored as individual JSON files. This setup allows external tools, AI agents, and users to read, modify, and manage project data directly via file operations, eliminating the need for a centralized server or database.
Key technical choices include atomic file writes—using temporary files and rename operations to prevent corruption—and read-merge-write update patterns that preserve data integrity and forward compatibility. The system handles concurrency safely because each item is stored in a separate file, avoiding race conditions common in list-based designs. The self-healing nature of the board ensures that missing or orphaned items are automatically reconciled during reads, maintaining consistency without locking.
Threlmark’s approach emphasizes transparency and interoperability, allowing any tool or script to interact with project data through simple file I/O, ensuring the system is restartable and portable across environments. This design also facilitates external integrations like IdeaClyst or AI agents that can operate autonomously, closing the loop on task completion without external dependencies.
Disk is the contract: inside a local-first roadmap hub
A Next.js app on top of plain JSON files — no database, no cloud, no accounts. The key decision: the on-disk layout IS the API. Everything else cascades from taking that seriously.
There is no server-of-record — the files are the record
The UI and any external tool reach the same files through the same discipline. The data root defaults to ~/.threlmark — home-based, because it’s a shared hub every one of your apps points at.
Inspectable
Every artifact is a file you can cat, diff, grep, commit.
Portable · no lock-in
Back up with cp, sync with Dropbox / git, migrate trivially.
Interoperable
Any tool in any language joins by reading / writing files.
Restartable
No in-memory state to lose — stateless over the files.

Hi-Spec 17 Piece Metal Hand & Needle File Tool Kit Set. Large & Small Mini T12 Carbon Steel Flat, Half-Round, Round & Triangle Files. Complete in a Zipper Case with a Brush
Versatile Filing for Every Task: Includes 4 full-length 12-inch machinist’s files and 12 metal needle files; perfect for…
As an affiliate, we earn on qualifying purchases.
As an affiliate, we earn on qualifying purchases.
Two disciplined patterns instead of a database
“Just use files” is easy to get wrong. These two patterns — ported from a battle-tested sibling app — are what make file-based state sound rather than reckless.
Atomic writes
Write to a temp file in the same dir, then rename() over the target. Rename is atomic on one filesystem — a crash mid-write leaves the complete old file or the complete new one, never a half.
The board heals itself
A single roadmap.json array races when two tools write at once. One file per card makes writes collision-free. Lane order lives in board.json and reconciles on read.
board.json. It writes an item file — the board fixes itself on Threlmark’s next read. Unknown keys are preserved, so the contract is forward-compatible.![DeskFX Free Audio Effects & Audio Enhancer Software [PC Download]](https://m.media-amazon.com/images/I/41fXbDohyuS._SL500_.jpg)
DeskFX Free Audio Effects & Audio Enhancer Software [PC Download]
Transform audio playing via your speakers and headphones
As an affiliate, we earn on qualifying purchases.
As an affiliate, we earn on qualifying purchases.
The numbers can’t drift from the files
Anything computable from item state is computed — so the displayed numbers can never disagree with the underlying JSON. Priority is the clearest example: it’s calculated on read, never persisted.
priority — computed on read
Impact weighted heaviest; effort the only axis that subtracts. Reused verbatim from the original tool, so imported cards rank identically.

Drafting Tools and Ruler Shapes for Architecture – Set of 3 for House Plan Furniture Kitchen, Building, Interior Design
Architect Drawing And Interior Design Template Set:House Plan Template(6.25" X 9.875"),Furniture Template (6.4" X 9.9") and Kitchen, Bed…
As an affiliate, we earn on qualifying purchases.
As an affiliate, we earn on qualifying purchases.
A handoff is a first-class flow event
The genuinely 2026-shaped part: most building is done by AI agents, so Threlmark closes the loop. Watch a card go from ranked to Done without anyone dragging it.
Handoff → report → self-move
The brief carries a reporting protocol. The agent reports through REST or the filesystem — and a done report moves the card itself.
POST /api/projects/:id/
items/:itemId/reportDirect call. Applied immediately.
drop reports/.json
→ ingested on read Robust even if the server’s down at finish time.

Practical Python Projects Step-by-Step: Build Real Applications, Automation Tools, and Desktop Programs with Python 3.14 (Modern Python Development Mastery Series)
As an affiliate, we earn on qualifying purchases.
As an affiliate, we earn on qualifying purchases.
A small formula, and an honest hosting caveat
Because items are globally addressable (), the Portfolio ranks everything together by a status-weighted score — finishing beats starting, blockers get a boost.
Portfolio ranking — status-weighted
In-flight work floats to the top; bottlenecks cost the most, so blockers get nudged up.
Static read-only demo
Seeded data, writes to localStorage. Try-before-you-clone.
Personal Node instance
Password-gated, persistent backed-up THRELMARK_DATA_DIR.
Multi-tenant SaaS
Add accounts + per-tenant isolation. A separate build.
src/lib/*/store.ts is the natural seam — the same boundary that keeps the local tool simple is the one you’d extend for multi-tenancy. The architecture doesn’t fight that future; it just doesn’t pay for it until you need it.
Implications of a Disk-Based, Serverless Architecture
This architecture fundamentally changes how project data is stored, accessed, and manipulated, emphasizing portability, safety, and interoperability. For users, it means complete control over their data without vendor lock-in or reliance on cloud services. For developers, it offers a robust model for building resilient, restartable tools that can seamlessly integrate with external systems and AI agents. Overall, it demonstrates a practical, scalable approach to local-first design that could influence future project management tools and workflows.The Evolution of Local-First Project Management
Traditional project management tools often depend on cloud servers and centralized databases, which can introduce lock-in, data silos, and reliance on network connectivity. Threlmark’s approach builds on the principles of local-first design, emphasizing data ownership and resilience. Its architecture is inspired by prior local-first projects but distinguishes itself through its specific implementation: a directory of JSON files serving as the complete data contract, enabling external tools and AI agents to interact directly with project data. This approach aligns with emerging trends toward decentralization and user sovereignty over data, while addressing common issues like data corruption and concurrency through proven file system techniques.“The core idea is that the on-disk layout is the API. This choice cascades into everything else, from how concurrency is handled to how external tools participate, as explained in Disk Is the Contract.”
— Thorsten Meyer
Remaining Questions About Threlmark’s Architecture
It is not yet clear how well this approach scales with very large projects or numerous concurrent external tools. The practical limits of file-based concurrency and performance in complex workflows remain to be tested in real-world scenarios. Additionally, user experience considerations—such as editing conflicts and synchronization—are still being evaluated as the system evolves.Next Steps for Threlmark Development and Adoption
Threlmark plans to release more detailed documentation and tools to facilitate external integrations. Further testing in diverse project environments will help assess scalability and robustness. The development team also aims to gather user feedback to improve usability and address any emerging challenges related to concurrency and data management. Broader adoption and community engagement are expected to follow as the architecture matures.Key Questions
How does Threlmark handle concurrency with multiple external tools?
Threlmark uses atomic file writes and a self-healing board structure that reconciles discrepancies during reads, reducing race conditions and conflicts when multiple tools modify project data.
Can I migrate existing project data into Threlmark’s system?
Yes, since all data is stored as JSON files, users can migrate data by converting existing project artifacts into the Threlmark file structure and placing them in the designated directories.
Is Threlmark suitable for large-scale projects?
The architecture is designed for resilience and portability but has not yet been tested extensively at very large scales. Performance and concurrency in such scenarios are still being evaluated.
How does this approach compare to traditional cloud-based project tools?
Unlike cloud-based tools, Threlmark’s local-first, disk-based system offers greater data control, no lock-in, and offline resilience, but may require more manual management for large projects.
Source: ThorstenMeyerAI.com