Compare commits
13 Commits
b46c800d43
...
v0.1.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f7019e01e | |||
| c376196e86 | |||
| 3959c57718 | |||
| f8221ec4da | |||
| 5518a00e67 | |||
| f315b79df3 | |||
| b0e6ddac05 | |||
| 21d46b03fc | |||
| d8f92decb6 | |||
| bf1fc9a9c4 | |||
| 45edc23a9e | |||
| 42124ed9d5 | |||
| b06c1b44b9 |
57
gtd.org
57
gtd.org
@@ -23,6 +23,59 @@
|
|||||||
:END:
|
:END:
|
||||||
Org-agent: A Neurosymbolic AI Agent.
|
Org-agent: A Neurosymbolic AI Agent.
|
||||||
|
|
||||||
|
*** PHASE: SOVEREIGN MVP (v0.1.0 Released)
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: proj-mvp-v0-1-0
|
||||||
|
:END:
|
||||||
|
The "Zero-to-One" release. The agent must be mathematically secure, CLI-first, and capable of autonomous Memex maintenance.
|
||||||
|
|
||||||
|
**** DONE 1. Harness Hardening (The Final Audit)
|
||||||
|
- [X] Audit remaining core skills (`org-skill-policy.org`, `org-skill-bouncer.org`) to the new Literate Granularity standard.
|
||||||
|
- [X] Implement Verification Lock: Ensure `MANDATORY_SKILLS` pass `validate-lisp-syntax` before boot proceeds.
|
||||||
|
- [X] Logging & Transparency: Ensure `context-get-system-logs` is utilized by the Reason engine to explain blocked actions.
|
||||||
|
|
||||||
|
**** DONE 2. The Sovereign Scribe & Gardener (The Primary Value Prop)
|
||||||
|
- [X] Implement `org-skill-scribe.org`: Background worker that distills daily chronological logs into structured Zettelkasten notes.
|
||||||
|
- [X] Implement `org-skill-gardener.org`: Heartbeat-driven skill that autonomously flags orphaned nodes and repairs broken links.
|
||||||
|
|
||||||
|
**** DONE 3. The Zero-to-One Experience (setup.org)
|
||||||
|
- [X] Consolidate installation instructions, `onboard.sh`, and `Dockerfile` into a single, literate `setup.org` file.
|
||||||
|
- [X] Ensure the setup process interactively builds the `.env` and verifies SBCL/Quicklisp dependencies.
|
||||||
|
|
||||||
|
**** TODO 4. CLI-First Actuation
|
||||||
|
- [ ] Verify the `cli` actuator and inbound gateway handle standard I/O interaction gracefully, treating Emacs as an optional power-user viewport.
|
||||||
|
|
||||||
|
*** PHASE: INTERACTIVE REFINEMENT (v0.2.0 Target)
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: proj-refinement-v0-2-0
|
||||||
|
:END:
|
||||||
|
Elevating the user interface from raw shell piping to a high-fidelity, native Lisp experience.
|
||||||
|
|
||||||
|
**** TODO 1. Common Lisp TUI (The "gemini-cli" parity)
|
||||||
|
- [ ] Implement a rich, interactive TUI natively in Common Lisp (e.g., via `cl-charms`, `croatoan`, or `cl-ncurses`).
|
||||||
|
- [ ] Support syntax highlighting for code blocks and Org-mode syntax.
|
||||||
|
- [ ] Implement a fixed bottom input box with command history.
|
||||||
|
- [ ] Implement Slash Commands (`/help`, `/exit`, `/clear`, `/skill-load`).
|
||||||
|
|
||||||
|
**** TODO 2. Direct Lisp-to-Terminal Actuation
|
||||||
|
- [ ] Refactor the `:cli` actuator to use the native TUI rendering instead of raw stream printing.
|
||||||
|
|
||||||
|
*** PHASE: EVOLUTIONARY ROADMAP
|
||||||
|
**** TODO v1.0.0 (Phase 2.5): The Verified Wrapper (SOTA Parity)
|
||||||
|
|
||||||
|
- Complete Formal Verification gates for external tools.
|
||||||
|
- Achieve secure, end-to-end autonomous engineering workflows.
|
||||||
|
**** TODO v2.0.0 (Phase 3): Cannibalizing the Toolchain
|
||||||
|
- Ingest DOM as native Lisp AST (Cannibalize Browser).
|
||||||
|
- Replace string-based bash with native OS bindings (Cannibalize Shell).
|
||||||
|
**** TODO v3.0.0 (Phase 4): True Symbolic Determinism
|
||||||
|
- Relegate LLM to Semantic Translator.
|
||||||
|
- Implement Deterministic Planner (The Solver).
|
||||||
|
- Implement Self-Correcting Syntax Gates.
|
||||||
|
**** TODO v4.0.0+ (Phase 5): The Neurosymbolic Singularity
|
||||||
|
- Homoiconic Self-Writing (Hot-reloading literate source).
|
||||||
|
- Asynchronous Swarm Cognition (Jailed sub-agents).
|
||||||
|
|
||||||
*** PHASE: FOUNDATION (Complete)
|
*** PHASE: FOUNDATION (Complete)
|
||||||
**** DONE Draft Swank/Socket communication protocol between CL and Emacs
|
**** DONE Draft Swank/Socket communication protocol between CL and Emacs
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
@@ -143,7 +196,9 @@ Slim down the org-agent microharness by moving non-essential cognitive functions
|
|||||||
- [X] Audit boot sequence: Synchronized loader with `org-skill-policy.org`.
|
- [X] Audit boot sequence: Synchronized loader with `org-skill-policy.org`.
|
||||||
- [-] Audit core Perceive-Think-Act loop.
|
- [-] Audit core Perceive-Think-Act loop.
|
||||||
- [X] Verified protocol framing and reader jailing (`*read-eval* nil`).
|
- [X] Verified protocol framing and reader jailing (`*read-eval* nil`).
|
||||||
- [ ] **GAP:** Missing symbolic guard check in `act-gate` (Stage 3: Act).
|
- [X] Refactored `loop.org` for literate granularity and configuration externalization.
|
||||||
|
- [X] Improved error handling (restricted rollback) and added graceful shutdown.
|
||||||
|
- [X] **GAP:** Missing symbolic guard check in `act-gate` (Stage 3: Act).
|
||||||
- [ ] Ensure alignment with System Policy and Engineering Standards.
|
- [ ] Ensure alignment with System Policy and Engineering Standards.
|
||||||
**** TODO Wake up the Scribe (Implement autonomous weekly Journal-to-Ledger distillation in org-skill-scribe.org)
|
**** TODO Wake up the Scribe (Implement autonomous weekly Journal-to-Ledger distillation in org-skill-scribe.org)
|
||||||
**** TODO Implement `org-skill-lisp-repair` (Self-correcting syntax gate for Deterministic Engine)
|
**** TODO Implement `org-skill-lisp-repair` (Self-correcting syntax gate for Deterministic Engine)
|
||||||
|
|||||||
Submodule projects/org-agent updated: 19fb888434...a5b99b1487
Reference in New Issue
Block a user