Aevum As-Is Baseline

Date: 2026-04-16

Assessment type: Ground-truth repository baseline

Assessor: Codex

Scope rule: No codebase changes made

1. Executive Summary

Aevum today is a real iOS-first prototype with a meaningful local codebase, on-device persistence, visible UI flows, widgets, App Intents, and a partial localhost inference API. It is not yet the fully unified, deterministic, API-led, tri-surface operating system described in the target vision.

The strongest current working path is:

Dashboard voice/text input -> BehaviourIntelligenceLayer -> InstantProcessor -> MemoryEngine -> SwiftData local store

The weakest and highest-risk area is:

Pipeline-dependent features are implemented in code, but the central IntelligencePipeline is not booted from the normal app startup path. That makes several advertised capture and automation flows present-but-not-baseline-safe.

Current truth:

Overall program state:

2. Direct Ground-Truth Answers

2.1 Current Working Components

ItemStatusGround truth
---------
Aevum iPhone app existsYESReal iOS app target exists
Aevum iPad app existsYESSame iOS app, not separate iPad product
Aevum Mac app existsNONo macOS target found
Local API on localhostYES127.0.0.1:8080, single prompt endpoint
Notion integration active via APINOOAuth and sync are mocked
Apple Shortcuts actively logging dataNOIntents exist, but logging path depends on unbooted pipeline
Siri integration workingNOSiri/App Intent exists, but core behavior is stub-level

2.2 Thought Capture - Current Reality

Current thought capture is not one system. It is multiple parallel paths.

Path A: Dashboard voice/text

Status: This is the strongest current baseline path.

Path B: Capture Sheet / Import / Habit / Legacy

Status: Implemented, but not reliable as baseline because the pipeline is not booted in normal app startup.

Path C: Shortcut-triggered dictation

Status: Real and plausible.

Path D: Shortcut direct thought logging

Status: Not baseline-safe for same reason as Path B.

2.3 Data Storage - Current Reality

Primary storage is local.

Current storage layers:

Current answer:

2.4 Automation - Current Reality

What exists today:

What does not exist as a fully active baseline:

Current answer:

2.5 API - Current Reality

Current answer: Partial API

What exists:

What does not exist:

2.6 UI State

Current answer:

Reality:

2.7 Testing

Current answer:

Reality:

3. As-Is Architecture

3.1 Actual Current Topology

```text

[ iOS App UI ]

|-- Dashboard path -> BehaviourIntelligenceLayer -> InstantProcessor -> MemoryEngine -> SwiftData

|-- Capture/import/shortcut path -> IntelligencePipeline -> EventQueueActor -> inference/merge -> SwiftData

|-- On app appear -> Local API listener starts

|-- Widgets / App Intents / deep links -> app entry points

```

3.2 Actual Architectural Layers

UI / Surface layer

Orchestration / intelligence layer

Persistence layer

Integration layer

Inference / ML layer

4. Actual Feature Inventory

4.1 Product Surfaces Present

Current visible or shipped-like surfaces:

4.2 Actual Feature List With Status

FeatureStatusNotes
---------
Onboarding flowImplementedReal UI
Privacy gateImplementedReal UI
Biometric unlockImplementedReal UI/security layer
Dashboard orb inputImplementedReal voice/text interaction
Voice transcriptionImplementedUses Apple speech APIs
Manual text inputImplementedVia dashboard and capture sheet
Timeline viewImplementedReal local data-backed UI
Knowledge map viewImplementedReal UI over system inference nodes
Settings and togglesImplementedReal UI with state toggles
Widget quick voice launchImplementedDeep-link based
Daily brief widgetPartialPlaceholder/mock content
Local APIPartialSingle inference endpoint
Native calendar contextPartialReal code path exists
Google calendar syncStubMock token and mock event injection
Outlook syncStubMock token and mock event injection
Notion syncStubMock token and mock event injection
Shortcut: start dictationImplementedStrongest App Intent path
Shortcut: log thoughtPartial/riskyDepends on pipeline boot
Siri conversational intentStubDialog only
Import documents/OCR/audioPartial/riskyDepends on pipeline boot
Habit capturePartial/riskyDepends on pipeline boot
Legacy export/managementPartial/riskyMostly scaffolded
Daily background synthesisPartialRegistered, not proven active
Cross-device parityNot achievediPhone/iPad only, Mac absent
Full local deterministic API systemNot achievedVision ahead of reality

5. Real Data Flow

5.1 Strongest Working Flow

```text

User voice/text on Dashboard

->

BehaviourIntelligenceLayer

->

PhiEngine analysis

->

InstantProcessor

->

MemoryEngine

->

SwiftData

->

Dashboard/Timeline/Knowledge Map visibility

```

5.2 Secondary Event Queue Flow

```text

Capture/import/shortcut input

->

IntelligencePipeline.enqueue

->

AevumEvent persisted

->

EventQueueActor processes event

->

validation/compression/merge

->

MemoryEntry updates

```

Risk: not baseline-safe because the pipeline boot binding is not in the normal startup path.

5.3 Local API Flow

```text

Client -> POST /aevum -> prompt payload

->

local auth header check

->

PhiEngine.extractConcepts

->

JSON response text

```

This is inference-serving, not system-of-record CRUD.

6. Existing Integrations

6.1 Real integrations

6.2 Partial integrations

6.3 Stub/mock integrations

6.4 Explicit integration truth

Notion today is not an active production integration. It is an OAuth shell plus mock token and mock event injection.

7. Current API Baseline

7.1 What exists

7.2 What does not exist

7.3 PM conclusion

The current API should be treated as a narrow developer/local inference endpoint, not the system API contract.

8. Device Behavior Baseline

8.1 iPhone

8.2 iPad

8.3 Mac

9. Automation Baseline

9.1 What is actually automated now

9.2 What is not actually established

9.3 PM conclusion

Automation exists as engineering scaffolding, not as a complete operational system.

10. Testing Baseline

10.1 What exists

- CoreMemory

- DecisionEngine

- IntelligenceEngine

- CloudSyncEngine

- SecurityLayer

10.2 What does not exist

10.3 Test maturity assessment

LayerStatus
------
Unit / module testsSome meaningful coverage
Integration testsLimited and inconsistent
UI automationAbsent
End-to-end automationAbsent
Release validation systemAbsent

11. NFR Baseline

11.1 Local-first

Status: Partial

Reality:

11.2 Determinism

Status: Partial

Reality:

11.3 Device independence

Status: Not achieved

Reality:

11.4 Security / privacy

Status: Moderate partial implementation

Reality:

11.5 Observability

Status: Partial

Reality:

11.6 Testability

Status: Partial

Reality:

12. BRD vs Reality Delta

12.1 What the vision assumes but repo does not yet prove

12.2 What the repo really is

13. Scope, Time, Money View

13.1 What is complete enough to preserve

13.2 What is dangerous to assume is complete

13.3 Recommended scope baseline

Treat the program today as:

Phase 0: iOS local intelligence prototype

Do not budget or plan it as:

Phase 2/3 multi-device operating system with production integrations

13.4 Cost-control recommendation

Freeze current baseline into documentation first, then choose one of these tracks:

Track A: Stabilize iPhone core only

Track B: Build API-led architecture

Track C: Expand device matrix

Best PM sequence:

  1. Stabilize baseline
  2. Define canonical architecture
  3. Re-scope integrations
  4. Add test system
  5. Then expand surfaces

14. Readiness Assessment

AreaStatus
------
Product vision readinessHigh
Code reality readinessMedium-low
Architecture coherenceMedium-low
Integration readinessLow
Test readinessLow
Release readinessLow
Documentation readiness after this baselineHigh

15. Final PM Conclusion

You currently have a serious prototype, not yet a finished operating system.

The repo contains enough real implementation to justify continued investment, but not enough architectural consistency to scale safely without a reset of ground truth. The correct next management move is not feature expansion. It is architectural reconciliation:

Reality -> documented baseline -> controlled scope -> stabilization -> selective build-out

That is the financially safest path.