@rajbos/ai-engineering-fluency 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/README.md +12 -0
- package/dist/cli.js +55 -55
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,18 @@ npm run cli:environmental # Run environmental command
|
|
|
17
17
|
npm run cli:fluency # Run fluency command
|
|
18
18
|
npm run cli:diagnostics # Run diagnostics command
|
|
19
19
|
npm run cli -- --help # Run any CLI command
|
|
20
|
+
npm run cli -- segment # Output compact token string for oh-my-posh
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### oh-my-posh segment
|
|
24
|
+
|
|
25
|
+
The `segment` command outputs a compact token usage string designed for use in shell prompts.
|
|
26
|
+
See [`../omp-segment/README.md`](../omp-segment/README.md) for full setup instructions.
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
node dist/cli.js segment # Use 15-minute cache (default)
|
|
30
|
+
node dist/cli.js segment --refresh # Force refresh, bypass cache
|
|
31
|
+
node dist/cli.js segment --hide-zero # Output nothing when both counts are zero
|
|
20
32
|
```
|
|
21
33
|
|
|
22
34
|
## Requirements
|