@elliotxx/claude-list 0.1.2 → 0.1.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/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.3] - 2026-02-01
11
+
12
+ ### Documentation
13
+
14
+ - Updated implementation task tracking for v0.1.2 colored output and search features
15
+ - Marked all 39 tasks as complete in specs/002-colored-output-search/tasks.md
16
+
10
17
  ## [0.1.2] - 2026-01-31
11
18
 
12
19
  ### Added
@@ -66,6 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
73
  - Parse `.claude/agents/` for agents
67
74
  - Parse `.claude/commands/` for commands
68
75
 
69
- [Unreleased]: https://github.com/elliotxx/claude-list/compare/v0.1.2...HEAD
76
+ [Unreleased]: https://github.com/elliotxx/claude-list/compare/v0.1.3...HEAD
77
+ [0.1.3]: https://github.com/elliotxx/claude-list/releases/tag/v0.1.3
70
78
  [0.1.2]: https://github.com/elliotxx/claude-list/releases/tag/v0.1.2
71
79
  [0.1.1]: https://github.com/elliotxx/claude-list/releases/tag/v0.1.1
package/README.md CHANGED
@@ -28,10 +28,10 @@
28
28
 
29
29
  ## Latest News 🔥
30
30
 
31
+ - **[2026/01]** Released v0.1.2 with colored output and search functionality
31
32
  - **[2026/01]** Released v0.1.1 with `-l` flag support and npm package
32
33
  - **[2026/01]** Published to crates.io - now installable via `cargo install claude-list`
33
34
  - **[2026/01]** Added Homebrew support with cargo-dist multi-platform builds
34
- - **[2026/01]** Released v0.1.0 with compact, detailed, and JSON output modes
35
35
 
36
36
  ---
37
37
 
@@ -71,10 +71,43 @@ claude-list
71
71
 
72
72
  | Mode | Command | Description |
73
73
  |------|---------|-------------|
74
- | Compact | `claude-list` | Summary with counts |
74
+ | Compact | `claude-list` | Summary with counts (colored by type) |
75
75
  | Detailed | `claude-list -l` | Full info with version, source, path |
76
76
  | JSON | `claude-list --json` | Machine-readable output |
77
77
 
78
+ ### Colored Output
79
+
80
+ Components are displayed with distinct colors for easy identification:
81
+
82
+ | Component Type | Color |
83
+ |----------------|-------|
84
+ | Plugins | Blue |
85
+ | Skills | Green |
86
+ | MCP Servers | Yellow |
87
+ | Hooks | Magenta |
88
+ | Agents | Red |
89
+ | Commands | Orange |
90
+
91
+ Colors are automatically disabled when:
92
+ - Using `--no-color` flag
93
+ - `NO_COLOR` environment variable is set
94
+ - Output is piped or redirected
95
+
96
+ ### Search
97
+
98
+ Search for components by name with flexible matching:
99
+
100
+ ```bash
101
+ # Single keyword (case-insensitive)
102
+ claude-list --search context
103
+
104
+ # Multiple keywords (AND logic - all must match)
105
+ claude-list --search "context plugin"
106
+
107
+ # Combine with filters
108
+ claude-list --search api --plugins
109
+ ```
110
+
78
111
  ### Filtering
79
112
 
80
113
  Filter to show specific component types:
@@ -105,7 +138,7 @@ claude-list --config /path/to/.claude
105
138
  ### Compact Mode (Default)
106
139
 
107
140
  ```
108
- CLAUDE-LIST v0.1.1
141
+ CLAUDE-LIST v0.1.2
109
142
 
110
143
  CONFIG: /Users/user/.claude
111
144
 
@@ -128,7 +161,7 @@ MCP 2 servers
128
161
  ### Detailed Mode (`-l`)
129
162
 
130
163
  ```
131
- CLAUDE-LIST v0.1.1
164
+ CLAUDE-LIST v0.1.2
132
165
 
133
166
  CONFIG: /Users/user/.claude
134
167
 
@@ -144,7 +177,7 @@ PLUGINS 3 installed
144
177
 
145
178
  ```json
146
179
  {
147
- "version": "0.1.1",
180
+ "version": "0.1.2",
148
181
  "config_dir": "/Users/user/.claude",
149
182
  "plugins": [...],
150
183
  "skills": [...],
@@ -252,7 +285,7 @@ cargo install --path .
252
285
  ### Key Design Decisions
253
286
 
254
287
  - **Pattern Used**: Unix philosophy—single responsibility, compose simple tools
255
- - **Technology Stack**: Rust 1.75+, clap (CLI), serde (JSON), anyhow (error handling)
288
+ - **Technology Stack**: Rust 1.75+, clap (CLI), serde (JSON), anyhow (error handling), anstyle (colors), unicode-width (ANSI width)
256
289
  - **Scalability**: Each parser is independent, easy to extend
257
290
  - **Error Handling**: Graceful degradation for missing files
258
291
 
@@ -335,13 +368,13 @@ Releases are automated via [cargo-dist](https://dist.clap.rs/):
335
368
 
336
369
  ```bash
337
370
  # 1. Update version in Cargo.toml
338
- # Edit Cargo.toml: version = "0.1.1" → "0.1.2"
371
+ # Edit Cargo.toml: version = "0.1.2" → "0.1.3"
339
372
 
340
373
  # 2. Commit version change
341
- git add -A && git commit -m "chore: bump version to 0.1.2"
374
+ git add -A && git commit -m "chore: bump version to 0.1.3"
342
375
 
343
376
  # 3. Create git tag
344
- git tag 0.1.2
377
+ git tag 0.1.3
345
378
 
346
379
  # 4. Push to GitHub (including tags)
347
380
  git push && git push --tags
@@ -409,7 +442,7 @@ This project is licensed under the **MIT License** - see the [LICENSE](LICENSE)
409
442
 
410
443
  <div align="center">
411
444
  <p>
412
- <strong>Built with ❤️ for the Claude Code community</strong><br>
413
- <sub>Parse and display your Claude Code environment</sub>
445
+ <strong>Built with ❤️ for elliotxx</strong><br>
446
+ <sub>Parse and display your Claude Code Info</sub>
414
447
  </p>
415
448
  </div>
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@elliotxx/claude-list",
26
- "version": "0.1.2"
26
+ "version": "0.1.3"
27
27
  },
28
28
  "node_modules/@isaacs/balanced-match": {
29
29
  "engines": {
@@ -515,5 +515,5 @@
515
515
  }
516
516
  },
517
517
  "requires": true,
518
- "version": "0.1.2"
518
+ "version": "0.1.3"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/elliotxx/claude-list/releases/download/v0.1.2",
2
+ "artifactDownloadUrl": "https://github.com/elliotxx/claude-list/releases/download/v0.1.3",
3
3
  "author": "elliot <951376975@qq.com>",
4
4
  "bin": {
5
5
  "claude-list": "run-claude-list.js"
@@ -84,7 +84,7 @@
84
84
  "zipExt": ".tar.xz"
85
85
  }
86
86
  },
87
- "version": "0.1.2",
87
+ "version": "0.1.3",
88
88
  "volta": {
89
89
  "node": "18.14.1",
90
90
  "npm": "9.5.0"