@brenoxp/cc-statusline 1.0.0 → 1.0.1
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 +31 -2
- package/dist/index.js +0 -0
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -38,6 +38,35 @@
|
|
|
38
38
|
|
|
39
39
|
## Install
|
|
40
40
|
|
|
41
|
+
```bash
|
|
42
|
+
npm install -g @brenoxp/cc-statusline
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Add to `~/.claude/settings.json`:
|
|
46
|
+
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"statusLine": {
|
|
50
|
+
"type": "command",
|
|
51
|
+
"command": "cc-statusline"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Or run without installing:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
{
|
|
60
|
+
"statusLine": {
|
|
61
|
+
"type": "command",
|
|
62
|
+
"command": "npx @brenoxp/cc-statusline"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
<details>
|
|
68
|
+
<summary>Install from source</summary>
|
|
69
|
+
|
|
41
70
|
```bash
|
|
42
71
|
git clone https://github.com/brenoxp/claude-code-statusline.git
|
|
43
72
|
cd claude-code-statusline
|
|
@@ -45,8 +74,6 @@ bun install
|
|
|
45
74
|
bun run build
|
|
46
75
|
```
|
|
47
76
|
|
|
48
|
-
Add to `~/.claude/settings.json`:
|
|
49
|
-
|
|
50
77
|
```json
|
|
51
78
|
{
|
|
52
79
|
"statusLine": {
|
|
@@ -56,6 +83,8 @@ Add to `~/.claude/settings.json`:
|
|
|
56
83
|
}
|
|
57
84
|
```
|
|
58
85
|
|
|
86
|
+
</details>
|
|
87
|
+
|
|
59
88
|
## Settings
|
|
60
89
|
|
|
61
90
|
`settings.json` in the project root:
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brenoxp/cc-statusline",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Custom status line for Claude Code CLI",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"bin": {
|
|
7
8
|
"cc-statusline": "dist/index.js"
|
|
@@ -19,7 +20,12 @@
|
|
|
19
20
|
"lint": "biome check .",
|
|
20
21
|
"lint:fix": "biome check --fix ."
|
|
21
22
|
},
|
|
22
|
-
"keywords": [
|
|
23
|
+
"keywords": [
|
|
24
|
+
"claude-code",
|
|
25
|
+
"statusline",
|
|
26
|
+
"cli",
|
|
27
|
+
"terminal"
|
|
28
|
+
],
|
|
23
29
|
"devDependencies": {
|
|
24
30
|
"@biomejs/biome": "^2.4.10",
|
|
25
31
|
"@types/node": "^25.5.0",
|