@ssheleg/agent-sync 1.18.3 → 1.18.4

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.18.4 — the channel that sends the installs, on npm too
2
+
3
+ - The `skills.sh` badge and the canonical `homepage` reached GitHub in the previous cycle and stopped
4
+ there: npm serves the README and the metadata from the last **publish**, so the package
5
+ page still showed a badge-less README and a homepage pointing at GitHub.
6
+ This release carries both across.
7
+ - No behaviour changes. Cut because a change that lands on `main` and never publishes is a
8
+ change the package's own readers cannot see.
9
+
1
10
  ## v1.18.3 — the shared seam is explicit
2
11
 
3
12
  Both shared validators now state `diverges: none`, completing the umbrella
package/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  [![npm](https://img.shields.io/npm/v/%40ssheleg%2Fagent-sync)](https://www.npmjs.com/package/@ssheleg/agent-sync)
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
+ [![skills.sh](https://skills.sh/b/ssheleg/agent-sync)](https://skills.sh/ssheleg/agent-sync)
7
8
 
8
9
  **Coordinate concurrent coding agents with expiring claims, race-free ids and a durable run journal.**
9
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssheleg/agent-sync",
3
- "version": "1.18.3",
3
+ "version": "1.18.4",
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"
@@ -32,7 +32,7 @@
32
32
  "knowledge-base",
33
33
  "task-pipeline"
34
34
  ],
35
- "homepage": "https://github.com/ssheleg/agent-sync",
35
+ "homepage": "https://skills.sshlg.me/skills/agent-sync/",
36
36
  "repository": {
37
37
  "type": "git",
38
38
  "url": "git+https://github.com/ssheleg/agent-sync.git"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agent-sync",
3
3
  "displayName": "Agent Sync",
4
- "version": "1.18.3",
4
+ "version": "1.18.4",
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.3"
7
+ version: "1.18.4"
8
8
  author: ssheleg
9
9
  ---
10
10
 
@@ -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.3"
36
+ VERSION = "1.18.4"
37
37
 
38
38
  CONFIG_PATH = Path(".claude/agent-sync.json")
39
39
  ENV_FILE = Path(".env.agent-sync")