@ssheleg/agent-sync 1.4.0 → 1.4.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
@@ -3,6 +3,32 @@
3
3
  All notable changes to this project are documented here.
4
4
  This project adheres to [Semantic Versioning](https://semver.org/).
5
5
 
6
+ ## 1.4.2 — 2026-07-30
7
+
8
+ ### Changed
9
+ - **The README's hook section now opens with what it actually is:** the only part
10
+ of this plugin that executes code on your machine, four bash scripts with 15-20s
11
+ timeouts, run by Claude Code on named events, with a pointer to `SECURITY.md`
12
+ for every path the install touches. The facts were already in `SECURITY.md`; the
13
+ README described the hooks' behavior without ever framing them as the security
14
+ surface a reader should check first.
15
+
16
+ ### Added
17
+ - **`displayName`** ("Agent Sync") in both manifests.
18
+
19
+ ## 1.4.1 — 2026-07-30
20
+
21
+ ### Fixed
22
+ - **`homepage` and `repository` sat at the top level of `marketplace.json`,
23
+ where Claude Code does not recognize them.** They are plugin-entry fields;
24
+ moved there, so the values reach the plugin listing instead of being ignored.
25
+ This plugin's `argument-hint` was already quoted — the only one in the family
26
+ that was.
27
+
28
+ ### Added
29
+ - `claude plugin validate --strict` runs in CI against both the plugin and the
30
+ marketplace manifest: the upstream schema, next to this repo's own validator.
31
+
6
32
  ## 1.4.0 — 2026-07-30
7
33
 
8
34
  ### Work happens on a branch, and the integration branch stays somebody else's stable base
package/README.md CHANGED
@@ -361,8 +361,15 @@ Adding one: read
361
361
 
362
362
  ## Enforcement hooks
363
363
 
364
- Installed with the Claude Code plugin. Every hook exits immediately in projects without
365
- `.claude/agent-sync.json`, so installing globally changes nothing elsewhere.
364
+ **This is the only part of the plugin that executes code on your machine.** Everything
365
+ else — the skill, its references — is text an agent reads. Four bash scripts, bundled in
366
+ the plugin and run by Claude Code on the events below, each with a timeout (15–20s) so a
367
+ hung script cannot stall a session. Read them before installing: they are short, and
368
+ [`SECURITY.md`](SECURITY.md) lists every path the install touches and why.
369
+
370
+ Every hook exits immediately in projects without `.claude/agent-sync.json`, so installing
371
+ globally changes nothing elsewhere. The `PreToolUse` guard can **deny** a tool call and
372
+ never grants one that would otherwise be denied.
366
373
 
367
374
  | Hook | Runs | Effect |
368
375
  |---|---|---|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssheleg/agent-sync",
3
- "version": "1.4.0",
3
+ "version": "1.4.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,6 +1,7 @@
1
1
  {
2
2
  "name": "agent-sync",
3
- "version": "1.4.0",
3
+ "displayName": "Agent Sync",
4
+ "version": "1.4.2",
4
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.",
5
6
  "author": {
6
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.4.0"
7
+ version: "1.4.2"
8
8
  author: ssheleg
9
9
  ---
10
10
 
@@ -32,7 +32,7 @@ from datetime import datetime, timezone
32
32
  from pathlib import Path
33
33
  from typing import Any
34
34
 
35
- VERSION = "1.4.0"
35
+ VERSION = "1.4.2"
36
36
 
37
37
  CONFIG_PATH = Path(".claude/agent-sync.json")
38
38
  ENV_FILE = Path(".env.agent-sync")