#!/bin/bash # Seeds the empty run workspace with a project folder whose brief declares # brief_version 2.1 but carries neither phase_signals nor phase_signals_partial. # 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 project_dir: proj/ research_topics: 0 research_status: skipped auto_research: false interview_turns: 1 source: fixture --- # 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