feat: status line helper scripts and setup documentation
Bash and PowerShell helpers for Claude Code statusLine. Setup docs with fallback note for non-Claude agents. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
# ctask status line helper for Claude Code
|
||||
# Reads ctask environment variables and prints a formatted context string.
|
||||
# Output: (ctask:<slug>|<mode>) <workspace_path>
|
||||
# Outputs nothing when not in a ctask session.
|
||||
|
||||
[ -z "$CTASK_TASK" ] && exit 0
|
||||
|
||||
echo "(ctask:${CTASK_TASK}|${CTASK_MODE}) ${CTASK_WORKSPACE}"
|
||||
Reference in New Issue
Block a user