new-environment workflow: accept an optional prior-art reference
ci / web (push) Failing after 1m14s
ci / python (push) Successful in 2m36s

This commit is contained in:
karti-ai
2026-08-28 18:16:55 -07:00
parent b5e9782dad
commit 1a6bbf3309
+2
View File
@@ -17,6 +17,7 @@ const slug = (args && args.slug) || 'support-resolution'
const vertical = (args && args.vertical) || 'customer-support-resolution' const vertical = (args && args.vertical) || 'customer-support-resolution'
const pkg = slug.replace(/-/g, '_') const pkg = slug.replace(/-/g, '_')
const seeds = (args && args.seeds) || '0-7' const seeds = (args && args.seeds) || '0-7'
const reference = (args && args.reference) || ''
const BASE = `You are building environment "${slug}" for the repo at ${REPO}, promoting the vertical "${vertical}" from a published specification to a live, playable demo at demo.primeintellectgrowth.com. const BASE = `You are building environment "${slug}" for the repo at ${REPO}, promoting the vertical "${vertical}" from a published specification to a live, playable demo at demo.primeintellectgrowth.com.
@@ -25,6 +26,7 @@ const BASE = `You are building environment "${slug}" for the repo at ${REPO}, pr
The specification for this vertical — task, reward, counterweight, persona, anxiety — is already written and reviewed in \`src/content/verticals.ts\`. Start from that entry; do not invent a different task. The specification for this vertical — task, reward, counterweight, persona, anxiety — is already written and reviewed in \`src/content/verticals.ts\`. Start from that entry; do not invent a different task.
Package: \`envs/${pkg}/\`. Demo: \`src/demos/${slug}/\`. Traces: \`public/traces/${slug}/\`. Package: \`envs/${pkg}/\`. Demo: \`src/demos/${slug}/\`. Traces: \`public/traces/${slug}/\`.
${reference ? `\n**Prior art to read before designing anything:** ${reference}\n` : ''}
Do NOT run git. Do NOT edit another stage's files.` Do NOT run git. Do NOT edit another stage's files.`