Files
ATOCore/docs/master-plan-status.md
Anto01 ba36a28453 docs: sprint documentation — ledger + master-plan sync
Updated DEV-LEDGER orientation with post-sprint state:
- live_sha 775960c, tests 303, harness 17/18 on live
- interactions 234 (192 claude-code + 38 openclaw)
- project_state_entries 110 across 6 projects
- nightly pipeline now includes auto-promote, harness, summary

Updated master-plan-status.md "What Is Real Today" to match
actual 2026-04-16 state. Phase 10 moved from "Next" to
operational. New "Now" priorities: observe pipeline, knowledge
density, multi-model triage, fix p04-constraints.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-16 14:08:19 -04:00

10 KiB

AtoCore Master Plan Status

Current Position

AtoCore is currently between Phase 7 and Phase 8.

The platform is no longer just a proof of concept. The local engine exists, the core correctness pass is complete, Dalidou hosts the canonical runtime and machine database, and OpenClaw on the T420 can consume AtoCore safely in read-only additive mode.

Phase Status

Completed

  • Phase 0 - Foundation
  • Phase 0.5 - Proof of Concept
  • Phase 1 - Ingestion

Baseline Complete

  • Phase 2 - Memory Core
  • Phase 3 - Retrieval
  • Phase 5 - Project State
  • Phase 7 - Context Builder

Baseline Complete

  • Phase 4 - Identity / Preferences. As of 2026-04-12: 3 identity memories (role, projects, infrastructure) and 3 preference memories (no API keys, multi-model collab, action-over-discussion) seeded on live Dalidou. Identity/preference band surfaces in context packs at 5% budget ratio. Future identity/preference extraction happens organically via the nightly LLM extraction pipeline.

  • Phase 8 - OpenClaw Integration (baseline only, not primary surface). As of 2026-04-15 the T420 OpenClaw helper (t420-openclaw/atocore.py) is verified end-to-end against live Dalidou: health check, auto-context with project detection, Trusted Project State surfacing, project-memory band, fail-open on unreachable host. Tested from both the development machine and the T420 via SSH. Scope is narrow: 14 request shapes against ~44 server routes, predominantly read-oriented plus POST/DELETE /project/state and POST /ingest/sources. Memory management, interactions capture (covered separately by the OpenClaw capture plugin), admin/backup, entities, triage, and extraction write paths remain out of this client's surface by design — they are scoped to the operator client (scripts/atocore_client.py) per the read-heavy additive integration model. "Primary integration" is therefore overclaim; "baseline read + project-state write helper" is the accurate framing.

Baseline Complete

  • Phase 9 - Reflection (all three foundation commits landed: A capture, B reinforcement, C candidate extraction + review queue). As of 2026-04-11 the capture → reinforce half runs automatically on every Stop-hook capture (length-aware token-overlap matcher handles paragraph-length memories), and project-scoped memories now reach the context pack via a dedicated --- Project Memories --- band between identity/preference and retrieved chunks. The extract half is still a manual / batch flow by design (scripts/atocore_client.py batch-extract + triage). First live batch-extract run over 42 captured interactions produced 1 candidate (rule extractor is conservative and keys on structural cues like ## Decision: headings that rarely appear in conversational LLM responses) — extractor tuning is a known follow-up.

Not Yet Complete In The Intended Sense

  • Phase 6 - AtoDrive
  • Phase 10 - Write-back
  • Phase 11 - Multi-model
  • Phase 12 - Evaluation
  • Phase 13 - Hardening

Engineering Layer Planning Sprint

Status: complete. All 8 architecture docs are drafted. The engineering layer is now ready for V1 implementation against the active project set.

The next concrete next step is the V1 implementation sprint, which should follow engineering-v1-acceptance.md as its checklist, and must apply the project-identity-canonicalization contract at every new service-layer entry point.

LLM Client Integration

A separate but related architectural concern: how AtoCore is reachable from many different LLM client contexts (OpenClaw, Claude Code, future Codex skills, future MCP server). The layering rule is documented in:

  • llm-client-integration.md — three-layer shape: HTTP API → shared operator client (scripts/atocore_client.py) → per-agent thin frontends; the shared client is the canonical backbone every new client should shell out to instead of reimplementing HTTP calls

This sits implicitly between Phase 8 (OpenClaw) and Phase 11 (multi-model). Memory-review and engineering-entity commands are deferred from the shared client until their workflows are exercised.

What Is Real Today (updated 2026-04-16)

  • canonical AtoCore runtime on Dalidou (775960c, deploy.sh verified)
  • 33,253 vectors across 6 registered projects
  • 234 captured interactions (192 claude-code, 38 openclaw, 4 test)
  • 6 registered projects:
    • p04-gigabit (483 docs, 15 state entries)
    • p05-interferometer (109 docs, 18 state entries)
    • p06-polisher (564 docs, 19 state entries)
    • atomizer-v2 (568 docs, 5 state entries)
    • abb-space (6 state entries)
    • atocore (drive source, 47 state entries)
  • 110 Trusted Project State entries across all projects (decisions, requirements, facts, contacts, milestones)
  • 84 active memories (31 project, 23 knowledge, 10 episodic, 8 adaptation, 7 preference, 5 identity)
  • context pack assembly with 4 tiers: Trusted Project State > identity/preference > project memories > retrieved chunks
  • query-relevance memory ranking with overlap-density scoring
  • retrieval eval harness: 18 fixtures, 17/18 passing on live
  • 303 tests passing
  • nightly pipeline: backup → cleanup → rsync → OpenClaw import → vault refresh → extract → triage → auto-promote/expire → weekly synth/lint → retrieval harnesspipeline summary to project state
  • Phase 10 operational: reinforcement-based auto-promotion (ref_count ≥ 3, confidence ≥ 0.7) + stale candidate expiry (14 days unreinforced)
  • pipeline health visible in dashboard: interaction totals by client, pipeline last_run, harness results, triage stats
  • off-host backup to clawdbot (T420) via rsync
  • both Claude Code and OpenClaw capture interactions to AtoCore (OpenClaw via before_agent_start + llm_output plugin, verified live)
  • DEV-LEDGER.md as shared operating memory between Claude and Codex
  • observability dashboard at GET /admin/dashboard

Now

These are the current practical priorities.

  1. Observe the enhanced pipeline — let the nightly pipeline run for a week with the new harness + summary + auto-promote steps. Check the dashboard daily. Verify pipeline summary populates correctly.
  2. Knowledge density — run batch extraction over the full 234 interactions (--since 2026-01-01) to mine the backlog for knowledge. Target: 100+ active memories.
  3. Multi-model triage (Phase 11 entry) — switch auto-triage to a different model than the extractor for independent validation
  4. Fix p04-constraints harness failure — retrieval doesn't surface "Zerodur" for p04 constraint queries. Investigate if it's a missing memory or retrieval ranking issue.

Next

These are the next major layers after the current stabilization pass.

  1. Phase 6 AtoDrive — clarify Google Drive as a trusted operational source and ingest from it
  2. Phase 13 Hardening — Chroma backup policy, monitoring, alerting, failure visibility beyond log files
  3. Engineering V1 implementation sprint — once knowledge density is sufficient and the pipeline feels boring and dependable

Later

These are the deliberate future expansions already supported by the architecture direction, but not yet ready for immediate implementation.

  1. Minimal engineering knowledge layer
    • driven by docs/architecture/engineering-knowledge-hybrid-architecture.md
    • guided by docs/architecture/engineering-ontology-v1.md
  2. Minimal typed objects and relationships
  3. Evidence-linking and provenance-rich structured records
  4. Human mirror generation from structured state

Not Yet

These remain intentionally deferred.

  • automatic write-back from OpenClaw into AtoCore — OpenClaw capture plugin now exists (openclaw-plugins/atocore-capture/), interactions flow. Write-back of promoted memories back to OpenClaw's own memory system is still deferred.
  • automatic memory promotion — Phase 10 complete: auto-triage handles extraction candidates, reinforcement-based auto-promotion graduates candidates referenced 3+ times to active, stale candidates expire after 14 days unreinforced.
  • reflection loop integration — fully operational: capture (both clients) → reinforce (automatic) → extract (nightly cron, sonnet) → auto-triage (nightly, sonnet) → only needs_human reaches the user.
  • replacing OpenClaw's own memory system
  • live machine-DB sync between machines
  • full ontology / graph expansion before the current baseline is stable

Working Rule

The next sensible implementation threshold for the engineering ontology work is:

  • after the current ingestion, retrieval, registry, OpenClaw helper, organic routing, and backup baseline feels boring and dependable

Until then, the architecture docs should shape decisions, not force premature schema work.