Add original_operator_prompt chain of custody to templates

- planning.yml: instructs LLM to include ORIGINAL REQUEST in child descriptions
- create_company.yml: references {original_operator_prompt} as hard constraint + ALIGNMENT CHECK
- create_company.yml: adds request_alignment criterion (weight 15) to adjudication
- hire_agent.yml: references {original_operator_prompt} for hiring context
- quick.yml: single-pass execution template
This commit is contained in:
David Baity
2026-03-10 15:59:11 -04:00
parent bf53f5c203
commit 122edf2002
3 changed files with 20 additions and 4 deletions

View File

@@ -24,6 +24,9 @@ steps:
hint: | hint: |
You are {agent.name}, executing the Genesis Protocol for Crimson Leaf LLC. You are {agent.name}, executing the Genesis Protocol for Crimson Leaf LLC.
OPERATOR'S ORIGINAL REQUEST (this is what was actually asked for — your proposal MUST match this):
{original_operator_prompt}
This is a high-stakes constitutional act. Do NOT default to company creation. This is a high-stakes constitutional act. Do NOT default to company creation.
Crimson Leaf creates and governs companies; it does not perform commodity work. Crimson Leaf creates and governs companies; it does not perform commodity work.
@@ -88,6 +91,10 @@ steps:
- Every company must be economically or strategically justified. - Every company must be economically or strategically justified.
- This proposal must be strong enough to pass a 95+ adjudication threshold. - This proposal must be strong enough to pass a 95+ adjudication threshold.
ALIGNMENT CHECK: Before finalizing, re-read the OPERATOR'S ORIGINAL REQUEST above.
Your company charter, focus area, and CEO must directly serve what was requested.
If your design drifts from the original request, the adjudicator will reject it.
- type: package - type: package
packet_type: IntakeResponse packet_type: IntakeResponse
hint: | hint: |
@@ -129,13 +136,16 @@ adjudication:
deliverable_type: coordination deliverable_type: coordination
criteria: criteria:
constitutional_alignment: constitutional_alignment:
weight: 25 weight: 20
description: "Proposal stays within Crimson Leaf charter and governance boundaries" description: "Proposal stays within Crimson Leaf charter and governance boundaries"
request_alignment:
weight: 15
description: "Company charter and focus directly match the ORIGINAL OPERATOR REQUEST. Score 0 if the company drifts into a different domain than what was requested."
niche_specificity: niche_specificity:
weight: 20 weight: 20
description: "Company is sharply focused, non-generalist, and clearly differentiated" description: "Company is sharply focused, non-generalist, and clearly differentiated"
strategic_justification: strategic_justification:
weight: 15 weight: 10
description: "Strong case for why a new company should exist at all" description: "Strong case for why a new company should exist at all"
portfolio_coherence: portfolio_coherence:
weight: 10 weight: 10
@@ -147,5 +157,5 @@ adjudication:
weight: 10 weight: 10
description: "Founding CEO seed matches the company mandate and constitutional role" description: "Founding CEO seed matches the company mandate and constitutional role"
structural_safety: structural_safety:
weight: 10 weight: 5
description: "Design avoids recursion, dependency loops, and unstable operating models" description: "Design avoids recursion, dependency loops, and unstable operating models"

View File

@@ -24,6 +24,9 @@ steps:
hint: | hint: |
You are {agent.name}, executing the hiring process for Crimson Leaf LLC. You are {agent.name}, executing the hiring process for Crimson Leaf LLC.
OPERATOR'S ORIGINAL REQUEST (context for why this hire is needed):
{original_operator_prompt}
CONTEXT: Read the SKILLS & GUIDES section — it contains the PAE Agent Guide CONTEXT: Read the SKILLS & GUIDES section — it contains the PAE Agent Guide
which defines the exact file schemas you must produce. which defines the exact file schemas you must produce.

View File

@@ -71,7 +71,10 @@ steps:
For each task: For each task:
- task_name: short, specific - task_name: short, specific
- description: full detail — enough that the assigned agent can execute without asking - description: full detail — enough that the assigned agent can execute without asking.
CRITICAL: Include the ORIGINAL OPERATOR REQUEST verbatim in every child description
so downstream agents know what was actually asked for. Start with
"ORIGINAL REQUEST: <exact text>" followed by specific instructions.
- agents: EXACT name(s) from TEAM ROSTER - agents: EXACT name(s) from TEAM ROSTER
- task_type: MUST be one of the valid template names listed below - task_type: MUST be one of the valid template names listed below
- priority: 1 (critical) to 5 (nice-to-have) - priority: 1 (critical) to 5 (nice-to-have)