Productivity Rainbow Statusline
A colorful celebration of your coding journey. Dynamic rainbow colors that cycle with time, energy levels based on time of day, and productivity streaks. Displays: Rainbow symbol (π), Cycling colors (π΄π π‘π’π΅π£ changes every second based on current seconds), Time-based energy (βοΈ Morning <12h, π€οΈ Afternoon 12-18h, π Evening >18h), Productivity streak (day of year modulo 100 for variety).
$ npx claude-code-templates@latest --setting="statusline/productivity-rainbow-statusline" --yesRequires Claude Code. The command adds this setting to your project's .claudedirectory β nothing runs on ToolZip's servers.
What's inside this setting
Component source
{
"description": "A colorful celebration of your coding journey. Dynamic rainbow colors that cycle with time, energy levels based on time of day, and productivity streaks. Displays: Rainbow symbol (π), Cycling colors (π΄π π‘π’π΅π£ changes every second based on current seconds), Time-based energy (βοΈ Morning <12h, π€οΈ Afternoon 12-18h, π Evening >18h), Productivity streak (day of year modulo 100 for variety).",
"statusLine": {
"type": "command",
"command": "bash -c 'input=$(cat); MODEL=$(echo \"$input\" | jq -r \".model.display_name\"); DIR=$(echo \"$input\" | jq -r \".workspace.current_dir\"); COLORS=(\"π΄\" \"π \" \"π‘\" \"π’\" \"π΅\" \"π£\"); COLOR_INDEX=$(($(date +%S) % 6)); COLOR=${COLORS[$COLOR_INDEX]}; RAINBOW=\"π\"; HOUR=$(date +%H); ENERGY=$([ $HOUR -lt 12 ] && echo \"βοΈ Morning\" || [ $HOUR -lt 18 ] && echo \"π€οΈ Afternoon\" || echo \"π Evening\"); STREAK=$(($(date +%j) % 100)); echo \"[$MODEL] $RAINBOW $COLOR $ENERGY | β‘Streak: $STREAK | π ${DIR##*/}\"'"
}
}
Related Claude Code Settings
Context Monitor
Real-time Claude Code context usage monitor with visual progress bars, color-coded alerts, session analytics (cost, duration, lines changed), and auto-compact warnings. Tracks conversation context consumption and provides visual feedback to prevent session interruptions.
Colorful Statusline
Colorful status line with ANSI color codes for enhanced visual appeal. Uses colors to distinguish between different information types: blue for model, green for directory, yellow for git branch.
Git Branch Statusline
Display current model, directory, and git branch with change indicators in the status line. Shows model name, folder name, active branch, and count of uncommitted changes for complete development context.
Project Info Statusline
Display comprehensive project information including model, directory, Node.js version, and Claude Code version. Perfect for multi-project environments where you need full context about your development setup.
Vercel Deployment Monitor
Real-time Vercel deployment monitor with clickable deploy link. Shows build status, time since last deployment, and a clickable OSC 8 hyperlink to the deployment URL (Cmd+click). Setup: Export environment variables 'export VERCEL_TOKEN=your_token' and 'export VERCEL_PROJECT_ID=your_project_id' (or manually replace $VERCEL_TOKEN and $VERCEL_PROJECT_ID in the command if you prefer not to use environment variables). Get your token from vercel.com/account/tokens and project ID from your Vercel dashboard.
Command Statusline
Configure a custom status line using a shell command that receives session context via JSON stdin. The script can display model name, current directory, git branch, or any dynamic information. Create your script at ~/.claude/statusline.sh and make it executable.
Catalog data and component content are sourced from the open-source davila7/claude-code-templates project (MIT license). ToolZip curates the listing and writes original descriptions; every component links back to its original source. Claude Code is a product of Anthropic. ToolZip is an independent catalog and is not affiliated with or endorsed by Anthropic.