Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions LifeOS/install/LifeOS/PULSE/Observability/observability.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export interface ObservabilityConfig {
// ── Path Construction ──

const HOME = process.env.HOME ?? ""
const LIFEOS_DIR = join(HOME, ".claude", "LifeOS")
const LIFEOS_DIR = join(HOME, ".claude", "LIFEOS")
const MEMORY_DIR = join(LIFEOS_DIR, "MEMORY")

const WORK_JSON_PATH = join(MEMORY_DIR, "STATE", "work.json")
Expand Down Expand Up @@ -142,7 +142,7 @@ function getDashboardDir(): string {
const dir = config.dashboard_dir ?? DEFAULT_DASHBOARD_DIR
// Resolve relative paths against Pulse directory
if (!dir.startsWith("/")) {
return join(HOME, ".claude", "LifeOS", "PULSE", dir)
return join(HOME, ".claude", "LIFEOS", "PULSE", dir)
}
return dir
}
Expand Down Expand Up @@ -1626,7 +1626,7 @@ function readDirMdFiles(dir: string): { name: string, content: string, sections:

function handleUserIndexApi(filter: string | null): Response {
try {
const LIFEOS_DIR = process.env.LIFEOS_DIR || join(process.env.HOME || "", ".claude", "LifeOS")
const LIFEOS_DIR = process.env.LIFEOS_DIR || join(process.env.HOME || "", ".claude", "LIFEOS")
const indexPath = join(LIFEOS_DIR, "PULSE", "state", "user-index.json")
const raw = Bun.file(indexPath)
if (!raw.size) {
Expand Down