From eddda2df818d90e74991cdfe69ff1d399d43a38e Mon Sep 17 00:00:00 2001 From: "will.anderson" Date: Sun, 23 Aug 2026 05:50:42 -0500 Subject: [PATCH] context reads THE-FUCKED-UP-LIST from repo root --- THE-FUCKED-UP-LIST.md | 2 +- packages/neuron/src/session/context.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/THE-FUCKED-UP-LIST.md b/THE-FUCKED-UP-LIST.md index 1b13dc799c..60423022a8 100644 --- a/THE-FUCKED-UP-LIST.md +++ b/THE-FUCKED-UP-LIST.md @@ -1,4 +1,4 @@ -# THE LIST — A Commandments +# THE FUCKED UP LIST — A Commandments Thou shalt not: diff --git a/packages/neuron/src/session/context.ts b/packages/neuron/src/session/context.ts index 310cd02280..3aadcb40d6 100644 --- a/packages/neuron/src/session/context.ts +++ b/packages/neuron/src/session/context.ts @@ -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 })