autho 2.0.0 → 3.0.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 (3) hide show
  1. package/README.md +3 -1
  2. package/dist/autho.js +2566 -125
  3. package/package.json +8 -2
package/README.md CHANGED
@@ -28,7 +28,9 @@ autho secrets get --password "..." --ref github --json
28
28
  autho otp code --password "..." --ref my-totp --json
29
29
  ```
30
30
 
31
- You can also set `AUTHO_MASTER_PASSWORD` to avoid passing `--password` on every call.
31
+ Run `autho init` to save your master password to the native OS secret store (macOS Keychain, Linux Secret Service, Windows Credential Manager). After that, all commands unlock silently without prompting.
32
+
33
+ You can also set `AUTHO_MASTER_PASSWORD` to avoid passing `--password` on every call, or set `AUTHO_DISABLE_OS_SECRETS=1` to opt out of OS secret storage.
32
34
 
33
35
  ## Features
34
36