Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Releases/v5.0.0/.claude/PAI/TOOLS/DASchedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { readFileSync, writeFileSync, appendFileSync, existsSync, mkdirSync } fr

const HOME = process.env.HOME ?? "~"
const PAI_DIR = join(HOME, ".claude", "PAI")
const TASKS_DIR = join(PAI_DIR, "Pulse", "state", "da")
const TASKS_DIR = join(PAI_DIR, "PULSE", "state", "da")
const TASKS_PATH = join(TASKS_DIR, "scheduled-tasks.jsonl")

// ── Types ──
Expand Down
2 changes: 1 addition & 1 deletion Releases/v5.0.0/.claude/PAI/TOOLS/MemoryRetriever.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ function extractExcerpt(note: KnowledgeNote, queryTerms: string[]): string {
// ============================================================================

function compress(text: string, budget: number): string {
const inferPath = path.join(PAI_DIR, "Tools", "Inference.ts");
const inferPath = path.join(PAI_DIR, "TOOLS", "Inference.ts");

if (!fs.existsSync(inferPath)) {
// Fallback: truncate to approximate token count
Expand Down
2 changes: 1 addition & 1 deletion Releases/v5.0.0/.claude/PAI/TOOLS/pai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { join, basename } from "path";
const CLAUDE_DIR = join(homedir(), ".claude");
const MCP_DIR = join(CLAUDE_DIR, "MCPs");
const ACTIVE_MCP = join(CLAUDE_DIR, ".mcp.json");
const BANNER_SCRIPT = join(homedir(), ".claude", "PAI", "Tools", "Banner.ts");
const BANNER_SCRIPT = join(homedir(), ".claude", "PAI", "TOOLS", "Banner.ts");
const VOICE_SERVER = "http://localhost:31337/notify/personality";
const WALLPAPER_DIR = join(homedir(), "Projects", "Wallpaper");
// Note: RAW archiving removed - Claude Code handles its own cleanup (30-day retention in projects/)
Expand Down
Loading