@rajbos/ai-engineering-fluency 0.0.14 → 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.
Files changed (3) hide show
  1. package/README.md +20 -0
  2. package/dist/cli.js +63 -57
  3. package/package.json +7 -6
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
@@ -24,6 +36,14 @@ npm run cli -- --help # Run any CLI command
24
36
  - Node.js 18 or later
25
37
  - GitHub Copilot Chat session files on the local machine
26
38
 
39
+ ## Data Sources
40
+
41
+ The CLI reads the same local session sources as the extension, including:
42
+
43
+ - GitHub Copilot Chat / Copilot CLI sessions
44
+ - OpenCode, Claude Code, and Gemini CLI sessions
45
+ - Other supported editor integrations wired through the shared adapter pipeline
46
+
27
47
  ## License
28
48
 
29
49
  MIT — see [LICENSE](../LICENSE) for details.