lanekeeper 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -24
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -49,30 +49,6 @@ GitHub already ships a merge queue. Two things it costs you that this doesn't:
49
49
  Same idea — serialize landings, test before merge, keep history clean — run
50
50
  locally instead of in someone else's billed cloud. 💸
51
51
 
52
- ## 🧭 Prior art (so you don't have to wonder)
53
-
54
- Nothing here was invented in isolation — worth naming what already existed
55
- before you find it yourself:
56
-
57
- - **[block/agent-task-queue](https://github.com/block/agent-task-queue)**
58
- already solves "concurrent agents thrash your machine running simultaneous
59
- builds," standalone, with no git or worktree awareness at all.
60
- `build-lock` here does the same narrow job, just wired into `land` and
61
- lanes instead of running on its own.
62
- - **[Overstory](https://github.com/jayminwest/overstory)** (now archived)
63
- built a FIFO merge queue plus a liveness-based watchdog for a fleet of
64
- coding agents — the closest prior match to the landing queue and `prune`
65
- here. It's a bigger, multi-runtime orchestration framework with its own
66
- agent/worktree layer, not something that plugs into Claude Code's *native*
67
- `--worktree`/hook system the way this does; its stated successor moved to
68
- a hosted, cloud control-plane model.
69
-
70
- What I couldn't find shipped anywhere else, as of this writing: this
71
- specific combination — sitting on top of Claude Code's own worktree hook
72
- instead of reimplementing it, a landing queue enforced at the git pre-push
73
- hook layer, and liveness-aware auto-pruning — as one small, zero-cost, local
74
- package. If you know of one, open an issue.
75
-
76
52
  ## 🧰 What's in the box
77
53
 
78
54
  | Command | What it does |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lanekeeper",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "The local, zero-cost merge queue for parallel Claude Code agents. Plugs into Claude Code's native worktree isolation; one build at a time, one landing at a time, zero races.",
5
5
  "type": "module",
6
6
  "license": "MIT",