update docs to reference ~/.consciousness/ paths
Update README, config example, and all documentation to reference the new ~/.consciousness/ directory layout instead of ~/.claude/.
This commit is contained in:
parent
c3cd27ec22
commit
2b6c68bab2
9 changed files with 15 additions and 15 deletions
|
|
@ -78,9 +78,9 @@ poc-memory daemon
|
|||
│ ├── staleness + lsof check for session end
|
||||
│ └── tracks which sessions have been extracted
|
||||
├── Status Store
|
||||
│ └── ~/.claude/memory/daemon-status.json
|
||||
│ └── ~/.consciousness/memory/daemon-status.json
|
||||
└── Logger
|
||||
└── structured log → ~/.claude/memory/daemon.log
|
||||
└── structured log → ~/.consciousness/memory/daemon.log
|
||||
```
|
||||
|
||||
### Scheduler
|
||||
|
|
|
|||
|
|
@ -190,7 +190,7 @@ threshold = 50 lines (adjustable)
|
|||
|
||||
Add to the check-attention.sh hook (or similar):
|
||||
```bash
|
||||
SCRATCH=~/.claude/memory/scratch.md
|
||||
SCRATCH=~/.consciousness/memory/scratch.md
|
||||
if [ -f "$SCRATCH" ]; then
|
||||
LINES=$(wc -l < "$SCRATCH")
|
||||
if [ "$LINES" -gt 50 ]; then
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Understanding which log to check is essential for debugging.
|
|||
## Log files
|
||||
|
||||
### daemon.log — structured event log
|
||||
- **Path**: `$data_dir/daemon.log` (default: `~/.claude/memory/daemon.log`)
|
||||
- **Path**: `$data_dir/daemon.log` (default: `~/.consciousness/memory/daemon.log`)
|
||||
- **Format**: JSONL — `{"ts", "job", "event", "detail"}`
|
||||
- **Written by**: `jobkit_daemon::event_log::log()`, wrapped by `log_event()` in daemon.rs
|
||||
- **Rotation**: truncates to last half when file exceeds 1MB
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue