vault backup: 2026-03-03 06:22:17

This commit is contained in:
AlexAI
2026-03-03 06:22:17 -06:00
parent 514ce9d7c3
commit 1fea284922
2 changed files with 41 additions and 1 deletions

View File

@@ -19,7 +19,7 @@
| **Mission Control Python** | ✅ Live | `memory/projects/mission-control-python.md` | "dashboard", "mission control", "python", "flask" | | **Mission Control Python** | ✅ Live | `memory/projects/mission-control-python.md` | "dashboard", "mission control", "python", "flask" |
| **Proton Mail Bridge** | ✅ Functional | `memory/projects/proton-mail-bridge.md` | "proton", "email", "imap", "smtp", "mail" | | **Proton Mail Bridge** | ✅ Functional | `memory/projects/proton-mail-bridge.md` | "proton", "email", "imap", "smtp", "mail" |
| **Coding Workflow** | ✅ Active | `memory/projects/coding-workflow.md` | "coding", "git", "repo", "workflow" | | **Coding Workflow** | ✅ Active | `memory/projects/coding-workflow.md` | "coding", "git", "repo", "workflow" |
| **Memory System** | ✅ Active | `memory/projects/memory-system.md` | "memory", "database", "backup", "sqlite" | | **Memory System** | ✅ **Supermonkey** | `memory/projects/memory-system.md` | "memory", "database", "backup", "sqlite", "vector", "embeddings" |
| **Discord Voice Bot** | ✅ Complete | `memory/projects/discord-voice-bot.md` | "voice bot", "glados", "TTS", "STT" | | **Discord Voice Bot** | ✅ Complete | `memory/projects/discord-voice-bot.md` | "voice bot", "glados", "TTS", "STT" |
| **Daily Notes Automation** | ✅ Active | `Obsidian/Daily Notes/` | "daily notes", "evening", "template" | | **Daily Notes Automation** | ✅ Active | `Obsidian/Daily Notes/` | "daily notes", "evening", "template" |
| **Workspace Git Backup** | ✅ Active | `gitea.lasuca.com/admin/openclaw-workspace` | "backup", "git", "gitea" | | **Workspace Git Backup** | ✅ Active | `gitea.lasuca.com/admin/openclaw-workspace` | "backup", "git", "gitea" |
@@ -102,9 +102,39 @@
|--------|----------|----------| |--------|----------|----------|
| **Daily Notes** | `memory/2026-*.md` | "What happened on [date]?" | | **Daily Notes** | `memory/2026-*.md` | "What happened on [date]?" |
| **SQLite DB** | `~/.openclaw/memory.db` | "What tasks are pending?" (structured query) | | **SQLite DB** | `~/.openclaw/memory.db` | "What tasks are pending?" (structured query) |
| **Vector Search** | `~/.openclaw/memory.db``memory_embeddings` | Semantic search across all memory |
| **Workspace Context** | `workspace-context.md` | Current conversation, in-progress | | **Workspace Context** | `workspace-context.md` | Current conversation, in-progress |
| **Supermemory** | Cloud backup | Disaster recovery | | **Supermemory** | Cloud backup | Disaster recovery |
### Vector Search (NEW 2026-03-02)
**Replaces:** Supermemory embedding API (unreliable)
**How it works:**
1. Daily notes → Ollama (nomic-embed-text) → 768-dim vectors
2. Stored in SQLite via sqlite-vector extension
3. Cosine similarity search for semantic retrieval
**Tools:**
```powershell
# Search memories
python tools/search_memories.py "your query"
# Manual snapshot
python tools/session_snapshotter.py "summary text"
```
**Database:**
- Table: `memory_embeddings` (1,185+ entries)
- Columns: source_type, source_path, content_text, embedding (BLOB)
- Extension: `sqlite-vector` (sqliteai)
**Cron Jobs:**
- Daily: `0 3 * * *` → Processes yesterday's memory file
- Session: Every 15 messages → Real-time conversation capture
Source: See daily note `2026-03-02.md` for full details
--- ---
## Security Update: Obsidian Write Workflow (2026-02-27) ## Security Update: Obsidian Write Workflow (2026-02-27)

View File

@@ -0,0 +1,10 @@
# OpenClaw Sync - 2026-03-03
## Files Synced
- Tools Reference.md (from TOOLS.md)
- MEMORY Index.md (from MEMORY.md)
## Notes
Last updated: 06:00
---