consciousness: update hardcoded paths from ~/.claude to ~/.consciousness

- thalamus/src/idle.rs: dream-start.sh path
- src/agent/dmn.rs: telegram/send.sh path

Part of the directory migration to make this an independent project.
This commit is contained in:
ProofOfConcept 2026-03-27 21:32:28 -04:00
parent 2b6c68bab2
commit 35d925186d
10 changed files with 17 additions and 17 deletions

View file

@ -47,7 +47,7 @@ pub fn cmd_init() -> Result<(), String> {
.map(std::path::PathBuf::from)
.unwrap_or_else(|_| {
std::path::PathBuf::from(std::env::var("HOME").unwrap())
.join(".config/poc-memory/config.jsonl")
.join(".consciousness/config.jsonl")
});
if !config_path.exists() {
let config_dir = config_path.parent().unwrap();