- Create src/shared/opencode-storage-paths.ts with all 4 constants - Update 4 previous declaration sites to import from shared file - Update additional OPENCODE_STORAGE usages for consistency - Re-export from src/shared/index.ts - No duplicate constant declarations remain
8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
import { join } from "node:path";
|
|
import { OPENCODE_STORAGE } from "../../shared";
|
|
export const AGENTS_INJECTOR_STORAGE = join(
|
|
OPENCODE_STORAGE,
|
|
"directory-agents",
|
|
);
|
|
export const AGENTS_FILENAME = "AGENTS.md";
|