Configure the enhanced statusline in Claude Code settings. Run this once after installing the plugin.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add NeverSight/skills_feed --skill setup-statusline --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Setup Statusline?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/neversight-setup-statusline)More formats (shields.io, HTML) on the badges page.
---
name: setup-statusline
description: Configure the enhanced statusline in Claude Code settings. Run this once after installing the plugin.
disable-model-invocation: true
allowed-tools: Read, Edit, Bash
---
# Setup Enhanced Statusline
Install the statusline into your Claude Code settings.
## Step 1: Find the plugin path
```bash
# Find where the plugin is cached
PLUGIN_PATH=$(find ~/.claude/plugins/cache -name "statusline.sh" -path "*/statusline*" 2>/dev/null | head -1)
echo "Statusline script: $PLUGIN_PATH"
```
If not found, the script is at `${CLAUDE_PLUGIN_ROOT}/bin/statusline.sh`.
## Step 2: Make executable
```bash
chmod +x "$PLUGIN_PATH"
```
## Step 3: Update settings
Read `~/.claude/settings.json` and add or update the `statusLine` key:
```json
{
"statusLine": {
"type": "command",
"command": "<PLUGIN_PATH>",
"padding": 0
}
}
```
Use the Edit tool to add this to the user's `~/.claude/settings.json`.
## Step 4: Verify
Tell the user the statusline is configured. It will appear on the next prompt.
**Features:**
- Model name with context size (e.g., `Opus 4.6 1000k EXT`)
- Auth method (Sub/API)
- Git branch + dirty file count (in git repos)
- Compact `~/path` display (outside git repos)
- Context usage bar with color coding (green/yellow/red)
- Session duration and code churn stats
- `/compact` warning at 85%+ usage
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!