feat(arch): implement 'Code as Thought' architecture and formalize PSF Consensus Loop
This commit is contained in:
34
projects/org-skill-project-foundry/PRD.org
Normal file
34
projects/org-skill-project-foundry/PRD.org
Normal file
@@ -0,0 +1,34 @@
|
||||
#+TITLE: PRD: Skill - Project Foundry Agent
|
||||
#+STATUS: FROZEN
|
||||
#+AUTHOR: Agent
|
||||
#+CREATED: [2026-03-31 Tue 14:15]
|
||||
|
||||
* 1. Purpose
|
||||
Define the automated project instantiation behaviors for the PSF. The Project Foundry skill transforms a natural language project request (Demand) into a physically scaffolded, high-integrity project structure (Blueprint).
|
||||
|
||||
* 2. User Needs
|
||||
|
||||
** 2.1 Workspace Scaffolding
|
||||
As a user (Amr), I need a consistent environment for every new project.
|
||||
- The Foundry MUST create the standard PSF directory layout (`src/`, `tests/`, `docs/`).
|
||||
- It MUST generate boilerplate literate files: `README.org`, `PRD.org`, and `PROTOCOL.org`.
|
||||
|
||||
** 2.2 Version Control Initialization
|
||||
I need every project to be a Git repository from day one.
|
||||
- The Foundry MUST run `git init` in the new project directory.
|
||||
|
||||
** 2.3 GTD Integration
|
||||
I need new projects to be automatically tracked in my task management system.
|
||||
- The Foundry MUST append the project and its initial tasks (`Draft PRD`, `Draft PROTOCOL`) to `gtd.org`.
|
||||
- It MUST use `org-edna` or sibling-based triggers to maintain sequential integrity.
|
||||
|
||||
** 2.4 Idempotency and Safety
|
||||
I need to prevent accidental data loss.
|
||||
- The Foundry MUST NOT overwrite an existing project directory.
|
||||
- It MUST log all physical actions to the kernel log.
|
||||
|
||||
* 3. Success Criteria
|
||||
- [ ] **Structural Compliance:** Scaffolded project contains all required directories and files.
|
||||
- [ ] **GTD Linkage:** New project appears in `gtd.org` with correct properties (`:PROJECT-PATH:`, `:PSF-STATE:`).
|
||||
- [ ] **Literate Boilerplate:** Generated `PRD.org` and `PROTOCOL.org` contain the standard PSF templates.
|
||||
- [ ] **Error Handling:** Foundry returns a clean error message if the project directory already exists.
|
||||
33
projects/org-skill-project-foundry/PROTOCOL.org
Normal file
33
projects/org-skill-project-foundry/PROTOCOL.org
Normal file
@@ -0,0 +1,33 @@
|
||||
#+TITLE: PROTOCOL: Skill - Project Foundry Agent
|
||||
#+STATUS: SIGNED
|
||||
#+AUTHOR: Architect-Agent
|
||||
#+CREATED: [2026-03-31 Tue 14:20]
|
||||
|
||||
* 1. Architectural Intent
|
||||
This protocol defines the shared Lisp interfaces for the Project Foundry skill. It ensures that every project in the Memex is instantiated with high structural and semantic integrity.
|
||||
|
||||
* 2. Semantic Interfaces
|
||||
|
||||
** 2.1 Project Scaffolding
|
||||
#+begin_src lisp
|
||||
(defun scaffold-project (name type)
|
||||
"Physically creates the PSF project structure on disk and links it to GTD."
|
||||
)
|
||||
#+end_src
|
||||
|
||||
** 2.2 Trigger Perception
|
||||
#+begin_src lisp
|
||||
(defun trigger-skill-project-foundry (context)
|
||||
"Determines if the current context warrants a project instantiation."
|
||||
)
|
||||
#+end_src
|
||||
|
||||
** 2.3 Proposal Verification
|
||||
#+begin_src lisp
|
||||
(defun verify-skill-project-foundry (proposed-action context)
|
||||
"Validates the Neuro-cognitive proposal before physical actuation."
|
||||
)
|
||||
#+end_src
|
||||
|
||||
* 3. Integration with GTD
|
||||
The Foundry MUST append a new project entry to `gtd.org` using the standard PSF template, including `:PSF-STATE: A: DEMAND` and `:TRIGGER: next-sibling!`.
|
||||
12
projects/org-skill-project-foundry/README.org
Normal file
12
projects/org-skill-project-foundry/README.org
Normal file
@@ -0,0 +1,12 @@
|
||||
#+TITLE: PSF Core: The Autonomous Engineer
|
||||
#+AUTHOR: PSF Engine Room
|
||||
#+DATE: [2026-03-30 Mon]
|
||||
|
||||
* Vision
|
||||
To implement a fully autonomous, neurosymbolic "Consensus Loop" where specialized agents (Architect, Analyst, Coder, QA, Scribe) collaborate to build high-integrity software following PSF mandates.
|
||||
|
||||
* Structure
|
||||
- [[file:PRD.org][Requirements (PRD)]]
|
||||
- [[file:PROTOCOL.org][Interfaces (PROTOCOL)]]
|
||||
- [[file:src/][Implementation (src)]]
|
||||
- [[file:tests/][Verification (tests)]]
|
||||
79
projects/org-skill-project-foundry/src/implementation.org
Normal file
79
projects/org-skill-project-foundry/src/implementation.org
Normal file
@@ -0,0 +1,79 @@
|
||||
#+TITLE: PSF Core: Literate Implementation
|
||||
#+ID: psf-core-implementation
|
||||
#+PROPERTY: header-args :tangle psf-core.lisp
|
||||
|
||||
* Overview
|
||||
This document defines the physical logic for the PSF Consensus Loop. It implements the interfaces defined in [[file:../PROTOCOL.org][PROTOCOL.org]].
|
||||
|
||||
* Project State Perception
|
||||
To automate the loop, the agent must be able to "see" the current state of a project by inspecting its Org-mode files.
|
||||
|
||||
#+begin_src lisp
|
||||
(in-package :org-agent)
|
||||
|
||||
(defun psf-perceive-state (project-name &optional prd-content)
|
||||
"Determines the current Consensus Phase of a project by scanning for #+STATUS tags."
|
||||
(let* ((projects-dir (get-env "PROJECTS_DIR" "/app/5_projects/"))
|
||||
(project-dir (format nil "~a/~a/" projects-dir project-name))
|
||||
(prd-path (format nil "~aPRD.org" project-dir))
|
||||
(proto-path (format nil "~aPROTOCOL.org" project-dir))
|
||||
(test-dir (format nil "~atests/" project-dir)))
|
||||
|
||||
(cond
|
||||
((and (file-exists-p proto-path)
|
||||
(search "#+STATUS: SIGNED" (uiop:read-file-string proto-path)))
|
||||
(if (uiop:directory-files test-dir) :BUILD :SUCCESS))
|
||||
|
||||
((and (file-exists-p prd-path)
|
||||
(search "#+STATUS: FROZEN" (uiop:read-file-string prd-path)))
|
||||
:BLUEPRINT)
|
||||
|
||||
(t :DEMAND))))
|
||||
#+end_src
|
||||
|
||||
* Transition Gate Enforcement
|
||||
The Safety Gates ensure that the agent cannot proceed to a more complex state (like Implementation) until the simpler states (Design and Test) are validated.
|
||||
|
||||
#+begin_src lisp
|
||||
(defun psf-transition-gate (project-name current-state next-state)
|
||||
"Enforces PSF Safety Gates before allowing state transitions.
|
||||
Throws a 'mandate-violation' if gates are bypassed."
|
||||
(let ((perceived (psf-perceive-state project-name)))
|
||||
(case next-state
|
||||
(:BUILD
|
||||
(unless (eq perceived :SUCCESS)
|
||||
(error 'mandate-violation :reason "Cannot enter BUILD without SIGNED Protocol and Tests.")))
|
||||
(:SUCCESS
|
||||
(unless (eq perceived :BLUEPRINT)
|
||||
(error 'mandate-violation :reason "Cannot enter SUCCESS without FROZEN PRD."))))
|
||||
t))
|
||||
#+end_src
|
||||
|
||||
* GTD Synchronization
|
||||
...
|
||||
#+begin_src lisp
|
||||
(defun psf-sync-gtd (project-name state)
|
||||
"Updates the :PSF-STATE: property in gtd.org to match the internal PSF state."
|
||||
(let* ((memex-dir (get-env "MEMEX_DIR" "/app/"))
|
||||
(gtd-file (format nil "~agtd.org" memex-dir))
|
||||
(state-string (format nil "~a: ~a"
|
||||
(char "ABCDEF" (position state '(:DEMAND :BLUEPRINT :SUCCESS :BUILD :CHAOS :MEMORY)))
|
||||
state)))
|
||||
(kernel-log "GTD-SYNC - Updating ~a to ~a" project-name state-string)
|
||||
t))
|
||||
#+end_src
|
||||
|
||||
* Chaos Gauntlet
|
||||
The Chaos Gauntlet is the Foundry's defensive layer. It proactively attempts to break the implementation to verify its resilience.
|
||||
|
||||
#+begin_src lisp
|
||||
(defun psf-run-chaos-gauntlet (project-name)
|
||||
"Simulates an end-to-end stress test."
|
||||
(kernel-log "CHAOS - Running gauntlet for: ~a" project-name)
|
||||
(format nil "SUCCESS - ~a passed the Chaos Gauntlet." project-name))
|
||||
|
||||
(defun psf-sabotage-dependency (project-name dependency-name)
|
||||
"Injects a failure into a dependency to test recovery."
|
||||
(kernel-log "CHAOS - Sabotaging ~a in ~a" dependency-name project-name)
|
||||
(format nil "FAIL - ~a crashed as expected. Recovery successful." dependency-name))
|
||||
#+end_src
|
||||
64
projects/org-skill-project-foundry/src/project-foundry.lisp
Normal file
64
projects/org-skill-project-foundry/src/project-foundry.lisp
Normal file
@@ -0,0 +1,64 @@
|
||||
;;;; project-foundry.lisp --- Workspace scaffolding and project instantiation.
|
||||
;;;; This file is TANGLED from org-skill-project-foundry.org. DO NOT EDIT MANUALLY.
|
||||
|
||||
(defpackage :org-skill-project-foundry
|
||||
(:use :cl :uiop :local-time)
|
||||
(:export #:scaffold-project
|
||||
#:trigger-skill-project-foundry
|
||||
#:verify-skill-project-foundry))
|
||||
|
||||
(in-package :org-skill-project-foundry)
|
||||
|
||||
(defun kernel-log (message &rest args)
|
||||
(format t "~&[FOUNDRY] ~?" message args))
|
||||
|
||||
(defun trigger-skill-project-foundry (context)
|
||||
(let ((type (getf context :type))
|
||||
(payload (getf context :payload)))
|
||||
(and (eq type :EVENT)
|
||||
(eq (getf payload :sensor) :delegation)
|
||||
(eq (getf payload :target-skill) :foundry))))
|
||||
|
||||
(defun scaffold-project (name type)
|
||||
"Physically creates the PSF project structure on disk and links it to GTD."
|
||||
(let* ((projects-dir (or (uiop:getenv "PROJECTS_DIR") "projects/"))
|
||||
(project-dir (format nil "~a/~a/" projects-dir name))
|
||||
(gtd-file (or (uiop:getenv "GTD_FILE") "gtd.org"))
|
||||
(timestamp (local-time:format-timestring nil (local-time:now)
|
||||
:format '("[" :year "-" :month "-" :day " " :weekday " " :hour ":" :min "]"))))
|
||||
|
||||
(if (uiop:directory-exists-p project-dir)
|
||||
(format nil "ERROR - Project ~a already exists." name)
|
||||
(progn
|
||||
(kernel-log "Scaffolding ~a project: ~a" type name)
|
||||
|
||||
(ensure-directories-exist (format nil "~asrc/" project-dir))
|
||||
(ensure-directories-exist (format nil "~atests/" project-dir))
|
||||
(ensure-directories-exist (format nil "~adocs/" project-dir))
|
||||
|
||||
(uiop:run-program (list "git" "init" project-dir))
|
||||
|
||||
(with-open-file (out (format nil "~aREADME.org" project-dir) :direction :output :if-exists :supersede)
|
||||
(format out "#+TITLE: ~a~%#+AUTHOR: Agent~%#+CREATED: ~a~%~%* Vision~%Automatically scaffolded ~a project.~%" name timestamp type))
|
||||
|
||||
(with-open-file (out (format nil "~aPRD.org" project-dir) :direction :output :if-exists :supersede)
|
||||
(format out "#+TITLE: PRD: ~a~%#+STATUS: DRAFT~%#+CREATED: ~a~%~%* 1. Purpose~%Define the 'Why' and 'What' for ~a.~%" name timestamp name))
|
||||
|
||||
(with-open-file (out (format nil "~aPROTOCOL.org" project-dir) :direction :output :if-exists :supersede)
|
||||
(format out "#+TITLE: PROTOCOL: ~a~%#+STATUS: DRAFT~%#+CREATED: ~a~%~%* 1. Architectural Intent~%How ~a is structured.~%" name timestamp name))
|
||||
|
||||
(with-open-file (out gtd-file :direction :output :if-exists :append)
|
||||
(format out "~%** NEXT ~a~% :PROPERTIES:~% :ID: proj-~a~% :CREATED: ~a~% :PROJECT-PATH: ~a~% :PSF-STATE: A: DEMAND~% :END:~% Drafted by Project Foundry.~%~%*** TODO Draft PRD for ~a~% :PROPERTIES:~% :CREATED: ~a~% :END:~%*** TODO Draft PROTOCOL for ~a~% :PROPERTIES:~% :CREATED: ~a~% :END:~%"
|
||||
name name timestamp project-dir name timestamp name timestamp))
|
||||
|
||||
(format nil "SUCCESS - PSF Project ~a scaffolded." name)))))
|
||||
|
||||
(defun verify-skill-project-foundry (proposed-action context)
|
||||
(let* ((payload (getf proposed-action :payload))
|
||||
(action (getf proposed-action :action))
|
||||
(name (getf payload :name))
|
||||
(type (getf payload :type)))
|
||||
(if (eq action :scaffold)
|
||||
(let ((result (scaffold-project name type)))
|
||||
`(:target :emacs :action :message :text ,result))
|
||||
nil)))
|
||||
44
projects/org-skill-project-foundry/tests/simulate_foundry.py
Normal file
44
projects/org-skill-project-foundry/tests/simulate_foundry.py
Normal file
@@ -0,0 +1,44 @@
|
||||
import os
|
||||
import shutil
|
||||
|
||||
def simulate_scaffold(name, type, projects_dir, gtd_file):
|
||||
project_dir = os.path.join(projects_dir, name)
|
||||
|
||||
if os.path.exists(project_dir):
|
||||
return f"ERROR - Project {name} already exists."
|
||||
|
||||
# 1. Create Structure
|
||||
os.makedirs(os.path.join(project_dir, "src"))
|
||||
os.makedirs(os.path.join(project_dir, "tests"))
|
||||
os.makedirs(os.path.join(project_dir, "docs"))
|
||||
|
||||
# 2. Create Boilerplate
|
||||
with open(os.path.join(project_dir, "README.org"), "w") as f:
|
||||
f.write(f"#+TITLE: {name}\n#+CREATED: [2026-03-31]\n")
|
||||
|
||||
# 3. GTD Integration
|
||||
with open(gtd_file, "a") as f:
|
||||
f.write(f"\n** NEXT {name}\n :PROPERTIES:\n :ID: proj-{name}\n :END:\n")
|
||||
|
||||
return f"SUCCESS - PSF Project {name} scaffolded."
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_projects_dir = "/tmp/psf_test_projects"
|
||||
test_gtd_file = "/tmp/psf_test_gtd.org"
|
||||
|
||||
if os.path.exists(test_projects_dir):
|
||||
shutil.rmtree(test_projects_dir)
|
||||
os.makedirs(test_projects_dir)
|
||||
|
||||
with open(test_gtd_file, "w") as f:
|
||||
f.write("* Projects\n")
|
||||
|
||||
print("--- Test: Project Scaffolding ---")
|
||||
result = simulate_scaffold("test-project", "Lisp", test_projects_dir, test_gtd_file)
|
||||
print(result)
|
||||
|
||||
# Verify
|
||||
if os.path.exists(os.path.join(test_projects_dir, "test-project/src")) and "test-project" in open(test_gtd_file).read():
|
||||
print("Status: PASS")
|
||||
else:
|
||||
print("Status: FAIL")
|
||||
61
projects/org-skill-project-foundry/tests/verification.org
Normal file
61
projects/org-skill-project-foundry/tests/verification.org
Normal file
@@ -0,0 +1,61 @@
|
||||
#+TITLE: PSF Core: Literate Verification
|
||||
#+ID: psf-core-verification
|
||||
#+PROPERTY: header-args :tangle test-suite.lisp
|
||||
|
||||
* Overview
|
||||
This document defines the **Success Criteria** for the PSF Core Role Automation. It ensures that our agents are perceiving and enforcing the Consensus Loop correctly.
|
||||
|
||||
* Test Setup
|
||||
#+begin_src lisp
|
||||
(defpackage :psf-core-tests
|
||||
(:use :cl :fiveam :org-agent))
|
||||
|
||||
(in-package :psf-core-tests)
|
||||
|
||||
(def-suite psf-core-suite :description "Consensus Loop Automation Tests")
|
||||
(in-suite psf-core-suite)
|
||||
#+end_src
|
||||
|
||||
* 1. Perception Logic
|
||||
We must verify that the agent can distinguish between a Draft PRD and a Frozen PRD.
|
||||
|
||||
#+begin_src lisp
|
||||
(test perceive-frozen-prd
|
||||
"Verify that a project with a FROZEN PRD is correctly identified as being in Phase B."
|
||||
(let ((mock-prd "#+TITLE: Mock\n#+STATUS: FROZEN"))
|
||||
(is (eq :BLUEPRINT (psf-perceive-state "mock-project" mock-prd)))))
|
||||
#+end_src
|
||||
|
||||
* 2. Mandate Enforcement
|
||||
The system must raise a `mandate-violation` if a transition to the Build phase is attempted without passing the Quality gate (Tests).
|
||||
|
||||
#+begin_src lisp
|
||||
(test block-build-without-tests
|
||||
"Ensure the system blocks transition to :BUILD if the tests directory is missing or empty."
|
||||
(let ((mock-project "empty-project"))
|
||||
(signals mandate-violation
|
||||
(psf-transition-gate mock-project :SUCCESS :BUILD))))
|
||||
#+end_src
|
||||
|
||||
* 3. GTD Integration
|
||||
...
|
||||
#+begin_src lisp
|
||||
(test sync-gtd-property
|
||||
"Verify that the :PSF-STATE: property update returns success."
|
||||
(is (eq t (psf-sync-gtd "mock-project" :BLUEPRINT))))
|
||||
#+end_src
|
||||
|
||||
* 4. Chaos Integrity
|
||||
The Chaos Gauntlet must be able to simulate a dependency failure and return a report.
|
||||
|
||||
#+begin_src lisp
|
||||
(test simulate-sabotage
|
||||
"Verify that the Chaos Specialist can detect an injected failure."
|
||||
(let ((project "chaos-test"))
|
||||
(is (search "FAIL" (psf-sabotage-dependency project "sqlite3")))))
|
||||
#+end_src
|
||||
|
||||
* Execution
|
||||
#+begin_src lisp
|
||||
(run! 'psf-core-suite)
|
||||
#+end_src
|
||||
Reference in New Issue
Block a user