cc-md-search-cli 1.0.1 → 1.0.2
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 +15 -0
- package/README.md +29 -4
- package/assets/header.png +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.0.2] - 2026-01-17
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Reorganized installation section with grouped options (Bun, NPM, Clone Repository)
|
|
9
|
+
- Added package location paths for each installation method
|
|
10
|
+
- Added guidance for locating skill and rule template files
|
|
11
|
+
- Clarified automatic CLI registration for global installs
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Fixed missing `-g` flag for npm global install command
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- Header image to README
|
|
18
|
+
|
|
5
19
|
## [1.0.1] - 2026-01-17
|
|
6
20
|
|
|
7
21
|
### Added
|
|
@@ -43,5 +57,6 @@ All notable changes to this project will be documented in this file.
|
|
|
43
57
|
- Configurable search options (depth, limit, threshold)
|
|
44
58
|
- Claude Code skill integration (`md-search`)
|
|
45
59
|
|
|
60
|
+
[1.0.2]: https://github.com/bjeber/cc-md-search-cli/compare/v1.0.1...v1.0.2
|
|
46
61
|
[1.0.1]: https://github.com/bjeber/cc-md-search-cli/compare/v1.0.0...v1.0.1
|
|
47
62
|
[1.0.0]: https://github.com/bjeber/cc-md-search-cli/releases/tag/v1.0.0
|
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
1
3
|
# CC-MD-Search-CLI
|
|
2
4
|
|
|
3
5
|
**Claude Code Markdown Search - Efficient documentation search CLI for AI coding assistants**
|
|
@@ -26,10 +28,29 @@ Fast, context-efficient markdown documentation search tool designed for [Claude
|
|
|
26
28
|
- [Bun](https://bun.sh/) (recommended) or Node.js 18+
|
|
27
29
|
- npm or pnpm
|
|
28
30
|
|
|
29
|
-
###
|
|
31
|
+
### Option 1: Bun (Recommended)
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
bun add -g cc-md-search-cli
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
The `ccmds` command is automatically registered globally.
|
|
38
|
+
|
|
39
|
+
**Package location:** `~/.bun/install/global/node_modules/cc-md-search-cli/`
|
|
40
|
+
|
|
41
|
+
### Option 2: NPM
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
npm i -g cc-md-search-cli
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
The `ccmds` command is automatically registered globally.
|
|
48
|
+
|
|
49
|
+
**Package location:** Run `npm root -g` to find the path (typically `/usr/local/lib/node_modules/cc-md-search-cli/` or `~/.npm-global/lib/node_modules/cc-md-search-cli/`)
|
|
50
|
+
|
|
51
|
+
### Option 3: Clone Repository
|
|
30
52
|
|
|
31
53
|
```bash
|
|
32
|
-
# Clone the repository
|
|
33
54
|
git clone https://github.com/bjeber/cc-md-search-cli.git
|
|
34
55
|
cd cc-md-search-cli
|
|
35
56
|
|
|
@@ -37,11 +58,15 @@ cd cc-md-search-cli
|
|
|
37
58
|
bun install
|
|
38
59
|
# or: npm install
|
|
39
60
|
|
|
40
|
-
# Link the CLI globally
|
|
61
|
+
# Link the CLI globally (required for cloned repos)
|
|
41
62
|
npm link
|
|
42
63
|
```
|
|
43
64
|
|
|
44
|
-
|
|
65
|
+
**Package location:** Your cloned directory
|
|
66
|
+
|
|
67
|
+
**Skill & Rule files** are located in the package directory:
|
|
68
|
+
- `skills/SKILL.md` - Claude Code skill template
|
|
69
|
+
- `rules/docs-search.mdc` - Cursor IDE rule template
|
|
45
70
|
|
|
46
71
|
## Quick Start
|
|
47
72
|
|
|
Binary file
|