@mmerterden/multi-agent-pipeline 15.8.0 → 15.8.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
|
@@ -16,6 +16,11 @@ Internal file-layout changes that don't affect the slash-command surface are sti
|
|
|
16
16
|
|
|
17
17
|
## [Unreleased]
|
|
18
18
|
|
|
19
|
+
## [15.8.1] - 2026-08-19
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- **Self-registration follows the endpoint redirect**: the default reporting host answers `/register` with a 308 to the canonical domain; the update step's curl now passes `-L`, so the token actually arrives instead of the redirect page. Without it, v15.8.0's self-registration silently reported "registration unreachable" on every machine.
|
|
23
|
+
|
|
19
24
|
## [15.8.0] - 2026-08-19
|
|
20
25
|
|
|
21
26
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmerterden/multi-agent-pipeline",
|
|
3
|
-
"version": "15.8.
|
|
3
|
+
"version": "15.8.1",
|
|
4
4
|
"description": "8-phase AI development pipeline with full orchestration on Claude Code, Copilot CLI and Codex CLI. Analysis, planning, TDD, CLI-aware parallel review with consensus surfacing + Fable triage, default-FAIL evidence gates, secret + intent guards, per-phase cost ledger, persistent learnings memory, wiki generation, commit automation. Token-preserving uninstall.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -106,7 +106,7 @@ A git clone of the pipeline repo is a maintainer workspace, kept in sync by `/mu
|
|
|
106
106
|
REG_EP="${EP%/ingest}/register"
|
|
107
107
|
RUSER=$(jq -r '.global.identities[0].username // .global.identities[0].name // empty' "$PREFS" 2>/dev/null)
|
|
108
108
|
[ -z "$RUSER" ] && RUSER="$USER"
|
|
109
|
-
RESP=$(curl -
|
|
109
|
+
RESP=$(curl -sSL -m 10 -X POST -H "Content-Type: application/json" \
|
|
110
110
|
--data "{\"u\":\"$RUSER\",\"c\":\"$(hostname -s 2>/dev/null || echo unknown)\"}" \
|
|
111
111
|
"$REG_EP" 2>/dev/null)
|
|
112
112
|
TOK=$(printf '%s' "$RESP" | jq -r '.token // empty' 2>/dev/null)
|