TL;DR

Threlmark’s local-first architecture treats disk-stored JSON files as the system of record, making data portable, offline-friendly, and easily interoperable. This approach simplifies reliability and collaboration, shifting complexity into sync and conflict resolution.

Imagine a project management tool that doesn’t rely on a cloud server or a database. Instead, it lives entirely on your disk, with every change stored as a simple JSON file. That’s the core idea behind Threlmark’s architecture, where the filesystem becomes the system of record.

This design isn’t just about avoiding servers. You can learn more about local-first architectures. It’s about creating a resilient, portable, and open system that works offline, scales with your needs, and supports external tools without fuss. You’re about to see how a straightforward on-disk layout can power a complex, multi-project workflow—without the usual database overhead.

Disk is the contract: inside Threlmark’s architecture — ThorstenMeyerAI.com
ThorstenMeyerAI.com
Threlmark · Technical Deep-Dive
Threlmark · architecture

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.

Next.js · TypeScript · JSON-on-disk · MIT · part 2 of the Threlmark series
01The core decision

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.

~/.threlmark/ ├─ threlmark.json # manifest ├─ links.json # dependency graph ├─ projects// │ ├─ project.json # meta + wipLimits │ ├─ board.json # lane ordering │ ├─ items/.json # ONE card per file ← source of truth │ ├─ suggestions/ # the Inbox (drop-zone) │ ├─ handoffs/ # recorded agent handoffs │ ├─ reports/ # agent report drop-zone │ └─ ROADMAP.md # human-readable mirror ├─ shared/items/ # cards many projects ref └─ archive/ # archived, still readable

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.

02Making files safe
Amazon

portable external SSD drive

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.

Pattern 1

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.

write .tmp-pid-rand fsync rename() over target
Pattern 2 · one file per item

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.

The payoff: an external tool never touches 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.
03Derived, never stored
Amazon

offline JSON file editor

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.

priority = max(0, round(impact·3 + evidence·2 + fit·2effort·1.5))
a 5 / 5 / 5 / 4 card 29
work-item age
now − lane-entry time. Past threshold (dev 7d, ranked 21d, idea 60d) → stale.
cycle time
first DevelopmentDone. Derived from append-only transitions[].
throughput
items reaching Done per ISO week, 8-week window.
WIP
count per lane; over the cap shows 3 / 2 in red.
04The closed agent loop · press play
Amazon

file synchronization software for JSON

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.

Ranked
Add price-drop alertsscore 31 · ready
Development
Handed off 🤖
Done
▶ preferred — REST
POST /api/projects/:id/
items/:itemId/report

Direct call. Applied immediately.

▶ fallback — filesystem
drop reports/.json
→ ingested on read

Robust even if the server’s down at finish time.

🤖 claude done: price-drop alerts shipped · typecheck + lint + build passed — card moved to Done
05Portfolio score & deployment
Amazon

local-first project management tools

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.

score = priority · statusWeight (+ 0.1 · blockedCount · priority)
1.3
development
1.0
ranked
0.85
idea
0.15
done
Path 1

Static read-only demo

Seeded data, writes to localStorage. Try-before-you-clone.

Path 2

Personal Node instance

Password-gated, persistent backed-up THRELMARK_DATA_DIR.

Path 3

Multi-tenant SaaS

Add accounts + per-tenant isolation. A separate build.

The elegant part: the store interface 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.
ThorstenMeyerAI.com
Threlmark · open source (MIT) · github.com/MeyerThorsten/threlmark · part 2 of a series · file layout, formula, weights & agent-loop channels are Threlmark’s actual mechanics.

Key Takeaways

  • Treat your disk as the ultimate source of truth by organizing data in a clear, file-based layout.
  • Atomic file writes prevent corruption, making your data safer during crashes or interruptions.
  • Conflict resolution relies on timestamps and tolerant merging, suitable for small teams or solo workflows.
  • External tools and AI agents can participate seamlessly by reading and writing JSON files directly.
  • Self-healing boards and reconciliation keep your data consistent, even with concurrent edits.

Why Threlmark’s ‘Disk Is the Contract’ Changes Everything

In most apps, the database is the single source of truth. Threlmark flips that idea. Here, the disk holds your entire data state, making it the ultimate authority. This means every file, from a project’s metadata to individual task cards, is a piece of the truth.

For example, your task cards are stored as items/.json files. When you update one, the app writes that file directly, ensuring consistency. No central server, no special database, just plain JSON files. This approach makes data transparent and portable—backup by copying, sync with any tool, and easy to inspect or modify.

Why Threlmark's 'Disk Is the Contract' Changes Everything
Why Threlmark’s ‘Disk Is the Contract’ Changes Everything

How Local-First Works: Offline, Resilient, and Syncing Seamlessly

Local-first means you can work offline without losing a beat. Threlmark’s architecture stores all data locally, so you can add, update, or move cards even without internet. When connectivity returns, changes sync automatically.

For example, if you’re on a plane, you can reorganize your roadmap. As soon as you land, the system syncs these updates—merging conflicts intelligently. This is made possible because each change touches only a single file, avoiding complex lock systems.

Sync isn’t just about copying files. Threlmark uses a combination of file versioning, timestamps, and conflict resolution—ensuring your data stays consistent across devices.

The File Layout That Powers Everything

The core of Threlmark’s architecture is its disciplined file layout. At the root, you find a manifest (threlmark.json) and dependency graph. Each project has its own folder with metadata, lanes, and a list of item files.

Most importantly, each task card lives in items/ as a separate JSON file. When you change a card, only that file updates. The lane order is stored in board.json, which reconciles itself each time it loads.

Shared cards are stored under shared/items/. When a project archives, its folder moves to archive/, keeping everything readable but out of the active workspace.

The File Layout That Powers Everything
The File Layout That Powers Everything

Why Using Files Is Safer and More Flexible Than Databases

Many assume databases are necessary for complex data, but Threlmark shows that files can do the job just fine. Using atomic write patterns, each file update is safe from corruption—even if your system crashes mid-write.

For instance, writing to a file involves creating a temporary version, then renaming it atomically. This guarantees that the data is either fully written or untouched—no half-baked states.

Plus, files are easy to back up, migrate, and inspect. You can move them to another device or tool without vendor lock-in, making the system truly portable.

Handling Conflicts and Merging Changes Like a Pro

Conflicts are inevitable when multiple devices edit the same data. You can explore conflict resolution strategies on surveillance and conflict handling. Threlmark handles this with a simple but effective approach: last-writer-wins combined with merge strategies.

For example, if two devices update the same card simultaneously, the system merges changes based on timestamps and known defaults. Unknown fields are preserved, so no data gets lost as formats evolve.

This approach means you can edit on your laptop and phone with confidence—changes merge smoothly without manual intervention.

Handling Conflicts and Merging Changes Like a Pro
Handling Conflicts and Merging Changes Like a Pro

The Magic of Self-Healing Boards and Incremental Sync

The lane order isn’t stored as a monolithic list. Instead, board.json contains ordered references, and on each load, Threlmark reconciles it with existing items. Missing or mismatched entries get corrected automatically.

Imagine a scenario: you move a card to a new lane on one device. When you sync, the lane list updates itself to reflect the actual items, healing any discrepancies without manual cleanup.

This self-healing keeps your boards accurate and reduces sync conflicts, even with multiple concurrent edits.

How External Tools and AI Agents Play Nice with JSON Files

Threlmark’s file structure invites external tools to participate effortlessly. For more insights, visit Elfys World about innovative integrations. You can script a tool to modify items/ files, and it just works. No APIs to learn, no special permissions needed.

For example, an AI agent can analyze your task files, suggest updates, or even move cards to Done—all by reading and writing files directly. This openness accelerates automation and collaboration.

Plus, the system logs all reports and handoffs in dedicated folders, making it easy for AI tools to track progress and provide feedback.

How External Tools and AI Agents Play Nice with JSON Files
How External Tools and AI Agents Play Nice with JSON Files

Tradeoffs: Simplicity vs. Complexity in Sync and Conflict Handling

Using files simplifies many things but shifts complexity elsewhere. Syncing and conflict resolution become the main challenges. Threlmark handles this with versioning, timestamps, and tolerant merging.

For example, instead of locking data, the system relies on atomic file writes and reconciliation. This approach works well for small teams and single-user workflows but needs care as scale grows.

In larger systems, you might need more sophisticated conflict resolution or a hybrid approach. Still, the core idea remains: local-first, disk-as-the-contract simplifies the architecture but demands smart conflict handling.

Real-World Use Cases and Why This Architecture Shines

Think of a solo developer managing multiple projects, or a team working across devices in remote areas. Threlmark’s architecture excels in these scenarios. It’s resilient, portable, and responsive.

For instance, a designer working offline on mood boards can sync updates later, all stored as JSON files. No internet needed. It’s perfect for distributed teams or environments with flaky connections.

In fact, many small teams are adopting local-first designs inspired by Threlmark, especially with tools like [Threlmark](https://threlmark.com) making it easier to implement.

Frequently Asked Questions

What does ‘disk is the contract’ actually mean?

It means that the entire system is built around files stored on disk, where each file is an authoritative piece of data. There’s no central database—files are the system of record, making data portable, transparent, and easy to sync.

Why use JSON files instead of a traditional database?

JSON files are simple, portable, and easy to inspect. They avoid vendor lock-in, simplify backups, and support open collaboration. Plus, with atomic writes, they’re safe from corruption even if your system crashes.

How does syncing work across devices?

Changes are written locally as files, then synced using versioning, timestamps, and conflict resolution. When a device reconnects, it merges updates, ensuring everyone sees the latest, conflict-free data.

Can this system handle large-scale projects or teams?

It’s ideal for small teams or solo workflows. For larger projects, you might need more advanced conflict resolution or hybrid solutions. Still, the core idea of local-first, disk-as-the-contract scales well for many use cases.

What are the biggest risks or downsides?

Sync conflicts and file corruption are potential issues if not handled carefully. Also, managing many files can become complex at scale, and conflict resolution strategies need to be robust for larger teams.

Conclusion

Threlmark’s design shows that the simplest approach—using the disk as the contract—can be powerful. It turns data into a portable, offline-friendly asset that’s easy to inspect, back up, and extend.

Imagine a future where your tools talk directly to your files, and the filesystem becomes your most reliable partner. That’s the promise of disk as the contract. Are you ready to rethink what your data can do?

Real-World Use Cases and Why This Architecture Shines
Real-World Use Cases and Why This Architecture Shines

You May Also Like

How to Make Your Home Deaf-Accessible

Unlock essential tips to transform your home into a deaf-accessible space—discover innovative solutions that ensure safety and effective communication.

From Lab to Smartphone: The Journey of an AI Hearing Test App

Journey from lab innovation to smartphone accessibility transforms hearing health, but the true challenge lies in ensuring accuracy and user trust—discover how they’re overcoming it.

Early Detection: AI Helps Doctors Identify Hearing Loss Sooner

Optimizing early hearing loss detection with AI offers faster, more accurate diagnoses, but how exactly does this technology transform hearing healthcare?

Deaf-Owned Businesses to Support

Lifting up Deaf-owned businesses highlights culture and community—discover inspiring stories and unique creations that you won’t want to miss.