@@ -101,25 +101,25 @@ devflow_status() {
101101 ok " Hindsight container running (Docker)"
102102 hindsight_runtime_found=true
103103 else
104- fail " Hindsight container not running — run 'devflow up' to start"
104+ status_fail " Hindsight container not running — run 'devflow up' to start"
105105 fi
106106 else
107- fail " Docker runtime not running — run 'devflow up' to start"
107+ status_fail " Docker runtime not running — run 'devflow up' to start"
108108 fi
109109 fi
110110
111111 if hindsight_available; then
112112 ok " Hindsight API reachable at ${HINDSIGHT_API} "
113113 else
114- fail " Hindsight API not reachable at ${HINDSIGHT_API} "
114+ status_fail " Hindsight API not reachable at ${HINDSIGHT_API} "
115115 fi
116116
117117 # ── Layer 2: Worktrunk ─────────────────────────────────────────────────────
118118 printf " \n${BOLD} Layer 2: Worktrunk${RESET} (git worktrees)\n"
119119 if has_cmd wt; then
120120 ok " worktrunk (wt) installed"
121121 else
122- fail " worktrunk (wt) not installed"
122+ status_fail " worktrunk (wt) not installed"
123123 fi
124124
125125 # ── Layer 3: Code Review ────────────────────────────────────────────────────
@@ -131,7 +131,7 @@ devflow_status() {
131131 elif has_cmd opencode; then
132132 ok " Code review CLI: opencode (fallback)"
133133 else
134- fail " No code review CLI found — install Claude Code or OpenCode"
134+ status_fail " No code review CLI found — install Claude Code or OpenCode"
135135 fi
136136
137137 # ── Layer 4: CLAUDE.md + Skills ────────────────────────────────────────────
@@ -141,7 +141,7 @@ devflow_status() {
141141 if [[ -f " ${HOME} /.claude/CLAUDE.md" ]]; then
142142 ok " ~/.claude/CLAUDE.md found (user-scoped)"
143143 else
144- fail " ~/.claude/CLAUDE.md not found"
144+ status_fail " ~/.claude/CLAUDE.md not found"
145145 fi
146146
147147 # Check project-scoped CLAUDE.md
@@ -169,7 +169,7 @@ devflow_status() {
169169 if claude plugin list 2> /dev/null | grep -q " worktrunk" ; then
170170 ok " worktrunk plugin installed"
171171 else
172- fail " worktrunk plugin not installed"
172+ status_fail " worktrunk plugin not installed"
173173 fi
174174 fi
175175
@@ -179,10 +179,10 @@ devflow_status() {
179179 if docker_compose -f " $compose_file " ps --status running 2> /dev/null | grep -q " langfuse" ; then
180180 ok " Langfuse container running"
181181 else
182- fail " Langfuse container not running — run 'devflow up' to start"
182+ status_fail " Langfuse container not running — run 'devflow up' to start"
183183 fi
184184 else
185- fail " Docker runtime not running — run 'devflow up' to start"
185+ status_fail " Docker runtime not running — run 'devflow up' to start"
186186 fi
187187
188188 echo " "
0 commit comments