@ssheleg/agent-sync 1.18.7 → 1.19.0
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,53 @@
|
|
|
1
|
+
## v1.19.0 — the skill now promises the finish it has always performed
|
|
2
|
+
|
|
3
|
+
Wave-4 close-out of the 2026-08-29 family audit (ASY-10), filed by this
|
|
4
|
+
repository's own first eval run. One front-matter line changes; no behaviour
|
|
5
|
+
does.
|
|
6
|
+
|
|
7
|
+
- **ASY-10 — the submodule-finish request reached nothing, and now reaches this
|
|
8
|
+
skill on every sample.** `finish` exists for exactly one silent failure — a
|
|
9
|
+
submodule pushed while the parent still points at the commit before it — and
|
|
10
|
+
the description advertised none of its words, so "Finish a submodule change so
|
|
11
|
+
the parent points at the pushed commit" (eval q06) routed past the skill on
|
|
12
|
+
every probe of the v1.18.7 run. The *Use when* clause now names it, in the
|
|
13
|
+
words `finish` itself prints (`finishing work across a parent repo and its
|
|
14
|
+
submodules - clean, pushed, and pointed at`), and the trigger list carries the
|
|
15
|
+
symptom in both languages: `'the submodule is pushed, the parent points at the
|
|
16
|
+
old commit' / 'сабмодуль запушен, родитель на старом коммите'`. The
|
|
17
|
+
description is **951 characters — against the 970 house working limit, not the
|
|
18
|
+
1024 spec cap**: a first draft at 1017 passed `test/validate.py` and was
|
|
19
|
+
refused by the family's pinned auditor (`GAP DESC_HEADROOM`, exit 1, a CI
|
|
20
|
+
failure), so it was rewritten rather than shipped. `yaml.safe_load` reads the
|
|
21
|
+
front matter — the two things this family has shipped broken before.
|
|
22
|
+
- **The fix is measured, not asserted, and both arms ran in this session.** Two
|
|
23
|
+
corpus files differing in exactly one line (`- agent-sync: …`, old vs new),
|
|
24
|
+
one enforced protocol, fresh context-free subagents: **q06 went 0/3 → 3/3 on
|
|
25
|
+
haiku and 0/3 → 3/3 on sonnet**, and every number in the results file comes
|
|
26
|
+
from the text that ships — the discarded 1017-char draft was re-measured from
|
|
27
|
+
scratch after the rewrite rather than having its numbers carried over. The
|
|
28
|
+
pilot probes are reported too, because
|
|
29
|
+
they changed the protocol: offered the corpus rather than required to read it,
|
|
30
|
+
all three sonnet probes answered with no tool call at all, from the machine's
|
|
31
|
+
own installed listing — so the read was made mandatory and provable, and both
|
|
32
|
+
arms re-run under it.
|
|
33
|
+
- **Every other query was re-probed, because a widened trigger steals a
|
|
34
|
+
neighbour's.** All twelve queries × two models: **12/12 on both, train 6/6 and
|
|
35
|
+
validation 6/6**, up from 11/12. Nothing moved except q06 — including q07
|
|
36
|
+
(solo git branching) and q08 (the full delivery cycle), the two negatives with
|
|
37
|
+
the most to lose from submodule and finish vocabulary. Tables, the 68-probe
|
|
38
|
+
accounting across three arms and the limits are in `test/evals/RESULTS.md`;
|
|
39
|
+
the v1.18.7 rows are left standing beside the new ones rather than rewritten.
|
|
40
|
+
- Ten routed triggers still advertised — the umbrella's own
|
|
41
|
+
`advertised_check.js` was run against this checkout (`ok: agent-sync
|
|
42
|
+
advertises all 10 routed trigger(s)`), not a copy of its table.
|
|
43
|
+
- **Filed, not fixed: AS-10.** `npm test` accepts a description up to 1024
|
|
44
|
+
characters and CI's pinned auditor refuses one past 970, so a description in
|
|
45
|
+
that band goes green locally and red on the runner. That is AS-06's shape a
|
|
46
|
+
second time — the same auditor, the other half of the same budget — and the
|
|
47
|
+
fix belongs in `test/validate.py` with a planted self-test, not inside a
|
|
48
|
+
release whose subject is one description line. The retro entry records what
|
|
49
|
+
the divergence cost here.
|
|
50
|
+
|
|
1
51
|
## v1.18.7 — the evals stop being a claim, and the manifests say what shapes them
|
|
2
52
|
|
|
3
53
|
Wave-3 close-out of the 2026-08-29 family audit (ASY-03, ASY-09). No behavior
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ssheleg/agent-sync",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.0",
|
|
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"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
|
|
3
3
|
"name": "agent-sync",
|
|
4
4
|
"displayName": "Agent Sync",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.19.0",
|
|
6
6
|
"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.",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "ssheleg",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agent-sync
|
|
3
|
-
description: "Use when several coding agents work one repository at the same time and must not collide - claiming a task, reserving the next decision/question/ticket id, journaling a run,
|
|
3
|
+
description: "Use when several coding agents work one repository at the same time and must not collide - claiming a task, reserving the next decision/question/ticket id, journaling a run, moving a cross-repo dependency, regenerating the board, or finishing work across a parent repo and its submodules - clean, pushed, and pointed at. Triggers - 'claim this task' / 'возьми задачу', 'who is working on' / 'кто сейчас делает', 'reserve an id' / 'зарезервируй id', 'sync the board' / 'обнови доску', 'set up agent coordination' / 'настрой координацию агентов', 'the submodule is pushed, the parent points at the old commit' / 'сабмодуль запушен, родитель на старом коммите', /agent-sync. Use it BEFORE editing any shared registry file (decisions, open questions, roadmap, workstreams, dependencies) in a project that has .claude/agent-sync.json, even when the user never mentions coordination - an unclaimed edit to those files is how two agents overwrite each other."
|
|
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.
|
|
7
|
+
version: "1.19.0"
|
|
8
8
|
author: ssheleg
|
|
9
9
|
---
|
|
10
10
|
|