@bigstrider/transcodes-cli 0.3.0 → 0.4.0

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 +3 -3
  2. package/dist/index.js +6446 -305
  3. package/package.json +7 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @bigstrider/transcodes-cli
2
2
 
3
- Token manager for the **ai-action-tracker** plugins (Claude Code / Codex / Cursor / Antigravity).
3
+ Token manager for the **transcodes-guard** plugins (Claude Code / Codex / Cursor / Antigravity).
4
4
 
5
5
  The plugins and their hooks authenticate to the Transcodes backend with a member MCP JWT. This CLI is the safe way to store that token: you paste it into your terminal, **never into the agent chat** (which would leak it into the transcript).
6
6
 
@@ -43,7 +43,7 @@ Options:
43
43
 
44
44
  ## Token precedence
45
45
 
46
- The plugins resolve the token in this order (see `@ai-action-tracker/stepup-core` `resolveToken()`):
46
+ The plugins resolve the token in this order (see `@transcodes-guard/stepup-core` `resolveToken()`):
47
47
 
48
48
  1. `TRANSCODES_TOKEN` environment variable — overrides everything (CI / power users)
49
49
  2. `~/.transcodes/config.json` — written by this CLI
@@ -51,5 +51,5 @@ The plugins resolve the token in this order (see `@ai-action-tracker/stepup-core
51
51
 
52
52
  ## Notes
53
53
 
54
- - **Windows security**: the `0600` mode is a POSIX concept and is largely ignored on Windows. The file still lives under your user profile (`C:\Users\<you>\.transcodes\`) and is user-scoped by default. A hardware-backed OS keychain is tracked in `docs/prd/0005-token-auth-device-flow.md`.
54
+ - **Windows security**: the `0600` mode is a POSIX concept and is largely ignored on Windows. The file still lives under your user profile (`C:\Users\<you>\.transcodes\`) and is user-scoped by default. A hardware-backed OS keychain is not yet implemented.
55
55
  - The token never passes through the agent chat — this CLI writes the file directly.