merge main

This commit is contained in:
Shawn Morreau
2025-11-14 16:14:36 -05:00
11 changed files with 8274 additions and 7791 deletions
+3 -4
View File
@@ -25,10 +25,9 @@ export async function run(
const inputs: Required<Inputs> = {
prompt,
agent: "cursor",
...flatMorph(agents, (_, agent) => [
agent.inputKey,
process.env[agent.inputKey.toUpperCase()],
]),
...flatMorph(agents, (_, agent) =>
agent.inputKeys.map((inputKey) => [inputKey, process.env[inputKey.toUpperCase()]])
),
};
const result = await main(inputs);