refactor: split doctor into modules
This commit is contained in:
41
src/commands/doctor-workspace.ts
Normal file
41
src/commands/doctor-workspace.ts
Normal file
@@ -0,0 +1,41 @@
|
||||
import fs from "node:fs";
|
||||
import path from "node:path";
|
||||
|
||||
import { DEFAULT_AGENTS_FILENAME } from "../agents/workspace.js";
|
||||
|
||||
export const MEMORY_SYSTEM_PROMPT = [
|
||||
"Memory system not found in workspace.",
|
||||
"Paste this into your agent:",
|
||||
"",
|
||||
"Install the memory system by applying:",
|
||||
"https://github.com/clawdbot/clawdbot/commit/9ffea23f31ca1df5183b25668f8f814bee0fb34e",
|
||||
"https://github.com/clawdbot/clawdbot/commit/7d1fee70e76f2f634f1b41fca927ee663914183a",
|
||||
].join("\n");
|
||||
|
||||
export async function shouldSuggestMemorySystem(
|
||||
workspaceDir: string,
|
||||
): Promise<boolean> {
|
||||
const memoryPaths = [
|
||||
path.join(workspaceDir, "MEMORY.md"),
|
||||
path.join(workspaceDir, "memory.md"),
|
||||
];
|
||||
|
||||
for (const memoryPath of memoryPaths) {
|
||||
try {
|
||||
await fs.promises.access(memoryPath);
|
||||
return false;
|
||||
} catch {
|
||||
// keep scanning
|
||||
}
|
||||
}
|
||||
|
||||
const agentsPath = path.join(workspaceDir, DEFAULT_AGENTS_FILENAME);
|
||||
try {
|
||||
const content = await fs.promises.readFile(agentsPath, "utf-8");
|
||||
if (/memory\.md/i.test(content)) return false;
|
||||
} catch {
|
||||
// no AGENTS.md or unreadable; treat as missing memory guidance
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
Reference in New Issue
Block a user