@ssheleg/agent-sync 1.18.0 → 1.18.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,19 @@
1
+ ## v1.18.2 — shared guards identify their owner
2
+
3
+ The eval and social-preview validators now declare their umbrella-owned shared
4
+ mechanisms, so the family drift gate can verify the seam without treating the
5
+ copies as unrelated implementations.
6
+
7
+ ## v1.18.1 — the coordination skill publishes its own trust surface
8
+
9
+ A root skill card now states the credential, backend and enforcement boundaries.
10
+ Portable trigger and behavioral evals cover leases, id reservation and the
11
+ submodule finish protocol, while recording no model score that was not run. The
12
+ README's first viewport is installable, CI adds the pinned house audit and eval
13
+ plant, and the generated social preview is committed at 1200×630.
14
+ The open Bash-guard gap is now `AS-09`, removing its collision with the already
15
+ closed token-budget row `AS-06`.
16
+
1
17
  ## v1.18.0 — a third backend, and two people who can finally see each other
2
18
 
3
19
  `fs` keeps the record on one machine and `outline` costs $10 a month for a team; between
package/README.md CHANGED
@@ -5,6 +5,16 @@
5
5
  [![license](https://img.shields.io/badge/license-MIT-blue)](LICENSE)
6
6
  [![site](https://img.shields.io/badge/docs-skills.sshlg.me-8ab0ff)](https://skills.sshlg.me/skills/agent-sync/)
7
7
 
8
+ **Coordinate concurrent coding agents with expiring claims, race-free ids and a durable run journal.**
9
+
10
+ ```bash
11
+ npx skills add ssheleg/agent-sync
12
+ ```
13
+
14
+ Ask: `Set up leases before three agents edit this repository.`
15
+
16
+ **[Detailed docs →](https://skills.sshlg.me/skills/agent-sync/)**
17
+
8
18
  **[Docs, and every skill →](https://skills.sshlg.me/)** · [this skill's page](https://skills.sshlg.me/skills/agent-sync/) · [follow @sshlg93 on X](https://x.com/intent/follow?screen_name=sshlg93)
9
19
 
10
20
  Loads in **DeepSeek Harness** (`dsh`) with **no plugin to write**: it reads the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssheleg/agent-sync",
3
- "version": "1.18.0",
3
+ "version": "1.18.2",
4
4
  "description": "Let concurrent coding agents share one project without colliding — 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.18.0",
4
+ "version": "1.18.2",
5
5
  "description": "Coordination layer for multi-agent repositories — 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.18.0"
7
+ version: "1.18.2"
8
8
  author: ssheleg
9
9
  ---
10
10
 
@@ -324,7 +324,7 @@ the parent; a service repo listing the parent's decision register is a config de
324
324
  - Credentials never reach `argv`, a log line, or the repository.
325
325
  - Degrade out loud. `ungated` is an acceptable state; a false claim of enforcement is not.
326
326
  - Two agents in one checkout are two identities, or the lease is decoration.
327
- - A submodule commit is unfinished until the parent points at it — `finish` before you call it done.
327
+ - A submodule commit is unfinished until the parent points at it — run `finish`.
328
328
  - Everything the cloud holds about a durable fact is a link to git, never a substitute.
329
329
 
330
330
  ## References
@@ -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.18.0"
36
+ VERSION = "1.18.2"
37
37
 
38
38
  CONFIG_PATH = Path(".claude/agent-sync.json")
39
39
  ENV_FILE = Path(".env.agent-sync")