From 79f0ef9ac64d5741658be1efe31285845eb3a436 Mon Sep 17 00:00:00 2001 From: Matteo Cherubini Date: Thu, 25 Jun 2026 17:36:47 +0200 Subject: [PATCH 1/3] refactor(tests): improve formatting of private wiki instructions --- tests/helpers.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/helpers.bash b/tests/helpers.bash index 1a25ac1..f92e21d 100644 --- a/tests/helpers.bash +++ b/tests/helpers.bash @@ -57,8 +57,8 @@ private: false ## Private Synthesis (`wiki/private/`) -*Restricted access. Requires PRIVATE_CONTEXT: enabled and unlocked repo.* -*List slug names ONLY. Do not append summaries — prevents metadata leakage.* +_Restricted access. Requires `PRIVATE_CONTEXT: enabled` and unlocked repo._ +_List slug names ONLY. Do not append summaries — prevents metadata leakage._ EOF cat > "${g}/wiki/log.md" <<'EOF' From e33f4653f1758c9fab8ad70b526178869fcdd850 Mon Sep 17 00:00:00 2001 From: Matteo Cherubini Date: Thu, 25 Jun 2026 17:36:48 +0200 Subject: [PATCH 2/3] test: improve hermetic git repository setup in helpers --- tests/helpers.bash | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tests/helpers.bash b/tests/helpers.bash index f92e21d..912ea24 100644 --- a/tests/helpers.bash +++ b/tests/helpers.bash @@ -88,16 +88,17 @@ EOF git init -q # Hermetic: ignore the user's global git config (signing, global hooks); # otherwise commit.gpgsign or a global core.hooksPath makes git commit fail here. - git config commit.gpgsign false - git config core.hooksPath "${base}/nohooks" - git config user.email t@t - git config user.name tester - git add . - git commit -qm init + git config --local user.name "Framework Test" + git config --local user.email "test@genome.local" + git config --local commit.gpgsign false + git config --local core.hooksPath "${base}/nohooks" + git branch -M main git remote add origin "${base}/origin.git" + git add . + git commit -q -m "chore: initial scaffold" git push -q -u origin main - ) >/dev/null + ) echo "${g}" } From 5fb6a09a96975dafe2eb11a8c125cb65ea4d874c Mon Sep 17 00:00:00 2001 From: Matteo Cherubini Date: Thu, 25 Jun 2026 17:37:44 +0200 Subject: [PATCH 3/3] Update version --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 214cf3b..cfd7314 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # ============================================================================= -# Knowledge Genome - Makefile v. 1.8.0 +# Knowledge Genome - Makefile v. 1.8.1 # Orchestrates the setup and management of the knowledge base. # =============================================================================