From cc-customize
This skill should be used when the user asks to "set up statusline", "configure statusline", "install statusline", "set up status bar", or wants to configure the Claude Code statusline with model info, git status, context/rate-limit bars, and token cost tracking.
npx claudepluginhub aeghnnsw/cc-toolkit --plugin cc-customizeThis skill uses the workspace's default tool permissions.
Install and configure a custom Claude Code statusline that shows model info, git status, context usage, rate limits, and token costs.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Install and configure a custom Claude Code statusline that shows model info, git status, context usage, rate limits, and token costs.
The statusline displays 3 lines:
[Opus 4.6] │ my-project git:(main*)jq must be installed (brew install jq on macOS)Copy the bundled script to the Claude Code config directory:
cp "${CLAUDE_PLUGIN_ROOT}/skills/statusline-setup/scripts/statusline-command.sh" ~/.claude/statusline-command.sh
chmod +x ~/.claude/statusline-command.sh
Read ~/.claude/settings.json, then set the statusLine field to the following value:
{
"type": "command",
"command": "bash ~/.claude/statusline-command.sh"
}
~/.claude/settings.json does not exist, create it: { "statusLine": <value above> }.statusLine field already exists, replace its value. If not, add it.Inform the user that the statusline is configured. Changes take effect on the next Claude Code session (restart required).
To remove the statusline, delete the statusLine field from ~/.claude/settings.json and remove ~/.claude/statusline-command.sh.