@ssheleg/agent-sync 1.11.0 → 1.11.1
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 +19 -0
- package/package.json +1 -1
- package/plugins/agent-sync/.claude-plugin/plugin.json +1 -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
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## v1.11.1 — the gate can see an invariant it breaks elsewhere
|
|
2
|
+
|
|
3
|
+
**This gate can now see an invariant it breaks one repository away.** The family umbrella
|
|
4
|
+
routes work by matching a prompt against a table in `lib/triggers.js`, and every trigger
|
|
5
|
+
there must be a word this skill's own `description` advertises. Nothing here knew that
|
|
6
|
+
table existed. On 2026-08-16 `sheleg-design` 1.37.0 shipped green having dropped a phrase
|
|
7
|
+
that was still a live trigger, the umbrella found out minutes after the tag, and it cost a
|
|
8
|
+
patch release — because the member releases FIRST and the umbrella re-pins after.
|
|
9
|
+
|
|
10
|
+
`test/validate.py` now asks the umbrella's own checker (`test/advertised_check.js`), which
|
|
11
|
+
reads the module the hook itself calls. **No copy of the table lives here**, so there is
|
|
12
|
+
nothing to drift. With no umbrella above this checkout — a standalone clone, and CI — it
|
|
13
|
+
discloses rather than passing, because a check that cannot look must never read as one
|
|
14
|
+
that looked.
|
|
15
|
+
|
|
16
|
+
Watched refusing a real drop before shipping: every one of the seven members carrying
|
|
17
|
+
routed triggers had one of its own advertised phrases removed and every one of them failed
|
|
18
|
+
its own gate.
|
|
19
|
+
|
|
1
20
|
## v1.11.0 — releasing stops rewinding a cell, and a register with no pattern says so
|
|
2
21
|
|
|
3
22
|
Two more defects in the same afternoon that produced v1.10.1, both from using this tool
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ssheleg/agent-sync",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
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.11.
|
|
4
|
+
"version": "1.11.1",
|
|
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.11.
|
|
7
|
+
version: "1.11.1"
|
|
8
8
|
author: ssheleg
|
|
9
9
|
---
|
|
10
10
|
|
|
Binary file
|