From f4e74b732d5ced515ee1929728f3de8d97eaeb69 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Mon, 13 Apr 2026 13:18:48 -0400 Subject: [PATCH] ALIGN: Updated boot loader to look for org-skill-policy --- .env.example | 8 ++++---- literate/package.org | 2 +- literate/skills.org | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.env.example b/.env.example index 7631be4..cbd8db4 100644 --- a/.env.example +++ b/.env.example @@ -18,7 +18,7 @@ SIGNAL_ACCOUNT_NUMBER="+1..." SAFETY_BLOCK_SHELL=true GTD_ENFORCE_INTEGRITY=true -# OACP Daemon Configuration +# Harness Protocol Daemon Configuration ORG_AGENT_DAEMON_PORT=9105 ORG_AGENT_WEB_PORT=8080 DAEMON_HOST="0.0.0.0" @@ -44,6 +44,6 @@ MEMEX_USER="YourName" MEMEX_ASSISTANT="AgentName" RECIPIENT_ID="+1..." # For Signal/Telegram delivery -# OACP Integrity & Authentication (HMAC-SHA256) -OACP_ENFORCE_HMAC=false -OACP_HMAC_SECRET="change-this-to-a-secure-random-string" +# Harness Protocol Integrity & Authentication (HMAC-SHA256) +Harness Protocol_ENFORCE_HMAC=false +Harness Protocol_HMAC_SECRET="change-this-to-a-secure-random-string" diff --git a/literate/package.org b/literate/package.org index db49f85..2cda53e 100644 --- a/literate/package.org +++ b/literate/package.org @@ -11,7 +11,7 @@ By strictly defining the public interface, we ensure that skills remain decouple #+begin_src mermaid flowchart TD - External[Actuators / Clients] -- OACP --> Package[Package Membrane: API] + External[Actuators / Clients] -- Harness Protocol --> Package[Package Membrane: API] Skills[Dynamic Skills] -- API Calls --> Package Package --> Internal[Harness Internal Modules] style Package fill:#f9f,stroke:#333,stroke-width:4px diff --git a/literate/skills.org b/literate/skills.org index d27d430..1c1c5dd 100644 --- a/literate/skills.org +++ b/literate/skills.org @@ -304,8 +304,8 @@ The unified orchestrator for the system boot sequence. (let ((sorted-files (topological-sort-skills skills-dir))) ;; MANDATE: The System Policy must be present for a safe boot - (unless (member "org-skill-system-invariants" sorted-files :key #'pathname-name :test #'string-equal) - (error "BOOT FAILURE: org-skill-system-invariants.org not found in skills directory.")) + (unless (member "org-skill-policy" sorted-files :key #'pathname-name :test #'string-equal) + (error "BOOT FAILURE: org-skill-policy.org not found in skills directory.")) (harness-log "==================================================") (harness-log " LOADER: Initializing ~a skills..." (length sorted-files))