@ssheleg/agent-sync 1.18.6 → 1.18.7

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,35 @@
1
+ ## v1.18.7 — the evals stop being a claim, and the manifests say what shapes them
2
+
3
+ Wave-3 close-out of the 2026-08-29 family audit (ASY-03, ASY-09). No behavior
4
+ changes; a measurement that did not exist now does, and two manifests declare
5
+ their schemas.
6
+
7
+ - **ASY-03 — the behavioral evals were executed, dated, and the numbers are worse
8
+ than silence pretended.** `test/evals/RESULTS.md` had one row: "no run yet".
9
+ It now carries two dated rows (2026-08-31, haiku and sonnet): 24 blind
10
+ fresh-context trigger probes — one per query per model, the query verbatim plus
11
+ the installed family list, nothing else — and all six scenario lines driven as
12
+ real agent sessions against scratch repositories, end states verified on disk.
13
+ Both models score 11/12 on triggers (train 6/6, validation 5/6) and fail the
14
+ SAME query: **q06, the submodule-finish positive, 0/3 samples on each model** —
15
+ the description has no submodule vocabulary to catch it. That gap is filed as
16
+ ASY-10 (a description change is a minor release, not this patch). The Method
17
+ section states the harness limits out loud: n=1 sampling except the failing
18
+ query, the operator's routing doctrine present in probe context, fs-backend
19
+ `reserve` refusing by design in s02, model aliases rather than pinned snapshot
20
+ ids. SKILL-CARD.md's "never executed" line now points at the dated rows.
21
+ - **ASY-09 — both plugin manifests declare `$schema`.**
22
+ `.claude-plugin/marketplace.json` names
23
+ `https://json.schemastore.org/claude-code-marketplace.json` and
24
+ `plugins/agent-sync/.claude-plugin/plugin.json` names
25
+ `https://json.schemastore.org/claude-code-plugin-manifest.json`; both files
26
+ validate against the schemas those addresses serve (fetched and checked at
27
+ edit time), and `claude plugin validate --strict` stays green on both. The
28
+ repo's own no-host-address rule refused the plugin manifest — correctly, by
29
+ its letter — so `json.schemastore.org` joined `ALLOWED_HOSTS` beside
30
+ `json-schema.org`: a vendor-neutral public schema registry, not an instance
31
+ address. The planted `leaked host` self-test still proves the check can fail.
32
+
1
33
  ## v1.18.6 — the guard keeps its own header's promise, and /clear gets its own identity
2
34
 
3
35
  Wave-2 hardening from the 2026-08-29 family audit (ASY-07, ASY-08, ASY-06, ASY-01).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssheleg/agent-sync",
3
- "version": "1.18.6",
3
+ "version": "1.18.7",
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"
@@ -1,7 +1,8 @@
1
1
  {
2
+ "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
2
3
  "name": "agent-sync",
3
4
  "displayName": "Agent Sync",
4
- "version": "1.18.6",
5
+ "version": "1.18.7",
5
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.",
6
7
  "author": {
7
8
  "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.6"
7
+ version: "1.18.7"
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.6"
36
+ VERSION = "1.18.7"
37
37
 
38
38
  CONFIG_PATH = Path(".claude/agent-sync.json")
39
39
  ENV_FILE = Path(".env.agent-sync")