Help us improve
Share bugs, ideas, or general feedback.
From zkfy
Standardized bash terminal color formatting for agent output. Use when creating or updating agent prompts that need colored terminal output for progress indicators, success/error messages, file paths, or structured logging. Provides consistent color palette and usage patterns across all agents.
npx claudepluginhub jasonsie/zkfy --plugin zkfyHow this skill is triggered — by the user, by Claude, or both
Slash command
/zkfy:terminal-colorsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Standardized color palette and formatting patterns for terminal output in bash-based agents.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Standardized color palette and formatting patterns for terminal output in bash-based agents.
# Colors
RED='\033[91m' # Errors, ABORT conditions
GREEN='\033[92m' # Success, completion
YELLOW='\033[93m' # Warnings, manual review
BLUE='\033[94m' # Info, progress steps
CYAN='\033[96m' # File paths, metadata
MAGENTA='\033[95m' # Categories, domains
# Styles
BOLD='\033[1m' # Emphasis
DIM='\033[2m' # Secondary info
RESET='\033[0m' # Reset formatting
echo -e "${BLUE}${BOLD}[1/6] Validating input...${RESET}"
echo -e "${BLUE}${BOLD}[2/6] Processing data...${RESET}"
echo -e "${GREEN}✓${RESET} Operation completed"
echo -e "${RED}✗ Error:${RESET} Operation failed"
echo -e "${CYAN} → ${DIM}/path/to/file.md${RESET}"
echo -e "${YELLOW} ⚠${RESET} Manual review needed"
For complete color palette, all usage patterns, and guidelines, see references/color-palette.md.
Include the color palette section in agent prompts that require terminal output formatting. Reference this skill to maintain consistency across all agents.