PACK-002: JS pack writer emits OFS_DELTA (offset-only) — jab post feeds raw today

The be/ JS pack writer feeds every object RAW: fold-commit.js::writePack calls pk.feed(type, body, -1, null) (base -1 = no delta), and ingest lands packs verbatim. The native keeper is OFS-ALWAYS — it deltifies against an earlier object in the SAME pack (PackLog). So JS-authored packs are bigger than native's and diverge from the on-disk format. Implement OFS_DELTA emit in the JS writer. Offset-only either way: NEVER a REF_DELTA — a base outside the current pack stays RAW (reclaimed at GIT-006 recompaction). Follow-up to PACK-001. Method Issues.

Input

Context

Goals

Constraints

WIP

Design decisions

TODOs

Blockers and bummers

Outcome