hammer-editor/docs/SYNCING-PROTOCOL.md
Adam Brown b4e4a08702
Story Ideas: account-level idea capture with sync (#720)
Quick-capture story ideas as tagged markdown blobs in a new Project
Selection tab, stored one file per idea in .ideas/ and promotable into
a project. Offline-first; syncs as a phase inside the account sync
session (shape-agnostic server storage, hash-baseline conflicts,
tombstone/outbox deletion, ideasStateHash skip for unchanged sets).
Unifies idea + project tag suggestions behind AccountTagService.
2026-07-05 01:49:04 -07:00

36 KiB

Synchronization Protocol

This doc will try to give a brief (as possible) overview of the client/server synchronization protocol Hammer uses.

Two levels of syncing

Account Sync: This synchronizes what projects the Account has, creating, deleting, or renaming just the top level directories on the client. It also carries the account-level Story Ideas phase (see Story Ideas Sync).

Project Sync: This synchronizes an individual project and all of its Entities


Account Sync Protocol

Before any project level syncing is done, we must first do an Account level sync.

This will handle creating, deleting, and renaming projects, to bring the client and server into parity with each other. Additionally, it will find or create a projectId for the client's local projects. These are the key to being able to sync a local project with the server.

Any given user account may only have one sync in progress at a time. Attempting to start a sync when one is already in progress will result in a failure to begin the sync (400 Bad Request).

Account sessions expire after 2 minutes without activity (sliding, refreshed on each use); an expired session may be reclaimed by anyone. Like Project sync sessions, a live account session may also be reclaimed by the same install that owns it (identified server-side from the bearer token), so a crashed account sync doesn't lock that device out until expiry. A different install must wait for the live session to expire.

All account endpoints use POST. They were historically GET, so the server still routes the GET form for legacy clients, and the client retries a POST that answers 404/405 as a GET for servers that predate the move. Parameters are unchanged either way (query params + headers).

sequenceDiagram
	participant Client as Client
	participant Server as Server

	rect rgb(1, 59, 15)
		Client ->> Server: POST /api/projects/{userId}/begin_sync
		activate Server
		Note right of Client: bearer token
		Server -->> Client: 200 OK (Sync Began)
		deactivate Server
		activate Client
		Note left of Server: syncId<br/>projects<br/>deletedProjects
		alt Sync already in progress
			Server -x Client: 400 Bad Request (sync ends here)
		end
	end
	rect rgb(11, 0, 74)
		loop Rename Projects
			Client ->> Server: POST /api/projects/{userId}/rename
			deactivate Client
			activate Server
			Note right of Client: bearer token <br/> syncId <br/> projectId <br/> projectName
			Server -->> Client: 200 OK (Rename successful)
			deactivate Server
			activate Client
			alt Rename fails
				Server -->> Client: 4XX Bad Request
			end
		end
	end

	rect rgb(74, 0, 9)
		loop Delete Projects
			Client ->> Server: POST /api/projects/{userId}/delete
			deactivate Client
			activate Server
			Note right of Client: bearer token <br/> syncId <br/> projectId
			Server -->> Client: 200 OK (Delete successful)
			deactivate Server
			activate Client
			alt Delete fails
				Server -->> Client: 4XX Bad Request
			end
		end
	end

	rect rgb(49, 0, 74)
		loop Create Projects
			Client ->> Server: POST /api/projects/{userId}/create
			deactivate Client
			activate Server
			Note right of Client: bearer token <br/> syncId <br/> projectName (query param)
			Server -->> Client: 200 OK (projectId, alreadyExisted)
			deactivate Server
			activate Client
			alt Creation fails
				Server -->> Client: 4XX Bad Request
			end
		end
	end

	rect rgb(40, 30, 0)
		Note over Client,Server: Story Ideas phase (same session — see Story Ideas Sync below)
	end

	rect rgb(0, 15, 6)
		Client ->> Server: POST /api/projects/{userId}/end_sync
		deactivate Client
		activate Server
		Note right of Client: bearer token <br/> syncId
		Server -x Client: 200 OK (Sync completed)
		deactivate Server
	end

The begin_sync response also carries ideasStateHash — an account-wide hash of the server's live idea set — which lets the client skip the Story Ideas phase entirely when nothing changed (see below).


Story Ideas Sync (account-level)

Story ideas are account-level content: markdown blobs with tags that live at the projects root (.ideas/idea-<uuid>.md), outside any project. They sync as an extra phase inside the account sync session — same syncId, same sliding expiry, no third session type. The full feature design lives in STORY-IDEAS.md; this section covers the protocol.

Ideas are keyed by client-generated UUIDs, so they don't participate in the Entity Update Sequence and need none of the re-ID machinery — two devices can create ideas offline with zero coordination.

Endpoints

All under /api/ideas/{userId}/…, all requiring the account session's syncId header:

Endpoint Verb Purpose
/state POST IdeasSyncStateResponse { ideas: [{id, hash}], deletedIdeas: [id] }
/idea/{ideaId} GET Download one idea (SavedIdeaDto { idea, hash })
/idea/{ideaId} POST Upload (IdeaUploadRequest { idea, hash, originalHash? })
/idea/{ideaId}/delete POST Delete + write the permanent tombstone

Upload responses: 200 with the saved copy; 409 + IdeaConflictDto { server, serverHash } on a baseline mismatch; 410 Gone if the idea is tombstoned (deletion wins — the client deletes its local copy); 413 over the server's 64 KiB blob cap.

The phase

  1. Fetch /state: the server's live {id, hash} set plus deletion tombstones.
  2. Tombstones win: prune local copies of tombstoned ideas and drop their bookkeeping.
  3. Push the client's pending-delete outbox; each entry is erased on server ack.
  4. Reconcile each local idea against the server set:
    • hashes agree → lock the baseline;
    • server-unknown or locally dirty (hash ≠ baseline) → upload with originalHash = baseline;
    • local clean but server changed → download the server copy.
  5. Download server ideas the client doesn't hold (excluding ones still awaiting our delete).

Hashing and conflict detection

Per-idea hashing (IdeaHasher, in base so both sides run byte-identical code) covers every StoryIdea field, following the same evolution rules as ProjectDataHasher: presence bytes for nullable fields, zero bytes for the empty tag set, guarded by golden-pin sensitivity tests.

Conflicts mirror project-data sync: the client persists a per-idea baseline (the hash last agreed with the server) in .ideas/sync.json and replays it as originalHash on upload. A 409 returns the server copy; the user resolves (either side, or a manual merge in the editable local pane) and the resolution is re-uploaded with originalHash = serverHash from the conflict. An unresolved conflict simply leaves the idea dirty for next session.

Deletion propagation

Only the server keeps tombstones (deleted_idea rows, permanent). The client keeps a transient pendingDeletes outbox in .ideas/sync.json, written at delete time and erased on ack — required because "the server has an idea the client doesn't" is otherwise ambiguous between created elsewhere and deleted here. Deletes are only recorded once the install has synced ideas before (the sidecar's existence is the marker); a never-synced install just deletes the file. Losing the sidecar degrades to baseline-less uploads and resurrected not-yet-pushed deletions — annoying but never content loss.

Skipping the phase (ideas state hash)

The begin_sync response carries ideasStateHash: an IdeasStateHasher hash over the server's live {uuid, hash} pairs (sorted, size-prefixed; tombstones excluded). The client skips the whole phase when both hold:

  1. no pending local work — empty outbox, and every local idea hashes exactly to its locked baseline (which also rules out local-only or missing ideas), and
  2. the hash of those baselines equals the server's ideasStateHash.

Tombstones can be excluded safely: a tombstone only matters to a client still holding the idea, and that client's baseline set necessarily disagrees with the server's live set, forcing the phase to run. The field is optional — a server that predates ideas omits it and the client runs the phase unconditionally; any doubt on the client (corrupt sidecar, dirty ideas) also falls back to running it. Same asymmetric-risk argument as the project probe: a false mismatch costs a redundant phase, and a "false match" cannot exist while rule 1 holds, because a client never skips with unsynced local changes.

Server storage

Same shape-agnostic scheme as entities and project data: the serialized StoryIdea JSON is the wire format, stored verbatim (encrypted at rest with the entity content-encryption path, covered by key-rotation convergence and the key-prune in-use scan) alongside the client-supplied hash. The server decodes only to validate shape, so adding a field to StoryIdea is a client-only change.


Pre-Sync Change Probe

Between Account Sync and Project Sync sits an optional optimization. Account Sync brings the set of projects into parity; the probe then asks, in a single batched request, which of those projects actually have content changes — so the client can skip the per-project sync for every project that has none.

This matters because a full project sync costs ~4 round-trips (begin_sync, project_data, writing_activity, end_sync) even when nothing has changed, paid once per project on every app open. The probe collapses that to one request for the whole account.

The probe keeps no required state of its own: a client or server that ignores it loses nothing but speed.

The Project-Wide Hash

Each project gets a single project-wide content hash computed over the two data sources whose divergence is unacceptable:

  • all of the project's entities (the same per-entity hashes already produced for ClientEntityState), and
  • the project-data blob (author, theme, word-count goal — hashed via ProjectDataHasher).

The aggregate is order-independent of enumeration: sort the entity {id, hash} pairs by id, fold id:hash pairs plus the project-data hash through the same MurmurHash3 used elsewhere. The function lives in the base module (alongside EntityHasher / ProjectDataHasher) so the client and server run byte-identical code.

Writing activity is deliberately excluded. It is per-device, conflict-free, and the project's authoritative record is the union of every device's slot — so no single device ever holds the full set, and a symmetric content hash that included it would never match across devices. It is also explicitly auxiliary (its sync phase already swallows errors and retries next time), so a skipped opportunistic activity sync is consistent with the existing tolerance. The trade-off: a change that touches only another device's writing activity will not be detected by the probe, and is picked up on the next sync that runs for any other reason.

Symmetric Comparison

The probe compares the client's current hash against the server's current hash — not "did the server change since I last synced." A local edit makes the client's hash differ; another device's push makes the server's hash differ; only when both currently agree is the project skipped. One comparison covers both directions, and the server recomputes its hash on demand from its stored state — no per-client bookkeeping, in keeping with the protocol's "no required book keeping data" principle.

Network Protocol

sequenceDiagram
    participant Client
    participant Server

    Note over Client,Server: After Account Sync, before any Project Sync

    Client->>Server: POST /api/projects/{userId}/sync_probe
    activate Server
    Note right of Client: ProjectsSyncProbeRequest<br/>[ { projectId, hash } ]
    Note over Server: For each project, recompute the<br/>project-wide hash and compare
    Server -->> Client: 200 OK
    deactivate Server
    activate Client
    Note left of Server: ProjectsSyncProbeResponse<br/>{ unchangedProjects }

    Note right of Client: Skip unchangedProjects;<br/>sync everything else as normal.
    deactivate Client
  • POST /api/projects/{userId}/sync_probe — read-only, no syncId required.
  • Request ProjectsSyncProbeRequest { projects: List<ProjectHashItem> }, where ProjectHashItem { projectId, hash }.
  • Response ProjectsSyncProbeResponse { unchangedProjects: Set<ProjectId> }.

The server returns a project in unchangedProjects only when it is certain it is in sync — the project exists and its freshly recomputed hash matches. It omits anything it cannot certify, including any project with an in-flight sync session (whose stored hashes may be mid-update). A project the client never sends, or the server never returns, is simply synced the normal way.

If the endpoint is unsupported (older server) or the request fails for any reason, the client silently falls back to a full per-project sync — no behavior change.

Correctness

The risk is asymmetric:

  • A false mismatch — the hashes differ but nothing needed syncing — is harmless: just a redundant full sync.
  • A false match — skipping a project that was actually divergent — loses no data: skipping is a no-op on both sides, and the next sync still reconciles through the normal dirty/conflict machinery. The only cost is that the two stay divergent longer than they should.

So the one rule the client must uphold is: never skip a project that has un-synced local changes. As long as a local change is recorded before a project could be reported unchanged, the probe can only ever defer a sync, never hide one — it adds no divergence risk beyond what the existing change tracking already guards.

How the client decides a project is eligible — and how it caches its own project-wide hash to avoid re-hashing every entity on each open — is a client implementation detail, not part of the wire protocol.


Project Sync Protocol

Goal

The goal of this protocol is to synchronize the various Entities on the client to the server.

There is no file history as in a true version control system such as git. This is instead a simpler synchronization system, yet still smart enough to detect conflicts, and prevent edits on multiple devices from overwriting each other on accident.

As such, there is very little book keeping data, and none of it is actually required. When all actors are fully synchronized, they all contain the full set of data. Thus if the server were to die and lose all of its data, it wouldn't matter. Every client would contain everything necessary to setup on a new server.

Further more, the protocol is fully fault tolerant. It may fail at any step along the way, and the state of the client and server will remain entirely valid, although not entirely synchronized.

Network Protocol (overview)

This is largely a client driven synchronization process.

SyncIDs

The client calls begin_sync to get a valid syncID. This syncID is provided to all subsequent calls, and is terminated with a call to end_sync.

There can be only one valid syncID per project at any given time. This prevents race conditions with two clients syncing the same project at the same time.

Reclaiming a session (same install only)

A stale session would otherwise lock a user out of their own project until it expires — for example when a prior sync's end_sync never reached the server (the client was cancelled mid-sync, lost auth, or dropped its connection). To avoid this, begin_sync may reclaim an existing project session, but only when the request comes from the same install that owns it.

The install is identified server-side from the authenticated bearer token (never a client-supplied value), so it cannot be spoofed. The rules are:

  • Same install as the active session → the old session is terminated and a fresh syncID is issued. The previous syncID immediately becomes invalid.
  • Different install, session still active → 400 Bad Request; the original session keeps its claim, preserving the cross-device race protection above.
  • Expired session (any install) → treated as gone and reclaimable by anyone. Sessions expire after 2 minutes without activity (sliding — refreshed each time the syncID is used).

The client also fires end_sync even when its sync is cancelled, so sessions are normally released cleanly; reclaim is the safety net for the cases where that request can't be delivered.

You may however have syncIDs for multiple different projects simultaneously.

These are Project level syncIDs. Account syncing use separate Account level syncIDs. There may only be one valid Account level syncID at a time, and if there is a valid Account syncID, then no Project level syncIDs are allowed to be created. The Account level sync must finish before any Project level syncs may begin.

Entity Update Sequence

The server will inspect the provided ClientState, and then return a sequence of Entity IDs: every server Entity the client is missing or holds a different version of (compared by hash). The client synchronizes those IDs in that order, then appends any local Entities the server doesn't know about yet (IDs above the server's lastId).

Remote Entity Deletion

The last step before individual Entity synchronization can begin is having the Client notify the server of any locally deleted Entities.

sequenceDiagram
    participant Client
    participant Server

    Client->>Server: POST /api/project/$userId/$projectId/begin_sync
	activate Server
	Note right of Client: body: ClientEntityState (gzip)<br/>per-entity { id, hash }

	Server -->> Client: 200 OK (Sync Began)
	deactivate Server
	activate Client
	Note left of Server: ProjectSynchronizationBegan

    rect rgb(74, 0, 9)
        loop Delete Entities
            Client->>Server: GET /api/project/$userId/$projectId/delete_entity/$id
            deactivate Client
            activate Server
            
            Server -->> Client: 200 OK
            deactivate Server
            activate Client
            Note left of Server: DeleteIdsResponse
        end
    end

    rect rgb(11, 0, 74)
        loop Transfer Entities
        Note right of Client: See breakout section for details
			Client ->> Server: [various]
			Server ->> Client: [various]
        end
    end

    Client->>Server: POST /api/project/$userId/$projectId/end_sync
	deactivate Client
	activate Server
	Note right of Client: X-Sync-Id header<br/>lastSync, lastId (form params)
	Server -->> Client: 200 OK (Sync Terminated)
	deactivate Server
	activate Client

Network Protocol (Entity Transfer)

The Client now attempts to sync each ID provided in the server in the Entity Update Sequence in the order provided.

It will now either upload or download each ID depending on what it infers from the combined Client and Server state that has been transferred so far.

Download

The client has determined that it needs to download the Server's copy of an Entity. This is either because the client is simply missing the Entity, or it has determined that the server has a newer version and it wants to overwrite the local client copy with the server copy.

If the client has a local copy, it sends that copy's hash in the X-Entity-Hash header. When it matches the server's copy, the server answers 304 Not Modified and the client records the Entity as synchronized without transferring the body.

If the server answers 404 Not Found (an ID in the sequence with no server entity — only possible through server-side data loss or an allocation gap), the client self-heals by whichever side still holds the truth: if it has no local copy either, it records the ID as deleted so it stops appearing in future syncs; if it does hold a copy, it re-uploads it with no conflict baseline to restore the server's. Known deletions are skipped before this point, so the restore can never resurrect an intentionally deleted Entity.

sequenceDiagram
    participant Client
    participant Server

    Client->>Server: GET /api/project/$userId/$projectId/download_entity/$entityId
	activate Server
	Note right of Client: X-Entity-Hash = {local hash, if any}

	Server -->> Client: 200 OK (entity body + X-Entity-Type header)
	deactivate Server
	activate Client
	Note left of Server: LoadEntityResponse

	alt Local hash matches server copy
		Server -->> Client: 304 Not Modified (no-op, already in sync)
	end

Stale Hash Read-Repair (server-side)

The server stores a per-entity hash alongside the entity content. That hash is derived metadata — the content is the truth. If the hash algorithm or serialized shape changes between when a row was written and when it's next read (schema evolution, adding fields to entities), the stored hash goes stale.

The server repairs this itself, lazily, on download: when loading an entity it compares the stored hash against a hash freshly computed from the content, and on mismatch it rewrites the stored hash and serves the download normally. The client never sees the repair. Because a stale hash also makes the entity look changed to the Entity Update Sequence check, every stale entity is guaranteed to be offered for download, so lazy repair converges without any O(n) sweep.

Legacy: 412 Stale Hash Self-Healing

Older servers (pre read-repair) instead respond to a stale hash with 412 Precondition Failed and a StaleHashResponse ({entityId, message, cachedHash, computedHash}), expecting the client to heal the server by force-uploading its local copy (no X-Original-Hash — force skips the conflict check). The client retains this handler for compatibility with old servers. If the client has no local copy of the entity to upload (e.g. a fresh install), the heal is impossible and the entity is reported as failed for that sync — against such servers the entity remains undownloadable until a client that still has a copy syncs.

Post-Download Enrichment Heal (client-initiated)

The read-repair above is driven by the server noticing its own hash is stale. A second, complementary heal is driven entirely by the client, at the download chokepoint.

If a downloaded entity hashes differently once it's been stored, because storing it backfilled or normalized a field the server left null or absent, the local copy no longer matches the server's. Left alone, the server keeps offering that entity for download on every sync, so it re-downloads forever.

To break the loop, right after recording a successful download the client re-hashes its stored copy against the server's hash. If they differ, it uploads the enriched copy back, using the server's just-recorded hash as the conflict baseline (original hash). Because the sync session holds the project lock, the server's copy cannot change between the download and this upload, and the baseline is exactly what the server holds — so the heal always applies cleanly, with no conflict and no force.

sequenceDiagram
	participant Client
	participant Server
	Client ->> Server: GET /api/project/$userId/$projectId/download_entity/$entityId
	activate Server
	Server -->> Client: 200 OK (server copy)
	deactivate Server
	activate Client
	Note right of Client: Store copy, backfilling lossy fields.<br/>Record server hash as baseline.<br/>Re-hash stored copy.

	alt Stored copy hash != server hash (enriched)
		Client ->> Server: POST /upload_entity/$entityId
		Note right of Client: X-Original-Hash = server hash (baseline)
		activate Server
		Server -->> Client: 200 OK (server converged)
		deactivate Server
	end
	deactivate Client

Upload

The client has determined that it needs to upload the local Client copy of an Entity. This is either because the server is missing the entity, or the client has a dirty copy that needs to be synchronized.

No conflict

In the nominal case, the server will accept the incoming entity, and simply overwrite the Server's own copy with it. The server knows this is safe to do so because it compares the Server copy's hash, with the provided original hash. If they match, the Server knows that the Client was editing the same copy which the server will now replace.

sequenceDiagram
    participant Client
    participant Server

    Client->>Server: POST /api/project/$userId/$projectId/upload_entity/$entityId
	activate Server
	Note right of Client: X-Original-Hash = {original hash} <br /> X-Entity-Type <br /> ApiProjectEntity

	Server -->> Client: 200 OK
	deactivate Server
	activate Client
	Note left of Server: SaveEntityResponse

Conflict detected

In the case where the Server and Client's original hash do not match, there is a conflict.

The server infers from this that the client was editing a different version of the Entity than what the server now has. This is probably because a different client uploaded an independent edit of the Entity.

The server will respond with its copy of the Entity and require the Client to resolve the conflict by resubmitting the upload with force=true set.

sequenceDiagram
    participant Client
    participant Server

    Client->>Server: POST /api/project/$userId/$projectId/upload_entity/$entityId
	activate Server
	Note right of Client: X-Original-Hash = {original hash} <br /> ApiProjectEntity

	Server -->> Client: 409 Conflict
	deactivate Server
	activate Client
	Note left of Server: ApiProjectEntity

	Note right of Client: {client now helps the user resolve the conflict}
	Client->>Server: POST /api/project/$userId/$projectId/upload_entity/$entityId?force=true
	deactivate Client
	activate Server
	Note right of Client: no X-Original-Hash (force skips the conflict check) <br /> ApiProjectEntity {resolved entity}

	Server -->> Client: 200 OK
	deactivate Server
	activate Client
	Note left of Server: SaveEntityResponse

Note that the resolved ApiProjectEntity in the force request does not have to be exclusively the Client's or Server's copy, it can be a merging between the two that the client helped the user create.

Uploads carry an X-Entity-Type header (the server rejects an upload without one, and answers 409 on a type mismatch — a distinct conflict from the hash conflict above). An upload may also fail with 413 Payload Too Large, or 417 Expectation Failed for a non-conflict save failure.

Project Data Sync (non-entity blob)

In addition to entity sync, each project has a single per-project blob holding user-authored settings (author name, theme colors, word-count goal). This blob is synced as its own phase, inserted into the pipeline before the entity phases (entity deletion, then entity transfer) so the project's identity is settled before any entity churn.

The blob is a structured object — see ProjectData in the base module — but is treated as a single unit at the sync layer. Conflict detection is hash-based, mirroring entity sync: the client persists the lastSyncedHash it most recently agreed on with the server and replays it on the next upload.

sequenceDiagram
    participant Client
    participant Server

    Client->>Server: GET /api/project/$userId/$projectId/project_data
    activate Server
    Server -->> Client: 200 ProjectDataDto OR 204 No Content
    deactivate Server

    alt Local clean since last sync, server changed
        Note right of Client: Fast-forward — adopt server state, save lastSyncedHash
    else Both sides changed
        Client->>Server: POST /project_data
        Note right of Client: { data, originalHash = lastSyncedHash }
        activate Server
        alt Hashes match
            Server -->> Client: 200 ProjectDataDto
        else Conflict
            Server -->> Client: 409 ProjectDataConflictDto
            Note right of Client: User resolves per-field
            Client->>Server: POST /project_data
            Note right of Client: { data = resolved, originalHash = serverHash }
            Server -->> Client: 200 ProjectDataDto
        end
        deactivate Server
    end

Two further branches aren't diagrammed: if the server has no blob yet (204) and the local data is non-default, the client uploads with a null originalHash (the server accepts a baseline-less upload unchecked); and if the hashes already match, the phase is a no-op (re-recording lastSyncedHash if it was stale).

Unlike writing-activity sync (which swallows errors and continues), a non-conflict failure on the project-data phase fails the whole sync — the data is user-authored and silent loss is unacceptable.

Note: unlike the entity endpoints, the project_data and writing_activity endpoints are not gated on a syncID — they simply run inside the sync session window.

Server storage is shape-agnostic

Server storage never depends on client data shape: synced content — entities, project data, and story ideas alike — is stored as an opaque blob with a client-supplied hash. The server never decodes the blob into the typed model except to validate that it decodes at all (ignoreUnknownKeys, so fields it doesn't know still pass); on upload it stores the received JSON verbatim (hash field in the upload request), and on download/conflict it passes the stored bytes back untouched ( RawProjectData* DTOs server-side, JsonElement data slots). A stored row that no longer decodes is treated as missing, so the next client upload heals it.

This makes adding a field to a synced model a client-only change:

  1. Add the field to the model (in base) with a serialization default, so old data deserializes.
  2. Fold the field into its hasher such that the empty/absent value contributes zero bytes — existing hashes (stored lastSyncedHash baselines, server rows) must stay byte-identical. Hash collections in sorted order with a size prefix (see tags in ProjectDataHasher).
  3. Update the hash-sensitivity guard (EntityHashSensitivityTest fails automatically until the new field provably affects the hash).

The server needs no update, and no protocol bump is required. The one legacy exception: clients that predate the hash upload field don't send a content hash, so the server falls back to a typed decode + server-side hash for those uploads only.

Mixed app versions within one protocol version. A not-yet-updated client's typed decode strips fields it doesn't know, so its stored copy of downloaded project data hashes differently from the server row. To keep that from destroying data, the fast-forward path records lastSyncedHash as the hash of what it actually stored, not the server row's hash — a passive out-of-date device then just keeps fast-forwarding harmlessly instead of "detecting" a phantom local edit and re-uploading the stripped copy (which would delete the newer field server-side). The remaining caveat: if the out-of-date device genuinely edits project data during the mixed-version window, its upload surfaces as a 409 conflict (its baseline no longer matches the server row), and resolving that conflict uploads its stripped view — the newer field's value is lost (reset to its default) and propagates that way to the newer device. Accepted as the cost of not forcing lockstep upgrades for additive changes; genuinely destructive shape changes (removing or re-typing a field) still warrant a HAMMER_PROTOCOL_VERSION bump.

Writing Activity Sync (per-device slots)

After entity transfer, the client syncs writing activity — an auxiliary record of writing sessions used for stats and observability (words written, session start/end, sealed flag). Each device tracks its own sessions locally; the project's full activity is the union of every device's log, keyed by deviceId.

The model is intentionally conflict-free by construction: only the owning device ever writes its own slot. When the client pulls the server's view, it wholesale-overwrites its local copies of foreign device slots, and merges only its own slot before pushing it back. There is no hash-based conflict detection like entity sync or project_data — each device is the sole writer of its slot, so there is nothing to conflict on across devices.

For the device's own slot, mergeOwnSlotSessions (see SessionMerge.kt) unions sessions by startedAt. On collision it keeps the higher wordsWritten, the later endedAt, and sealed = local || remote (sealing is one-way).

sequenceDiagram
    participant Client
    participant Server

    Client->>Server: GET /api/project/$userId/$projectId/writing_activity
    activate Server
    Server -->> Client: 200 WritingActivityResponse
    deactivate Server
    Note left of Server: { deviceId → DeviceLog }

    Note right of Client: Overwrite local copies of<br/>foreign device slots.<br/>Merge own slot with server's copy.

    Client->>Server: POST /api/project/$userId/$projectId/writing_activity/$deviceId
    activate Server
    Note right of Client: DeviceLog (own slot, merged)
    Server -->> Client: 200 OK
    deactivate Server

Endpoints (the project is identified by projectId in the path):

  • GET /api/project/{userId}/{projectId}/writing_activityWritingActivityResponse (Map<deviceId, DeviceLog>)
  • POST /api/project/{userId}/{projectId}/writing_activity/{deviceId} body: DeviceLog

Data shapes (WritingSession, DeviceLog, WritingActivityResponse) live in WritingSession.kt.

Both GET and POST failures are logged and swallowed: the writing-activity phase never fails the surrounding project sync. Activity data is auxiliary observability — a transient network or server error must not block the user's actual content from syncing. Local state is left untouched on a failed GET, so the next sync simply tries again.

Client Operations Sequence

Beyond the network side of the Protocol, the Client is doing a bit of work to ensure data loss is not possible, and to work out what should be done with the minimal book keeping data it has.

flowchart TD
    A[PrepareForSync] --> EP[EnsureProjectId]
    EP --> B[FetchLocalData]
    B --> C[FetchServerData]
    C --> D[CollateIds]
    D --> E[Backup]
    E --> F[IdConflictResolution]
    F --> P[ProjectDataSync]
    P --> G[EntityDelete]
    G --> H[EntityTransfer]
    H --> W[WritingActivitySync]
    W --> I[FinalizeSync]

Terminology

Entity any individual block of data. Each entity is given a unique ID. Examples include:

  • Scene
  • Scene Draft
  • Timeline Event
  • Encyclopedia Entry
  • Note

Entity ID Every Entity is given an Entity ID, which is a unique, monotonically incrementing integer, with the first valid ID being 1

Sync ID This is a UUID generated by the server and passed back to the client identifying a particular syncing session to a particular client. The server allows one Account-level session per account, and one Project-level session per project, at a time to prevent race conditions.

Entity Update Sequence A list of Entity IDs in a particular order determined by the server. The client will update these IDs in the provided order. The server will leave out IDs of Entities that do not need synchronization.

Re-ID The process of taking a client side Entity and issuing it a new ID, changing any references to that ID in the process.

Conflicts The same file that has been edited in different ways on different devices, must allow the user to resolve the conflict in order to bring them back into sync with each other.

Dirty Entity When a client edits a local Entity, it adds the Entity ID to a "dirty list" together with that Entity's conflict baseline — the hash the server last confirmed for it. At sync time the client sends this baseline as the upload's original hash; if another client edited the same Entity and synced first, the server's hash no longer matches the baseline and the conflict is detected.

The baseline is the hash recorded the last time the client and server agreed on the Entity (on a successful upload or download), not a hash re-derived from the current local content at edit time. Re-deriving it is unsafe: an Entity's hash includes fields such as lastEdited that the autosave can stamp independently of a real content change, so a freshly computed baseline can disagree with the server even when nothing meaningful changed — forging a phantom conflict. This is the same locked-baseline scheme project_data uses with its lastSyncedHash.

A baseline exists for every Entity the client and server have agreed on, set on each successful transfer. If a baseline is absent the server cannot conflict-check and accepts the upload, so a project whose sync data predates this scheme backfills a baseline for every in-sync Entity on its first sync (the local hash, which equals the server's for an agreed Entity) before any upload relies on it.