@eloquence98/ctx 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +9 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -5,17 +5,21 @@ Scan your codebase. Get a clean summary. Paste it to AI.
5
5
  ## Usage
6
6
 
7
7
  ```bash
8
- # Scan current directory
9
- ctx .
8
+ npx @eloquence98/ctx ./src
10
9
  ```
11
10
 
12
11
  ```bash
13
- # Scan specific folder
14
- ctx ./src
12
+ # Human-readable output
13
+ npx @eloquence98/ctx ./src --human
15
14
  ```
16
15
 
16
+ ## Install (optional)
17
+
17
18
  ```bash
18
- # Human-readable output
19
+ npm install -g @eloquence98/ctx
20
+
21
+ # Then just use
22
+ ctx ./src
19
23
  ctx ./src --human
20
24
  ```
21
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eloquence98/ctx",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Scan your codebase. Get a clean summary. Paste it to AI.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,4 +36,4 @@
36
36
  "tsx": "^4.0.0",
37
37
  "typescript": "^5.0.0"
38
38
  }
39
- }
39
+ }