@ssheleg/agent-sync 1.4.1 → 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 +13 -0
- package/README.md +9 -2
- package/package.json +1 -1
- package/plugins/agent-sync/.claude-plugin/plugin.json +2 -1
- package/plugins/agent-sync/skills/agent-sync/SKILL.md +1 -1
- package/plugins/agent-sync/skills/agent-sync/scripts/__pycache__/agent_sync.cpython-312.pyc +0 -0
- package/plugins/agent-sync/skills/agent-sync/scripts/agent_sync.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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
|
+
|
|
6
19
|
## 1.4.1 — 2026-07-30
|
|
7
20
|
|
|
8
21
|
### Fixed
|
package/README.md
CHANGED
|
@@ -361,8 +361,15 @@ Adding one: read
|
|
|
361
361
|
|
|
362
362
|
## Enforcement hooks
|
|
363
363
|
|
|
364
|
-
|
|
365
|
-
|
|
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.
|
|
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
|
-
"
|
|
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.
|
|
7
|
+
version: "1.4.2"
|
|
8
8
|
author: ssheleg
|
|
9
9
|
---
|
|
10
10
|
|
|
Binary file
|