📊 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’s architecture design treats the local disk as the ultimate source of truth, replacing traditional databases. This enhances offline capabilities, simplifies synchronization, and makes data portable and transparent. The approach shifts complexity from centralized systems to file integrity management.
Threlmark’s new architecture design treats local disk storage as the definitive source of truth, avoiding traditional databases and cloud dependencies. This approach is detailed in the original analysis. This approach simplifies data synchronization, improves offline usability, and makes data more portable and transparent, representing a significant shift in how project management tools can operate.
Threlmark’s system is built around the principle that the local disk is the primary contract for all data. Instead of relying on a centralized database or server, each item—such as project cards, metadata, and dependencies—is stored as individual files. This design enables direct editing, easy inspection, and seamless integration with external tools without vendor lock-in.
To ensure data safety, Threlmark employs techniques like atomic writes—writing to temporary files before renaming—and tolerant merging, which allows for conflict resolution even with concurrent edits. Each item is stored in its dedicated file, reducing race conditions and simplifying concurrency management. The directory structure itself acts as a formal contract, providing transparency and clarity for both internal processes and external integrations.
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.
local disk storage data management tools
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.
Information Technology Project Management (Mindtap Course List)
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.

Office 2026 + LibreOffice on CD DVD Disc | MS Office Alternative Compatible with Word, Excel and PowerPoint Files | One Time Purchase + Lifetime License | Windows 11, 10, 8, 8.1, 7, Vista and Mac
Fully compatible with Microsoft Office Word, Excel, and PowerPoint files, for home, student, business, and personal use. Create…
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.

ABC life 26 Pockets Accordion File Organizer, Expanding File Folders, Portable Monthly Bill Receipt Organizer with Colorful A-Z Tabs, Desktop Folders Letter A4 Paper Document Storage for Home Office
26-POCKET MONTHLY FILE ORGANIZER: ABC life 26-pocket accordion file organizer is the perfect solution for filing taxes and…
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.
Why Local-First Design Reshapes Data Management
This architecture fundamentally alters how data persistence and collaboration are handled in project tools. It builds on the principles of local-first architectures. By making the disk the contract, Threlmark enhances offline capabilities, reduces reliance on proprietary systems, and improves data portability. It also simplifies recovery and debugging, as all data is stored in human-readable files. However, it shifts complexity to managing file integrity, merge conflicts, and directory structures, requiring careful design and handling.
The Evolution Toward Local-First Architectures
Traditional project management tools rely on centralized databases and cloud services, which can introduce lock-in, latency, and dependency on network connectivity. For a deeper dive into this trend, see the original analysis. Recent developments in local-first architectures aim to address these issues by leveraging the filesystem as the primary data store. Threlmark’s approach builds on this trend, emphasizing simplicity, transparency, and resilience. The concept aligns with broader movements in software design that prioritize user control, data portability, and offline functionality.
“Treating the disk as the contract simplifies synchronization and makes the system more resilient and transparent.”
— Thorsten Meyer, Threlmark developer
Unresolved Challenges and Areas for Further Development
While Threlmark’s approach offers many advantages, it is still early in adoption, and some challenges remain. Handling large numbers of small files can impact filesystem performance, and manual intervention may be needed if files become corrupted. Conflict resolution strategies, especially in multi-user environments, are still being refined, and the system’s robustness under extreme conditions is yet to be fully tested.
Upcoming Improvements and Adoption Pathways
Threlmark plans to refine conflict resolution mechanisms, optimize filesystem interactions, and develop tools for easier manual recovery. As the architecture matures, wider adoption and integration with other tools are expected, potentially influencing broader shifts toward local-first, file-based data management in project tools and beyond.
Key Questions
How does Threlmark ensure data safety with file-based storage?
Threlmark uses atomic writes—writing data to temporary files before renaming—to prevent corruption. It also employs tolerant merging to handle concurrent edits, maintaining data integrity even with multiple tools accessing files simultaneously.
What are the main benefits of treating the disk as the contract?
This approach improves offline capabilities, simplifies data portability, reduces vendor lock-in, and makes data easier to inspect and manually edit, enhancing transparency and resilience.
Are there any downsides to this architecture?
Managing many small files can impact filesystem performance, and conflicts or corruption may require manual intervention. Handling concurrent edits and ensuring consistency across files also present challenges.
Can this architecture support multi-user collaboration?
While promising, multi-user collaboration requires sophisticated conflict resolution strategies. Threlmark is still developing these features to ensure safe concurrent access.
How does this approach compare to traditional database systems?
Unlike centralized databases, Threlmark’s system relies on individual files, offering greater transparency, portability, and offline functionality, but shifting some complexity to file management and conflict handling.
Source: ThorstenMeyerAI.com