@ssheleg/agent-sync 1.4.0 → 1.4.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 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.1 — 2026-07-30
7
+
8
+ ### Fixed
9
+ - **`homepage` and `repository` sat at the top level of `marketplace.json`,
10
+ where Claude Code does not recognize them.** They are plugin-entry fields;
11
+ moved there, so the values reach the plugin listing instead of being ignored.
12
+ This plugin's `argument-hint` was already quoted — the only one in the family
13
+ that was.
14
+
15
+ ### Added
16
+ - `claude plugin validate --strict` runs in CI against both the plugin and the
17
+ marketplace manifest: the upstream schema, next to this repo's own validator.
18
+
6
19
  ## 1.4.0 — 2026-07-30
7
20
 
8
21
  ### Work happens on a branch, and the integration branch stays somebody else's stable base
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.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,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-sync",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "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
5
  "author": {
6
6
  "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.1"
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.1"
36
36
 
37
37
  CONFIG_PATH = Path(".claude/agent-sync.json")
38
38
  ENV_FILE = Path(".env.agent-sync")