@ssheleg/agent-sync 1.9.0 → 1.10.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 +11 -0
- package/agent-sync.example.json +1 -1
- 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/references/pipeline-binding.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,14 @@
|
|
|
1
|
+
## v1.10.0
|
|
2
|
+
|
|
3
|
+
Following `task-pipeline` v1.53.0, which renamed the artifact root's default from
|
|
4
|
+
`docs/superpowers/` to `docs/evidence/` and made the root resolvable (`paths.artifacts`
|
|
5
|
+
in `pipeline.json`, else an existing `docs/evidence/`, else an existing
|
|
6
|
+
`docs/superpowers/` — **the legacy name stays supported and no run warns about it**).
|
|
7
|
+
|
|
8
|
+
Shipped surfaces name the new default now, which is why this is a minor rather than a
|
|
9
|
+
patch. This project's own records moved with the directory and were not rewritten: a
|
|
10
|
+
brief describes where things were when it was written.
|
|
11
|
+
|
|
1
12
|
## v1.9.0
|
|
2
13
|
|
|
3
14
|
### Changed
|
package/agent-sync.example.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ssheleg/agent-sync",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.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"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-sync",
|
|
3
3
|
"displayName": "Agent Sync",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.10.0",
|
|
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.
|
|
7
|
+
version: "1.10.0"
|
|
8
8
|
author: ssheleg
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -108,7 +108,7 @@ since the pipeline's documentation track it is longer than the registers:
|
|
|
108
108
|
| the decision register (`docs/DECISIONS.md` or `docs/adr/`) | append-only; a concurrent write loses an entry |
|
|
109
109
|
| `docs/OPEN_QUESTIONS.md`, `docs/ROADMAP.md` | the same |
|
|
110
110
|
| **`docs/DOCMAP.md`** | seeded into every project the pipeline touches; holds the registers, the propagation matrix and the ratchet floors. Losing it loses the map |
|
|
111
|
-
| **`docs/
|
|
111
|
+
| **`docs/evidence/retro.md`** | capped at ten standing instructions, so a concurrent write silently **drops a lesson** instead of conflicting visibly |
|
|
112
112
|
|
|
113
113
|
The schema keeps `agent-sync.json` to known keys, which is why this reasoning lives
|
|
114
114
|
here and not as a comment in the config.
|
|
Binary file
|