.claude/skills/color/SKILL.md
Pick the terminal background color Ralph uses to distinguish its terminal from Claude Code.
npx skillsauth add allierays/agentic-loop .claude/skills/colorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The user wants to change Ralph's terminal background tint - the color applied during npx agentic-loop run to visually distinguish Ralph's terminal from Claude Code.
Note: This only works in macOS Terminal.app. On other terminals (iTerm2, VS Code, Linux), Ralph skips tinting automatically.
Read .ralph/config.json and check for terminalTint. Show the current setting:
{value}"#1a1a2e (default dark navy)"Use AskUserQuestion:
Question: "What color should Ralph's terminal background be?" Header: "Tint color" Options:
#1a1a2e - cool and distinct, easy on the eyes"#1a2e2e - subtle blue-green undertone"#2e1a1a - warm undertone, clearly different"If the user selects "Other", ask them to provide a hex color (e.g., #2e2e1a).
If the user provided a custom hex:
# followed by exactly 6 hex characters (/^#[0-9a-fA-F]{6}$/)#1a1a2e). Try again." and re-ask.Read .ralph/config.json, set the terminalTint field, and write it back.
"terminalTint": "#xxxxxx""terminalTint": "off"Use jq to update:
jq --arg color "THE_HEX_VALUE" '.terminalTint = $color' .ralph/config.json > .ralph/config.json.tmp && mv .ralph/config.json.tmp .ralph/config.json
If running in Terminal.app, apply the color immediately so the user can see it:
# Apply preview (will be restored when Claude session ends)
osascript -e 'tell application "Terminal" to set background color of front window to {R, G, B}' 2>/dev/null
Where R, G, B are the hex values converted to 16-bit (multiply each 8-bit value by 257).
If "Off" was chosen, skip the preview.
Say:
"Done! Ralph will use #xxxxxx as the terminal tint.
Next time you run npx agentic-loop run, the terminal background will change to this color. It restores to your original background when the loop ends.
Run /color again anytime to change it."
If "Off" was chosen, say:
"Done! Terminal tinting is now disabled. Ralph will run without changing your terminal background."
tools
Show complete reference for all agentic-loop commands (slash commands, Ralph CLI, vibe CLI).
data-ai
Quick reference cheatsheet for all agentic-loop commands including Ralph.
development
Run a comprehensive code quality check looking for common patterns that AI coding agents introduce.
development
Take an interactive tour of agentic-loop - the system for going from idea to shipped code with AI.