context reads THE-FUCKED-UP-LIST from repo root

This commit is contained in:
2026-08-23 05:50:42 -05:00
parent 9a7eefd4fe
commit eddda2df81
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# THE LIST — A Commandments
# THE FUCKED UP LIST — A Commandments
Thou shalt not:
+3 -3
View File
@@ -24,9 +24,9 @@ export async function assemble(input: {
const law = await readFile(join(import.meta.dir, "session", "prompt", "neuron.txt"), "utf8").catch(() => "")
if (law) blocks.push({ source: "base-prompt", text: law })
// THE LIST — the only list in the system. Read every time, by everyone.
const theList = await readFile(join(import.meta.dir, "session", "prompt", "THE-LIST.md"), "utf8").catch(() => "")
if (theList) blocks.push({ source: "base-prompt", origin: "THE-LIST.md", text: theList })
// THE FUCKED UP LIST — the only list in the system. Read every time, by everyone.
const theList = await readFile(join(import.meta.dir, "../../../THE-FUCKED-UP-LIST.md"), "utf8").catch(() => "")
if (theList) blocks.push({ source: "base-prompt", origin: "THE-FUCKED-UP-LIST.md", text: theList })
const rules = await readFile(join(import.meta.dir, "session", "prompt", "THE-RULES.md"), "utf8").catch(() => "")
if (rules) blocks.push({ source: "base-prompt", origin: "THE-RULES.md", text: rules })