@buckits/claude-statusline 3.0.2 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -84,11 +84,11 @@ npx @buckits/claude-statusline --global
84
84
  # Install for current project only
85
85
  npx @buckits/claude-statusline --local
86
86
 
87
- # Replace existing statusline
88
- npx @buckits/claude-statusline --global --force
89
-
90
- # Uninstall
87
+ # Uninstall (global)
91
88
  npx @buckits/claude-statusline --global --uninstall
89
+
90
+ # Uninstall (local)
91
+ npx @buckits/claude-statusline --local --uninstall
92
92
  ```
93
93
 
94
94
  ## What It Looks Like
@@ -128,8 +128,7 @@ npx get-shit-done-cc
128
128
  If you prefer to install manually:
129
129
 
130
130
  1. Copy `statusline.cjs` to `~/.claude/statusline.cjs`
131
- 2. Make it executable: `chmod +x ~/.claude/statusline.cjs`
132
- 3. Add to `~/.claude/settings.json`:
131
+ 2. Add to `~/.claude/settings.json`:
133
132
 
134
133
  ```json
135
134
  {
@@ -145,7 +144,7 @@ If you prefer to install manually:
145
144
  ### Statusline not showing?
146
145
 
147
146
  1. Make sure you restarted Claude Code after installation
148
- 2. Verify the script is executable: `ls -la ~/.claude/statusline.cjs`
147
+ 2. Verify the script exists: `ls -la ~/.claude/statusline.cjs`
149
148
 
150
149
  ### Wrong colors?
151
150
 
package/bin/install.cjs CHANGED
@@ -24,7 +24,7 @@ const hasGlobal = args.includes('--global') || args.includes('-g');
24
24
  const hasLocal = args.includes('--local') || args.includes('-l');
25
25
  const hasHelp = args.includes('--help') || args.includes('-h');
26
26
  const hasUninstall = args.includes('--uninstall') || args.includes('-u');
27
- const hasForce = args.includes('--force') || args.includes('-f');
27
+
28
28
 
29
29
  // Directory constants
30
30
  const CLAUDE_DIR_NAME = '.claude';
@@ -72,11 +72,10 @@ if (hasHelp) {
72
72
  ${cyan}-g, --global${reset} Install globally (${dim}~/.claude${reset})
73
73
  ${cyan}-l, --local${reset} Install locally (${dim}./.claude${reset})
74
74
  ${cyan}-u, --uninstall${reset} Remove statusline configuration
75
- ${cyan}-f, --force${reset} Replace existing statusline config
76
75
  ${cyan}-h, --help${reset} Show this help message
77
76
 
78
77
  ${yellow}Examples:${reset}
79
- ${dim}# Interactive install (prompts for location)${reset}
78
+ ${dim}# Interactive install (prompts for location and width)${reset}
80
79
  npx @buckits/claude-statusline
81
80
 
82
81
  ${dim}# Install globally for all projects${reset}
@@ -85,8 +84,8 @@ if (hasHelp) {
85
84
  ${dim}# Install for current project only${reset}
86
85
  npx @buckits/claude-statusline --local
87
86
 
88
- ${dim}# Replace existing statusline${reset}
89
- npx @buckits/claude-statusline --global --force
87
+ ${dim}# Uninstall${reset}
88
+ npx @buckits/claude-statusline --global --uninstall
90
89
  `);
91
90
  process.exit(0);
92
91
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buckits/claude-statusline",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "The statusline Claude Code deserves - gradient progress bar, auto-compact threshold marker, git status, cost tracking, 2-line dashboard",
5
5
  "bin": {
6
6
  "claude-statusline": "bin/install.cjs"