claude-nexus 0.30.0 → 0.30.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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.en.md +3 -3
- package/README.md +4 -4
- package/package.json +2 -2
package/README.en.md
CHANGED
|
@@ -61,12 +61,12 @@ Claude Code does not let a plugin auto-configure the user's `statusLine`, so reg
|
|
|
61
61
|
{
|
|
62
62
|
"statusLine": {
|
|
63
63
|
"type": "command",
|
|
64
|
-
"command": "bunx claude-nexus
|
|
64
|
+
"command": "bunx claude-nexus"
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
-
`npx -y claude-nexus
|
|
69
|
+
`npx -y claude-nexus` works the same way. The first call downloads the package to the local cache; subsequent calls run from that cache.
|
|
70
70
|
|
|
71
71
|
### Global install (fastest startup)
|
|
72
72
|
|
|
@@ -78,7 +78,7 @@ bun add -g claude-nexus # or npm i -g claude-nexus
|
|
|
78
78
|
{
|
|
79
79
|
"statusLine": {
|
|
80
80
|
"type": "command",
|
|
81
|
-
"command": "claude-nexus
|
|
81
|
+
"command": "claude-nexus"
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
```
|
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ Claude Code 안에서 플러그인 마켓플레이스로 설치한다.
|
|
|
53
53
|
|
|
54
54
|
플러그인은 2줄 statusline 스크립트를 함께 배포한다. 첫 줄은 `◆Nexus vX.Y.Z`·모델·프로젝트·git 브랜치(staged/unstaged), 둘째 줄은 컨텍스트 사용률과 5h/7d 사용 한도 게이지(리셋까지 남은 시간). Claude Pro·Max OAuth 세션에서만 5h/7d가 표시되며, 로컬의 여러 Claude 세션이 `~/.claude/.usage_cache`를 공유하므로 API 중복 호출 없이 경합이 방지된다.
|
|
55
55
|
|
|
56
|
-
Claude Code는 플러그인이 사용자 `statusLine`을 자동 등록하는 걸 허용하지 않으므로, 별도 CLI로 배포된 `claude-nexus
|
|
56
|
+
Claude Code는 플러그인이 사용자 `statusLine`을 자동 등록하는 걸 허용하지 않으므로, 별도 CLI로 배포된 `claude-nexus`를 본인의 `~/.claude/settings.json`에 등록한다.
|
|
57
57
|
|
|
58
58
|
### bunx 또는 npx (설치 불필요)
|
|
59
59
|
|
|
@@ -61,12 +61,12 @@ Claude Code는 플러그인이 사용자 `statusLine`을 자동 등록하는 걸
|
|
|
61
61
|
{
|
|
62
62
|
"statusLine": {
|
|
63
63
|
"type": "command",
|
|
64
|
-
"command": "bunx claude-nexus
|
|
64
|
+
"command": "bunx claude-nexus"
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
-
`npx -y claude-nexus
|
|
69
|
+
`npx -y claude-nexus`도 동일하게 동작한다. 최초 호출 1회만 패키지를 로컬 캐시에 받고, 이후 호출은 캐시에서 즉시 실행된다.
|
|
70
70
|
|
|
71
71
|
### 전역 설치 (가장 빠른 시작 시간)
|
|
72
72
|
|
|
@@ -78,7 +78,7 @@ bun add -g claude-nexus # 또는 npm i -g claude-nexus
|
|
|
78
78
|
{
|
|
79
79
|
"statusLine": {
|
|
80
80
|
"type": "command",
|
|
81
|
-
"command": "claude-nexus
|
|
81
|
+
"command": "claude-nexus"
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-nexus",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Claude Code plugin for nexus-core agent orchestration",
|
|
6
6
|
"author": "kih",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"node": ">=20"
|
|
18
18
|
},
|
|
19
19
|
"bin": {
|
|
20
|
-
"claude-nexus
|
|
20
|
+
"claude-nexus": "./scripts/statusline.mjs"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "bun run sync && bun run build:bundle",
|