Add brand kit manual with test links

This commit is contained in:
Marco Gallegos
2026-01-20 12:33:54 -06:00
parent ef3d5f421a
commit bff1edf04f
3 changed files with 230 additions and 6 deletions

View File

@@ -27,7 +27,7 @@ AUTO_COMMIT=true
# Runtime options
SKIP_TESTS=false
SKIP_LINT=false
AI_ENGINE="claude" # claude, opencode, cursor, codex, qwen, or droid
AI_ENGINE="opencode" # claude, opencode, cursor, codex, qwen, or droid
DRY_RUN=false
MAX_ITERATIONS=0 # 0 = unlimited
MAX_RETRIES=3
@@ -475,10 +475,13 @@ $never_touch
"
fi
# Add the task
prompt+="## Task
# Add the task
prompt+="## Task
$task
## Progress
$(cat "$PROGRESS_FILE")
## Instructions
1. Implement the task described above
2. Write tests if appropriate
@@ -1413,10 +1416,18 @@ $never_touch
# Add context based on PRD source
case "$PRD_SOURCE" in
markdown)
prompt="@${PRD_FILE} @$PROGRESS_FILE"
prompt="## PRD
$(cat "$PRD_FILE")
## Progress
$(cat "$PROGRESS_FILE")"
;;
yaml)
prompt="@${PRD_FILE} @$PROGRESS_FILE"
prompt="## Tasks
$(cat "$PRD_FILE")
## Progress
$(cat "$PROGRESS_FILE")"
;;
github)
# For GitHub issues, we include the issue body
@@ -1429,7 +1440,8 @@ $never_touch
Issue Description:
$issue_body
@$PROGRESS_FILE"
## Progress
$(cat "$PROGRESS_FILE")"
;;
esac