From 0f144de1b2478283171f87451259aaa59e3508db Mon Sep 17 00:00:00 2001 From: alexsoyes Date: Sun, 28 Jun 2026 10:53:33 +0200 Subject: [PATCH 1/2] docs: refine README positioning for AI-driven development --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index f0a9cbbf..2a30162a 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,7 @@ # AI-Driven Dev Framework -### Vibe Coding for professional developers — focused on 100% quality on AI-generated code. - -

🇫🇷 The first French open-source framework for AI-driven development.

+### A French framework for AI-Driven Developer to produce high code quality.

7 plugins · 40 skills · 2 agents · MIT From 5da2a3b00737cd2145d95f151e03be55310ff4d6 Mon Sep 17 00:00:00 2001 From: alexsoyes Date: Wed, 1 Jul 2026 09:35:49 +0200 Subject: [PATCH 2/2] fix(framework): guarantee and report Claude agent copy on reload `claude plugin install` copies bundled agents into the installPath implicitly and printed claude:ok whether or not the copy happened, so a skipped copy silently dropped executor/checker with no signal. Force-sync every declared agent into the freshly installed version dir and print the count, mirroring the existing Codex agent net. A miss is now repaired and reported instead of vanishing silently. Co-Authored-By: Claude Opus 4.8 (1M context) --- scripts/dev-sync.sh | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/scripts/dev-sync.sh b/scripts/dev-sync.sh index 89cfd90b..ddb33430 100755 --- a/scripts/dev-sync.sh +++ b/scripts/dev-sync.sh @@ -76,7 +76,30 @@ sync_one() { fi if [ "$HAVE_CLAUDE" = 1 ]; then rm -rf "$CLAUDE_CACHE/$MKT/$name" - claude plugin install "$name@$MKT" --scope user >/dev/null 2>&1 && printf ' claude:ok' || printf ' claude:FAIL' + if claude plugin install "$name@$MKT" --scope user >/dev/null 2>&1; then + printf ' claude:ok' + # Claude loads agents ONLY from the installed installPath, and `claude plugin install` + # copies them there implicitly - which fails silently (still prints ok) if the copy is + # skipped, dropping executor/checker. Pin it like the Codex net above: force-sync every + # declared agent into the freshly installed version dir and report the count so a miss + # is never silent. Drop this once the install is a trusted source of bundled agents. + if [ -d "$FW/plugins/$name/agents" ]; then + local dest src n=0 fixed=0 + dest="$(ls -d "$CLAUDE_CACHE/$MKT/$name"/*/ 2>/dev/null | head -1)" + if [ -n "$dest" ]; then + mkdir -p "${dest}agents" + for src in "$FW/plugins/$name/agents/"*.md; do + n=$((n + 1)) + cmp -s "$src" "${dest}agents/$(basename "$src")" 2>/dev/null || { cp -f "$src" "${dest}agents/"; fixed=$((fixed + 1)); } + done + [ "$fixed" -gt 0 ] && printf '(+%d agents, repaired %d)' "$n" "$fixed" || printf '(+%d agents)' "$n" + else + printf '(agents:NO-INSTALLPATH)' + fi + fi + else + printf ' claude:FAIL' + fi fi echo }