(relativePath: string)
| 45 | const PROMPT_STRING_MAX_CHARS = Number(process.env.CLAWSWEEPER_PROMPT_STRING_MAX_CHARS ?? 700); |
| 46 | |
| 47 | export function readText(relativePath: string) { |
| 48 | return fs.readFileSync(path.join(repoRoot(), relativePath), "utf8"); |
| 49 | } |
| 50 | |
| 51 | export function resolveJobPath(filePath: string) { |
| 52 | return path.resolve(filePath); |
no test coverage detected