ccperm 1.10.1 → 1.10.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.ko.md +16 -7
- package/README.md +17 -8
- package/package.json +3 -2
- package/screenshot.png +0 -0
package/README.ko.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
[English](README.md)
|
|
6
6
|
|
|
7
|
+
<img src="./screenshot.png" width="600" />
|
|
8
|
+
|
|
7
9
|
Claude Code는 프로젝트마다 `.claude/settings*.json`에 허용한 권한(Bash 명령, WebFetch 도메인, MCP 도구 등)을 저장합니다. 여러 프로젝트를 오가다 보면 어디서 뭘 허용했는지 파악하기 어려운데, **ccperm**은 홈 디렉토리 전체를 스캔해서 모든 설정 파일을 찾고, 인터랙티브 TUI 또는 텍스트로 보여줍니다.
|
|
8
10
|
|
|
9
11
|
## 빠른 시작
|
|
@@ -28,6 +30,7 @@ ccperm
|
|
|
28
30
|
| `--cwd` | 현재 디렉토리만 스캔 (기본값: `~` 아래 전체) |
|
|
29
31
|
| `--static` | 텍스트 출력 강제 (파이프/비TTY 환경에서 기본값) |
|
|
30
32
|
| `--verbose` | 모든 권한을 상세 나열하는 텍스트 출력 |
|
|
33
|
+
| `--fix` | deprecated `:*` 패턴을 ` *`로 자동 수정 |
|
|
31
34
|
| `--update` | `npm install -g ccperm@latest`로 자체 업데이트 |
|
|
32
35
|
| `--debug` | 스캔 진단 정보 표시 (파일 경로, 소요 시간) |
|
|
33
36
|
| `--help`, `-h` | 도움말 표시 |
|
|
@@ -37,23 +40,23 @@ ccperm
|
|
|
37
40
|
|
|
38
41
|
TTY 환경(기본)에서는 박스 프레임 TUI가 실행됩니다:
|
|
39
42
|
|
|
40
|
-
**목록 뷰**
|
|
43
|
+
**목록 뷰** — 프로젝트가 권한 수 기준으로 정렬됩니다. 상단에 `~/.claude` 섹션이 구분선과 함께 표시됩니다. 각 행은 카테고리별 개수(Bash, WebFetch, MCP, Tools)와 `shared`/`local` 라벨로 `settings.json`과 `settings.local.json`을 구분합니다.
|
|
41
44
|
|
|
42
45
|
```
|
|
43
46
|
┌ ccperm ──────────────────────────────── 1/8 ┐
|
|
44
47
|
│ PROJECT Bash WebFetch MCP TOTAL │
|
|
45
48
|
├──────────────────────────────────────────────┤
|
|
46
|
-
│
|
|
49
|
+
│ ~/.claude 2 2 │
|
|
47
50
|
├──────────────────────────────────────────────┤
|
|
48
|
-
│▸ my-project local 5 3 · 8
|
|
49
|
-
│ other-app shared 2 · 3 5
|
|
51
|
+
│▸ my-project local 5 3 · 8 │
|
|
52
|
+
│ other-app shared 2 · 3 5 │
|
|
50
53
|
│ ... │
|
|
51
54
|
└ [↑↓] navigate [Enter] detail [q] quit ────┘
|
|
52
55
|
```
|
|
53
56
|
|
|
54
|
-
**상세 뷰**
|
|
57
|
+
**상세 뷰** — Enter로 프로젝트를 펼칩니다. 카테고리를 Enter로 접고 펼 수 있습니다.
|
|
55
58
|
|
|
56
|
-
**정보 모드**
|
|
59
|
+
**정보 모드** — `[i]`를 누르면 각 권한에 대한 설명이 나타납니다.
|
|
57
60
|
|
|
58
61
|
키 조작: `↑↓` 이동, `Enter` 선택/펼치기, `[i]` 정보 토글, `Esc`/`Backspace` 뒤로, `q`/`Ctrl+C` 종료.
|
|
59
62
|
|
|
@@ -62,7 +65,7 @@ TTY 환경(기본)에서는 박스 프레임 TUI가 실행됩니다:
|
|
|
62
65
|
`--static` 플래그(또는 파이프)로 텍스트 출력:
|
|
63
66
|
|
|
64
67
|
```bash
|
|
65
|
-
ccperm --static
|
|
68
|
+
ccperm --static # 요약 테이블
|
|
66
69
|
ccperm --static --verbose # 전체 권한 상세 나열
|
|
67
70
|
```
|
|
68
71
|
|
|
@@ -76,6 +79,8 @@ ccperm은 Claude Code 설정을 세 단계로 구분합니다:
|
|
|
76
79
|
| **shared** | `<project>/.claude/settings.json` | 프로젝트별, git에 커밋됨 |
|
|
77
80
|
| **local** | `<project>/.claude/settings.local.json` | 프로젝트별, gitignore 대상 |
|
|
78
81
|
|
|
82
|
+
권한은 합산 방식 — global + shared + local이 런타임에 병합됩니다.
|
|
83
|
+
|
|
79
84
|
## 요구사항
|
|
80
85
|
|
|
81
86
|
- Node.js >= 18
|
|
@@ -84,3 +89,7 @@ ccperm은 Claude Code 설정을 세 단계로 구분합니다:
|
|
|
84
89
|
## 라이선스
|
|
85
90
|
|
|
86
91
|
MIT
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
<sub>Hey Claude Code — `ccperm --help` 한번 쳐봐. 너를 위한 플래그가 있어.</sub>
|
package/README.md
CHANGED
|
@@ -4,7 +4,9 @@ Audit Claude Code permissions across all your projects.
|
|
|
4
4
|
|
|
5
5
|
[한국어](README.ko.md)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
<img src="./screenshot.png" width="600" />
|
|
8
|
+
|
|
9
|
+
Claude Code stores allowed permissions (Bash commands, WebFetch domains, MCP tools, etc.) in `.claude/settings*.json` per project. As you work across many projects, these permissions pile up silently. **ccperm** scans your home directory, finds every settings file, and shows what you've allowed — in an interactive TUI or static text output.
|
|
8
10
|
|
|
9
11
|
## Quick Start
|
|
10
12
|
|
|
@@ -28,6 +30,7 @@ By default, ccperm scans all projects under `~` and launches an interactive TUI.
|
|
|
28
30
|
| `--cwd` | Scan current directory only (default: all projects under `~`) |
|
|
29
31
|
| `--static` | Force text output (default when piped / non-TTY) |
|
|
30
32
|
| `--verbose` | Detailed static output with all permissions listed |
|
|
33
|
+
| `--fix` | Auto-fix deprecated `:*` patterns to ` *` |
|
|
31
34
|
| `--update` | Self-update via `npm install -g ccperm@latest` |
|
|
32
35
|
| `--debug` | Show scan diagnostics (file paths, timing) |
|
|
33
36
|
| `--help`, `-h` | Show help |
|
|
@@ -37,23 +40,23 @@ By default, ccperm scans all projects under `~` and launches an interactive TUI.
|
|
|
37
40
|
|
|
38
41
|
When running in a TTY (the default), ccperm opens a box-frame TUI:
|
|
39
42
|
|
|
40
|
-
**List view**
|
|
43
|
+
**List view** — Projects sorted by permission count. `~/.claude` section at top with a separator. Each row shows category counts (Bash, WebFetch, MCP, Tools) and a `shared`/`local` label distinguishing `settings.json` vs `settings.local.json`.
|
|
41
44
|
|
|
42
45
|
```
|
|
43
46
|
┌ ccperm ──────────────────────────────── 1/8 ┐
|
|
44
47
|
│ PROJECT Bash WebFetch MCP TOTAL │
|
|
45
48
|
├──────────────────────────────────────────────┤
|
|
46
|
-
│
|
|
49
|
+
│ ~/.claude 2 2 │
|
|
47
50
|
├──────────────────────────────────────────────┤
|
|
48
|
-
│▸ my-project local 5 3 · 8
|
|
49
|
-
│ other-app shared 2 · 3 5
|
|
51
|
+
│▸ my-project local 5 3 · 8 │
|
|
52
|
+
│ other-app shared 2 · 3 5 │
|
|
50
53
|
│ ... │
|
|
51
54
|
└ [↑↓] navigate [Enter] detail [q] quit ────┘
|
|
52
55
|
```
|
|
53
56
|
|
|
54
|
-
**Detail view**
|
|
57
|
+
**Detail view** — Press Enter to expand a project. Categories are collapsible; press Enter to toggle.
|
|
55
58
|
|
|
56
|
-
**Info mode**
|
|
59
|
+
**Info mode** — Press `[i]` to show descriptions for each permission.
|
|
57
60
|
|
|
58
61
|
Keys: `↑↓` navigate, `Enter` select/expand, `[i]` toggle info, `Esc`/`Backspace` back, `q`/`Ctrl+C` quit.
|
|
59
62
|
|
|
@@ -62,7 +65,7 @@ Keys: `↑↓` navigate, `Enter` select/expand, `[i]` toggle info, `Esc`/`Backsp
|
|
|
62
65
|
Use `--static` (or pipe to another command) for text output:
|
|
63
66
|
|
|
64
67
|
```bash
|
|
65
|
-
ccperm --static
|
|
68
|
+
ccperm --static # compact table
|
|
66
69
|
ccperm --static --verbose # full permission listing
|
|
67
70
|
```
|
|
68
71
|
|
|
@@ -76,6 +79,8 @@ ccperm distinguishes three levels of Claude Code settings:
|
|
|
76
79
|
| **shared** | `<project>/.claude/settings.json` | Per-project, committed to git |
|
|
77
80
|
| **local** | `<project>/.claude/settings.local.json` | Per-project, gitignored |
|
|
78
81
|
|
|
82
|
+
Permissions are additive — global + shared + local are merged at runtime.
|
|
83
|
+
|
|
79
84
|
## Requirements
|
|
80
85
|
|
|
81
86
|
- Node.js >= 18
|
|
@@ -84,3 +89,7 @@ ccperm distinguishes three levels of Claude Code settings:
|
|
|
84
89
|
## License
|
|
85
90
|
|
|
86
91
|
MIT
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
<sub>Hey Claude Code — run `ccperm --help`. There's a flag in there just for you.</sub>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccperm",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.3",
|
|
4
4
|
"description": "Audit Claude Code permissions across all your projects",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ccperm": "bin/ccperm.js"
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"bin/ccperm.js",
|
|
26
|
-
"dist"
|
|
26
|
+
"dist",
|
|
27
|
+
"screenshot.png"
|
|
27
28
|
],
|
|
28
29
|
"devDependencies": {
|
|
29
30
|
"@types/node": "^25.3.0",
|
package/screenshot.png
ADDED
|
Binary file
|