From 71a72d0c4b47813da676c7089291ac6bcab62da2 Mon Sep 17 00:00:00 2001 From: Baptiste LAFOURCADE Date: Wed, 1 Jul 2026 22:18:42 +0200 Subject: [PATCH] ci(framework): bump the framework-build CLI pin to 5.0.2 The per-tool release archives were built with a pinned `@ai-driven-dev/cli@4.6.1`, a full major behind the published 5.0.2. Verified across all 9 matrix cells: 5.0.2 builds every target, and the only output change is a fix. In marketplace mode (claude/cursor/copilot), 4.6.1 collapsed aidd-dev's `plugin.json` `agents` from the source's explicit file list (`./agents/executor.md`, `./agents/checker.md`) down to a bare `./agents` directory; 5.0.2 preserves the explicit files, matching the source. The flat targets and codex are byte-identical between the two versions. v5 refuses to build when `--out` is absent; the step already `mkdir -p`s it, so the bump is safe. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 356729c1..62c66e5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -157,7 +157,7 @@ jobs: # path contains the other. Stage under RUNNER_TEMP, not the repo tree. OUT="${RUNNER_TEMP}/dist/${{ matrix.tool }}/${{ matrix.mode }}" mkdir -p "$OUT" - npx --yes @ai-driven-dev/cli@4.6.1 framework build \ + npx --yes @ai-driven-dev/cli@5.0.2 framework build \ --source . --target ${{ matrix.tool }} --out "$OUT" ${{ matrix.flag }} STAGE="$(mktemp -d)/${NAME}" mkdir -p "$STAGE"