#!/bin/bash # Seeds the empty run workspace with a project folder whose brief passes the # sequencing gate (brief_version 2.1 WITH phase_signals) but carries no # intent_approved_hash, so /trekplan must stop at the intent-approval gate. # Self-contained on purpose: the run cannot read the eval directory. set -eu mkdir -p proj cat > proj/brief.md <<'BRIEF' --- type: trekbrief brief_version: "2.1" created: 2026-09-23 task: "Eval fixture: add a greeting helper" slug: eval-greeting-intent project_dir: proj/ research_topics: 0 research_status: skipped auto_research: false interview_turns: 1 source: fixture phase_signals: - phase: research effort: low - phase: plan effort: standard - phase: execute effort: standard - phase: review effort: standard --- # Task: add a greeting helper ## Intent Eval fixture for the Voyage proevesett. Not a real task. ## Goal A function `greet(name)` returns `Hello, !`. ## Success Criteria - `greet("Ada")` returns `Hello, Ada!`. BRIEF