Files
2125_NBB/SESSION_INDEX.md
2026-07-09 12:55:00 -04:00

48 lines
1.5 KiB
Markdown
Executable File

# SuperDave AI 2.0 — Session Export Index
**Date**: Sat Jun 13 2026
**Total Export Size**: ~140KB across 3 files
## Files
| File | Size | Contents |
|------|------|----------|
| SESSION_PART1.md | ~14KB | Header, TOC, Architecture, CLAUDE.md, AGENTS.md |
| SESSION_PART2_SOURCES.md | ~126KB | All 10 source files with full code |
| SESSION_PART3_META.md | ~10KB | Key decisions, next steps, context log |
## Quick Links
- **Server**: /home/dave/server.py (mounted at /glyphs for dashboard)
- **Dual Layer Package**: /home/dave/superdave/dual_layer/
- **Dashboard**: /home/dave/superdave/glyph_dashboard/index.html
- **Integration**: /home/dave/superdave/dual_layer_integration.py
- **Model Integration**: /home/dave/superdave/glyph_model_integration.py
- **Tests**: /home/dave/superdave/test_multi_glyph_resonance.py
- **Usage Guide**: /home/dave/superdave/DUAL_LAYER_USAGE_GUIDE.md
## Critical Numbers
- G001: 152 superpowers, 387.95x boost, priority 10.0
- VRAM: Warning 6.5GB, Critical 7.5GB, Total 8.0GB (GTX1080)
- 9 specialized types, 600 glyphs cached
- 5 API endpoints verified (200 OK)
## Key Commands
```bash
# Start server
python3 /home/dave/server.py
# Check symbolic status
curl http://localhost:8000/api/symbolic/status
# Activate glyph
curl -X POST http://localhost:8000/api/symbolic/activate \
-H "Content-Type: application/json" \
-d '{"intent": "root authority", "request_type": "chat"}'
# Dashboard (in browser)
http://localhost:8000/glyphs/index.html
```