@mmerterden/multi-agent-pipeline 13.5.0 → 13.5.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,17 @@ Internal file-layout changes that don't affect the slash-command surface are sti
16
16
 
17
17
  ## [Unreleased]
18
18
 
19
+ ## [13.5.1] - 2026-07-28
20
+
21
+ ### Fixed
22
+
23
+ - `ios-coding-standard`'s local lint runner defaulted its scratch root to
24
+ `~/.claude/local/...`. On a Copilot- or Codex-only machine that made the script create
25
+ a stray `.claude` directory belonging to a host that is not installed, just to hold
26
+ lint output. It now picks whichever host tree exists and falls back to `$TMPDIR`.
27
+ Found by the Codex sync verification, which flags any `$HOME/.claude/...` reference
28
+ that reaches the Codex tree.
29
+
19
30
  ## [13.5.0] - 2026-07-28
20
31
 
21
32
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mmerterden/multi-agent-pipeline",
3
- "version": "13.5.0",
3
+ "version": "13.5.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",
@@ -16,7 +16,19 @@
16
16
  set -euo pipefail
17
17
 
18
18
  SKILL_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
19
- WORK_ROOT="${IOS_STANDARD_WORK_ROOT:-$HOME/.claude/local/ios-coding-standard}"
19
+ # Scratch root. `~/.claude` is one host's tree: defaulting there made a Copilot- or
20
+ # Codex-only machine create a stray .claude directory just to hold lint output. Prefer
21
+ # whichever host tree already exists, and fall back to a neutral location.
22
+ if [ -n "${IOS_STANDARD_WORK_ROOT:-}" ]; then
23
+ WORK_ROOT="$IOS_STANDARD_WORK_ROOT"
24
+ else
25
+ WORK_ROOT=""
26
+ for _host_dir in "$HOME/.claude" "$HOME/.copilot" "$HOME/.codex"; do
27
+ [ -d "$_host_dir" ] && { WORK_ROOT="$_host_dir/local/ios-coding-standard"; break; }
28
+ done
29
+ unset _host_dir
30
+ [ -n "$WORK_ROOT" ] || WORK_ROOT="${TMPDIR:-/tmp}/ios-coding-standard"
31
+ fi
20
32
  DRAFT_CONFIG="$SKILL_DIR/swiftlint.draft.yml"
21
33
 
22
34
  MODULE_PATH="${1:-}"