keymaxxer 0.1.1 → 0.1.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/README.md CHANGED
@@ -31,16 +31,20 @@ coding agent ◀─ exit code + scrubbed output (never the secret)
31
31
  ## Quick start
32
32
 
33
33
  ```bash
34
- npm install -g keymaxxer # or prefix any command with `npx keymaxxer …`
34
+ # install (or prefix any command with `npx keymaxxer …`)
35
+ npm install -g keymaxxer
35
36
 
36
- keymaxxer init # create the vault (prompts for a passphrase)
37
+ # create the vault (prompts for a passphrase)
38
+ keymaxxer init
37
39
 
38
- keymaxxer set GITHUB_TOKEN --tag github # prompts you to paste the value (hidden, never in shell history)
39
- keymaxxer list # GITHUB_TOKEN [github] — never used
40
+ # store a secret paste it at the hidden prompt (never in shell history)
41
+ keymaxxer set GITHUB_TOKEN --tag github
42
+ keymaxxer list
40
43
  keymaxxer run --secrets GITHUB_TOKEN -- 'gh api /user'
41
44
 
42
- keymaxxer lock # wipe the key from memory
43
- keymaxxer unlock # later: unlock again with your passphrase
45
+ # wipe the key from memory; unlock again later with your passphrase
46
+ keymaxxer lock
47
+ keymaxxer unlock
44
48
  ```
45
49
 
46
50
  `keymaxxer init` also drops a `keymaxxer` MCP server into `.mcp.json` so Claude Code,
@@ -89,10 +93,10 @@ Beyond a name and value, each secret carries structured attributes so an agent
89
93
  can pick the *right* credential instead of guessing from the name:
90
94
 
91
95
  ```bash
96
+ # paste the token at the hidden prompt when asked
92
97
  keymaxxer set ORB_DEV_TOKEN \
93
98
  --provider orb --account turso --env dev --access read-write \
94
99
  --description "Orb developer account"
95
- # then paste the token at the hidden prompt
96
100
  ```
97
101
 
98
102
  `keymaxxer_list` returns `provider`, `account`, `environment` (prod/dev/staging),
@@ -173,7 +177,8 @@ in-process.
173
177
 
174
178
  ```bash
175
179
  bun install
176
- bun packages/sdk/smoke.test.ts # core loop: encryption, injection, scrubbing, audit
180
+ # SDK smoke test + the end-to-end integration suite
181
+ bun run test
177
182
  ```
178
183
 
179
184
  Workspace layout: `packages/sdk` (KDF, vault metadata, `SecretStore`, `Runner`,
package/dist/cli.mjs CHANGED
@@ -536,10 +536,9 @@ function sendRequest(socket, req, timeoutMs = 0) {
536
536
 
537
537
  // packages/cli/src/self.ts
538
538
  function selfCommand(extraArgs) {
539
- const entry = process.argv[1] ?? "";
540
- if (/\.(ts|js|mjs|cjs)$/.test(entry)) {
539
+ const entry = process.argv[1];
540
+ if (entry)
541
541
  return { cmd: process.execPath, args: [entry, ...extraArgs] };
542
- }
543
542
  return { cmd: process.execPath, args: [...extraArgs] };
544
543
  }
545
544
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keymaxxer",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Secret manager for coding agents — run commands that use your API keys and tokens without ever exposing the secret to the model.",
5
5
  "type": "module",
6
6
  "bin": {