TL;DR

Threlmark’s core idea is that the on-disk JSON files are the source of truth, enabling offline use, easy debugging, and seamless interoperability, all without a traditional database. This approach simplifies data management and enhances robustness in local-first apps.

Imagine working on your project, unplugged, yet everything still flows smoothly. No server hiccups, no waiting for cloud sync. That’s what Threlmark’s local-first architecture promises. The secret? The disk is the contract—your entire app’s state lives in simple, human-readable JSON files. This design flips traditional databases on their head, making data accessible, portable, and resilient.

In this deep dive, you’ll see how a file-based, decentralized approach empowers your workflow, simplifies multi-device sync, and even allows AI agents to work autonomously. It’s a different way of thinking about app architecture—more straightforward, more reliable, and built for the offline age.

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

offline JSON file editor

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
Offline-First Apps: Mastering Progressive Web Apps (PWA): Build fast, reliable web applications that work anytime, anywhere (even without internet)

Offline-First Apps: Mastering Progressive Web Apps (PWA): Build fast, reliable web applications that work anytime, anywhere (even without internet)

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
Free Fling File Transfer Software for Windows [PC Download]

Free Fling File Transfer Software for Windows [PC Download]

Intuitive interface of a conventional FTP client

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
KALIM Needle File Set (10Pcs High Carbon Steel Files) and 1 Wire Cutter in A Carry Bag, File Tools for Soft Metal, Wood, Jewelry, Model, DIY, Hobby, etc.

KALIM Needle File Set (10Pcs High Carbon Steel Files) and 1 Wire Cutter in A Carry Bag, File Tools for Soft Metal, Wood, Jewelry, Model, DIY, Hobby, etc.

【GREAT SMALL SIZE】 10 pcs 6'' high carbon needle files, 1pcs 5'' wire cutter, 1pcs 8'' carrying storage…

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

  • Making disk the contract simplifies data management, making everything inspectable, portable, and reliable.
  • JSON files enable offline-first workflows, allowing seamless work without internet and easy debugging.
  • One file per item reduces race conditions and makes concurrency safer, especially for multi-device setups.
  • Sync is about reconciling changes through conflict resolution strategies—eventual consistency works well.
  • Schema evolution is manageable because unknown keys are preserved, ensuring long-term flexibility.

Why Making Disk the Contract Changes Everything

When the disk becomes the system’s contract, every file is an authoritative record. That means your app reads and writes directly to files—no hidden database layers or complex APIs. Threlmark’s design treats the file system itself as the database, which is surprisingly simple and powerful.

Picture this: Your project’s roadmap is a folder full of JSON files. Each task, each card, is a small file you can open, edit, or review with a simple text editor. No need to connect to a server or run a fancy database. This approach makes data transparent and easily portable—just copy the folder, and you’ve backed up your entire project.

Why Making Disk the Contract Changes Everything
Why Making Disk the Contract Changes Everything

How JSON Files Power Offline-First, No Cloud Needed

Threlmark uses plain JSON files stored locally. This makes the system inherently offline-capable. You can add, change, or review tasks anytime—no internet required. When you reconnect, the app can sync changes with other devices or tools.

For example, if your laptop crashes, your project isn’t lost—just restore the folder. If you’re on a plane, your work continues. Once back online, syncs reconcile changes across devices smoothly, because each device works with the same files.

According to the local-first movement, this pattern reduces errors, speeds up workflows, and keeps you in control of your data.

The File Layout That Keeps Everything Clear and Safe

Threlmark’s folder structure is a blueprint for clarity. At the root, you find a manifest (`threlmark.json`) and dependency graph (`links.json`). Each project has its folder, with files for metadata (`project.json`), order (`board.json`), and individual cards (`items/.json`).

When you update a card, the system writes directly to its own file—atomically—avoiding corruption. If you move a card, just edit the pointer. This modular setup makes debugging, backup, and migration straightforward.

It’s like having a well-organized filing cabinet—every piece is accessible, and nothing gets lost or overwritten.

The File Layout That Keeps Everything Clear and Safe
The File Layout That Keeps Everything Clear and Safe

Why One File per Item Beats Bulk Lists

Instead of a giant JSON array for the whole roadmap, Threlmark stores each task in its own file. This means updates are atomic—no race conditions or clobbered data. External tools can modify individual cards without touching everything else.

For example, a task might be a short JSON like `{ “id”: “task1”, “title”: “Write report”, “status”: “in progress” }`. Updating this file is quick, safe, and easy to review. Meanwhile, the `board.json` file simply lists IDs in order, and is self-healing — reconciling itself whenever read.

Sync, Conflict, and Collaboration — How It All Works

In Threlmark, syncing is about reconciling JSON files across devices. Changes are committed locally, then pushed to other devices via file sync tools or manual copying. Conflicts happen if two devices edit the same file; your app can detect and resolve these by timestamp or manual review.

This model favors eventual consistency. Imagine editing on your laptop, then later on your tablet—the app detects changes, merges where possible, and flags conflicts in local-first architectures. This way, your data remains reliable, even in chaotic multi-device setups.

Research shows that conflict resolution strategies—like last-write-wins or manual merge—are essential for smooth collaboration in local-first apps [4].

Sync, Conflict, and Collaboration — How It All Works
Sync, Conflict, and Collaboration — How It All Works

Tradeoffs of Going File-First Instead of Database

Choosing plain files over a database simplifies many things—no server, no schema migrations, and transparent data. But it also shifts complexity into sync and conflict handling. For large projects, managing thousands of files can slow down access and complicate searches.

For example, a project with hundreds of cards might need indexing or caching. Yet, for small to medium projects, the simplicity wins. Plus, the human-readable JSON makes debugging a breeze.

It’s a tradeoff: simpler in some ways, more hands-on in others. But for offline, multi-device workflows, the benefits often outweigh the downsides.

Handling Schema Changes and Data Evolution

When your data schema evolves, older files may not match new expectations. Threlmark’s approach preserves unknown keys, so old files remain readable and updatable. You can add new fields without breaking existing tools.

For instance, if you add a new `priority` field to tasks, old files just ignore it until they’re updated. This forward compatibility is a big plus for long-term projects.

Regular migrations or scripts can update old files en masse, ensuring your data stays current without losing history.

Handling Schema Changes and Data Evolution
Handling Schema Changes and Data Evolution

Debugging, Backup, and Data Portability Made Easy

Because everything is plain JSON files, debugging becomes as simple as opening a file. You can `cat` it, run `diff`, or review change history with your favorite tools. Backups are just copying folders—no special tools needed.

Want to migrate? Just copy the entire directory. Need to inspect a specific task? Open its file. This transparency makes data management accessible to everyone.

Performance and Scalability — When File-First Can Slow Down

Handling hundreds or thousands of files can slow down the system if not managed properly. Indexing and caching help, but beyond a certain scale, a pure file-based approach may need optimization.

For example, large projects with thousands of tasks might benefit from additional indexing layers or hybrid solutions. But for most personal or small-team projects, the simplicity remains a major advantage.

Performance and Scalability — When File-First Can Slow Down
Performance and Scalability — When File-First Can Slow Down

When to Use Threlmark’s Approach

If your project needs offline access, easy debugging, and multi-device sync—without complex infrastructure—Threlmark’s file-based design is a perfect fit. It’s especially good for solo developers, small teams, or knowledge workers who value transparency and control.

For collaboration-heavy apps with real-time edits or hundreds of users, a traditional database might still be better. But for personal productivity, prototyping, or niche apps, this approach shines.

Frequently Asked Questions

What does “disk is the contract” actually mean?

It means that the files stored on disk are the definitive source of truth for the app’s data. All components read from and write to these files directly, making data transparent and consistent.

Why choose JSON files instead of a database?

JSON files are human-readable, easy to inspect, and portable. They simplify debugging, backup, and migration, especially in offline or low-complexity scenarios.

How does the app work offline?

Because all data lives in local JSON files, you can read, modify, and save your project without an internet connection. Sync happens later to reconcile changes across devices.

How are conflicts handled when multiple devices edit the same data?

Conflicts are detected based on timestamps or change detection. The system can automatically merge changes or prompt manual resolution, ensuring data integrity.

What are the downsides of a file-based architecture?

Handling many files can slow down performance at scale, and managing large projects may require additional indexing. But for small and medium projects, simplicity often outweighs these concerns.

Conclusion

Threlmark’s disk-as-contract architecture proves that simple, file-based storage can handle complex, multi-device workflows with ease. It’s a reminder that sometimes, going back to basics—plain files and thoughtful structure—creates the most robust and transparent systems.

Next time you build or choose a tool, ask: can I make disk the contract? The answer might just transform your app’s reliability, debugging, and offline capabilities.

You May Also Like

The Skills Marketplace, Six Months Later: Predicted vs Actual

Six months into the skills marketplace’s emergence, this report compares initial predictions with actual developments, highlighting growth, fragmentation, and monetization challenges.

Photo Deduping: Clean Up Safely in Minutes

Transform your photo library in minutes with safe deduplication tips that ensure your memories stay intact—discover how inside.

Airdrop Vs Nearby Share Vs Quick Share: What Works Best

Meta description: “Much depends on your device ecosystem—discover which file sharing method, AirDrop, Nearby Share, or Quick Share, truly works best for you.

Make Shortcuts: Automate Boring Phone Tasks in Minutes

Create custom shortcuts to automate tedious phone tasks in minutes and unlock new ways to save time and enhance your daily routine.