# ctask status line helper for Claude Code # Reads ctask environment variables and prints a formatted context string. # Output: (ctask:|) # Outputs nothing when not in a ctask session. if (-not $env:CTASK_TASK) { exit 0 } Write-Output "(ctask:$($env:CTASK_TASK)|$($env:CTASK_MODE)) $($env:CTASK_WORKSPACE)"