Some checks failed
Auto-update PR branches / Update open PR branches (push) Has been cancelled
CI / Frontend Static Quality Checks (push) Has been cancelled
CI / Frontend Tests & Coverage (push) Has been cancelled
CI / Rust Tests & Quality Checks (push) Has been cancelled
CI / Linux build verification (push) Has been cancelled
Release (Alpha) / Compute alpha version (push) Has been cancelled
Release (Alpha) / Build release artifacts (push) Has been cancelled
Release (Alpha) / GitHub Release (alpha) (push) Has been cancelled
Release (Alpha) / Update docs and release pages (push) Has been cancelled
Deploy docs / Build VitePress site (push) Has been cancelled
Deploy docs / Deploy to GitHub Pages (push) Has been cancelled
24 lines
621 B
JavaScript
24 lines
621 B
JavaScript
import { readFile } from 'node:fs/promises'
|
|
import path from 'node:path'
|
|
import { vaultContext } from './vault.js'
|
|
|
|
export async function readAgentInstructions(vaultPath) {
|
|
const instructionsPath = path.join(vaultPath, 'AGENTS.md')
|
|
try {
|
|
return {
|
|
path: instructionsPath,
|
|
content: await readFile(instructionsPath, 'utf8'),
|
|
}
|
|
} catch (error) {
|
|
if (error?.code === 'ENOENT') return null
|
|
throw error
|
|
}
|
|
}
|
|
|
|
export async function vaultContextWithInstructions(vaultPath) {
|
|
return {
|
|
...(await vaultContext(vaultPath)),
|
|
agentInstructions: await readAgentInstructions(vaultPath),
|
|
}
|
|
}
|