From a7af6e5a4f2323ebfc99dccc4433fb629522a823 Mon Sep 17 00:00:00 2001 From: Matteo Cherubini Date: Fri, 5 Jun 2026 15:36:24 +0200 Subject: [PATCH 1/2] refactor(registry): Provide a template for genome customization --- registry.sh | 12 ++++++------ templates/agents-master.md | 6 ++---- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/registry.sh b/registry.sh index 1d5c994..5ae3173 100644 --- a/registry.sh +++ b/registry.sh @@ -21,11 +21,11 @@ PROVIDERS_DIR="${PROJECT_ROOT}/providers" # --- GENOME REGISTRY --- # Format: "name|description|linked_repo" # - linked_repo is OPTIONAL. Leave empty (trailing pipe) for knowledge-only genomes. -# - It is an opaque reference rendered verbatim into the genome's AGENTS.md -# (phase-2 project work is parked, so the framework does not act on it yet). -# - Example with a project: "genome-homelab|Keru infrastructure...|keru/homelab-infra" +# +# HOW TO CUSTOMIZE: +# Replace the placeholder below with your actual genome domains. +# Example: "genome-work|Work notes and architecture logs|" +# "genome-finance|Personal finance|user/repo-finance" GENOMES=( - "genome-dev|Web development, TUI, Angular, software architecture|" - "genome-finance|Personal finance, investments, market analysis|" - "genome-homelab|Keru infrastructure, network configs, architecture logs|" + "genome-example|Template genome description for knowledge management|" ) diff --git a/templates/agents-master.md b/templates/agents-master.md index fbc057f..8183773 100644 --- a/templates/agents-master.md +++ b/templates/agents-master.md @@ -18,10 +18,8 @@ ```text {{MASTER_REPO}}/ ├── core-karpathy/ ← Reference pattern — read-only, never modify -├── genome-dev/ ← Submodule: web development, Angular, TUI -├── genome-finance/ ← Submodule: personal finance (git-crypt on private/) -├── genome-homelab/ ← Submodule: Keru infrastructure and network -└── AGENTS.md ← This file (update diagram when adding a genome) +├── genome-example/ ← Submodule placeholder (replace with your domain) +└── AGENTS.md ``` Each genome has its own `AGENTS.md` with domain-specific rules. From e730b493456e30c38bc7b88aa45ca8e81dc2369a Mon Sep 17 00:00:00 2001 From: Matteo Cherubini Date: Fri, 5 Jun 2026 15:37:15 +0200 Subject: [PATCH 2/2] Version update --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5ecaafa..b428e16 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # ============================================================================= -# Knowledge Genome - Makefile v. 1.1.1 +# Knowledge Genome - Makefile v. 1.1.2 # Orchestrates the setup and management of the knowledge base. # =============================================================================