#!/usr/bin/env bash # 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. [ -z "$CTASK_TASK" ] && exit 0 echo "(ctask:${CTASK_TASK}|${CTASK_MODE}) ${CTASK_WORKSPACE}"