Commit Graph

10 Commits

Author SHA1 Message Date
Claude
d8bec238d1 Engram: add world_state table, redesign sitrep() for context safety
sitrep() now returns world_state + active session one-liners only.
Detailed logs available via get_session_logs() when needed.
Initial world state written documenting full Muse ecosystem.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-20 14:15:41 +00:00
Symbiont
5565f29c17 Rename sessions → Engram: persistent memory across Claude instances
Engram is the physical trace a memory leaves in neural tissue.
Every Claude session now writes its engrams to /data/symbiont/engram.db.

Changes:
- sessions.py → engram.py with class Engram (SessionRegistry alias kept)
- sessions.db → engram.db
- CLAUDE.md updated to use Engram
- Genesis session registered with full build history

Muse ecosystem: Cortex + Dendrite + Symbiont + Engram

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-20 13:45:34 +00:00
Symbiont
18c4dfa308 Add session registry + CLAUDE.md bootstrap
- sessions.py: SQLite registry for cross-session awareness
- CLAUDE.md: bootstrap context for every new Claude instance
- api.py: /sitrep and /sessions endpoints, task dispatch logs sessions
- Resource locking to prevent concurrent modification conflicts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-20 13:38:46 +00:00
Symbiont
9034536775 Add web.py: Dendrite integration for web perception
Provides fetch_page, take_screenshot, execute_js, search_web,
and BrowserSession for multi-step interactions. Uses localhost
for speed since Dendrite runs on the same box.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 20:14:16 +00:00
Symbiont
7afc878b3b Heartbeat: auto-detect and commit skill changes
Now watches /data/skills/ for changes on every heartbeat tick.
Commits and re-packages automatically.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 20:03:21 +00:00
Symbiont
dd91089be0 Fix StartLimit directives in service file (move to [Unit])
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 19:42:25 +00:00
Symbiont
b7e026acc6 Add life support: systemd services + heartbeat timer
- symbiont-api.service: always-on API server, auto-restart on crash
- symbiont-heartbeat.timer: 5-min health checks + queue processing
- heartbeat.py: CLI auth check, disk check, ledger stats, queue drain

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 19:41:19 +00:00
Symbiont
71041b92b1 Fix dispatcher: pipe via stdin, use real cost from CLI JSON
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 19:33:09 +00:00
Symbiont
49f73e5b46 Fix CLI flags: remove --max-tokens, add --dangerously-skip-permissions
Claude Code CLI uses positional args for prompts, not --prompt flag.
Also enables full access mode so orchestrator runs without permission prompts.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 19:32:00 +00:00
Symbiont
bd8be87a65 Initial scaffold: router, dispatcher, ledger, scheduler, API
Core orchestrator for self-sustaining AI agent:
- Dispatcher: talks to Claude Code CLI with model tier selection
- Router: classifies tasks via Haiku, routes to cheapest capable model
- Scheduler: queue management + systemd self-wake timers
- API: FastAPI endpoints for task execution and monitoring
- Ledger: JSONL cost tracking for every inference call

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 19:21:07 +00:00