@ssheleg/agent-sync 1.8.1 → 1.8.2

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## v1.8.2
2
+
3
+ ### Changed
4
+
5
+ - `references/hooks.md` crossed 100 lines and gains the `## Contents` list the canon
6
+ requires past that mark — generated from its own six headings. v1.8.1 did this for the
7
+ six references that were over the line then; this one grew past it afterwards, which
8
+ is the shape of the defect: the rule fires on a length that keeps changing.
9
+
1
10
  ## v1.8.1
2
11
 
3
12
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssheleg/agent-sync",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "Let concurrent coding agents share one project without colliding \u2014 leases with TTL, race-free id reservation, a run journal and a generated board, over a pluggable knowledge cloud.",
5
5
  "bin": {
6
6
  "agent-sync": "bin/agent-sync.js"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agent-sync",
3
3
  "displayName": "Agent Sync",
4
- "version": "1.8.1",
4
+ "version": "1.8.2",
5
5
  "description": "Coordination layer for multi-agent repositories \u2014 leases with TTL, race-free ID reservation, a run journal, a cross-repo signal feed and a generated board, over a pluggable knowledge cloud.",
6
6
  "author": {
7
7
  "name": "ssheleg",
@@ -4,7 +4,7 @@ description: "Use when several coding agents work one repository at the same tim
4
4
  compatibility: "Requires the task-pipeline skill for its stages (npx sshlg-skills install). Needs python3 3.9+ (stdlib only, HTTP included - nothing to pip install) and bash for the hooks. The knowledge backend is configured per project; with none configured it degrades to git-file leases. Enforcement hooks are Claude Code only - on other agents the same checks run as a self-check."
5
5
  license: MIT
6
6
  metadata:
7
- version: "1.8.1"
7
+ version: "1.8.2"
8
8
  author: ssheleg
9
9
  ---
10
10
 
@@ -2,6 +2,15 @@
2
2
 
3
3
  **Read this when** installing, debugging or removing the enforcement hooks.
4
4
 
5
+ ## Contents
6
+
7
+ - The limit, first
8
+ - Contract
9
+ - Installed hooks
10
+ - Performance
11
+ - Debugging
12
+ - Removing them
13
+
5
14
  ## The limit, first
6
15
 
7
16
  **Hooks exist only in Claude Code.** On Cursor, Codex and the other agents the
@@ -33,7 +33,7 @@ from datetime import datetime, timezone
33
33
  from pathlib import Path
34
34
  from typing import Any
35
35
 
36
- VERSION = "1.8.1"
36
+ VERSION = "1.8.2"
37
37
 
38
38
  CONFIG_PATH = Path(".claude/agent-sync.json")
39
39
  ENV_FILE = Path(".env.agent-sync")