Files
lucidia-core/rituals/activation_dashboard.sh
Alexa Louise 6afdb4b148 Initial extraction from blackroad-prism-console
Lucidia Core - AI reasoning engines for specialized domains:
- Physicist (867 lines) - energy modeling, force calculations
- Mathematician (760 lines) - symbolic computation, proofs
- Geologist (654 lines) - terrain modeling, stratigraphy
- Engineer (599 lines) - structural analysis, optimization
- Painter (583 lines) - visual generation, graphics
- Chemist (569 lines) - molecular analysis, reactions
- Analyst (505 lines) - pattern recognition, insights
- Plus: architect, researcher, mediator, speaker, poet, navigator

Features:
- FastAPI wrapper with REST endpoints for each agent
- CLI with `lucidia list`, `lucidia run`, `lucidia api`
- Codex YAML configurations for agent personalities
- Quantum engine extensions

12,512 lines of Python across 91 files.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 08:00:53 -06:00

35 lines
706 B
Bash
Executable File

#!/usr/bin/env bash
map="/workspace/blackroad-prism-console/ritual/activation_map.md"
if [ ! -f "$map" ]; then
echo "No activation map yet. Run the generator first."
exit 1
fi
format_map() {
sed \
-e 's/^# /\n== /' \
-e 's/^## /\n— /' \
-e 's/^• / * /' \
-e 's/^\*\*\(.*\)\*\*/\1:'
}
render_dashboard() {
clear
echo "🜁 Lucidia Activation • $(date -u +"%Y-%m-%d %H:%M:%SZ")"
echo "-----------------------------------------------------"
grep -E '^(#|##|•| -|\*\*)|^$' "$map" | format_map
echo
}
render_dashboard
echo "[q] quit [r] refresh"
while read -rsn1 key; do
case "$key" in
q)
break
;;
r)
render_dashboard
;;
esac
done