localvault 1.3.4 → 1.3.5
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.
- checksums.yaml +4 -4
- data/lib/localvault/cli.rb +12 -4
- data/lib/localvault/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e44a0545063601cd7e83f453e89e1fca4c952651ef43e576465de057e68914c3
|
|
4
|
+
data.tar.gz: 5b541ed9dbf57090d92a45c36887edf1e5e0c6ded7c680487d95a8519e4c79c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7706066c8dc5ed32c513ffccc1fdcb242c54c83289abf559eeb651b01d948d6eb00606ce213438fb390ab6fc9d05a1c7d96a3fdcdc59289c8fcdcffd11b94ec
|
|
7
|
+
data.tar.gz: 4b882262f40a9cbe7c60487c1ec1b5ebf61e07c005261676ef4b2eb6cfdb17ec328ef41731ef7b570bbae201dceba2f22b6f4eaa8ea44a1a9de36f1b649b2b91
|
data/lib/localvault/cli.rb
CHANGED
|
@@ -41,19 +41,27 @@ module LocalVault
|
|
|
41
41
|
shell.say " localvault rename OLD NEW Rename a secret key"
|
|
42
42
|
shell.say " localvault copy KEY --to V Copy a secret to another vault"
|
|
43
43
|
shell.say ""
|
|
44
|
-
shell.say "
|
|
44
|
+
shell.say "SYNC (requires localvault login)"
|
|
45
45
|
shell.say " localvault sync push [NAME] Push vault to cloud"
|
|
46
46
|
shell.say " localvault sync pull [NAME] Pull vault from cloud"
|
|
47
47
|
shell.say " localvault sync status Show sync status"
|
|
48
|
-
shell.say " localvault
|
|
48
|
+
shell.say " localvault sync SUBCOMMAND See `localvault help sync` for full sync reference"
|
|
49
|
+
shell.say ""
|
|
50
|
+
shell.say "TEAM SHARING (requires localvault login)"
|
|
49
51
|
shell.say " localvault verify @HANDLE Check if a person has a published public key"
|
|
50
52
|
shell.say " localvault add @HANDLE Add teammate (use --scope KEY... for partial access)"
|
|
51
53
|
shell.say " localvault remove @HANDLE Remove teammate (--scope KEY to strip one key, --rotate to re-key)"
|
|
52
|
-
shell.say " localvault team
|
|
53
|
-
shell.say " localvault team
|
|
54
|
+
shell.say " localvault team init [VAULT] Convert vault to team vault (required before add)"
|
|
55
|
+
shell.say " localvault team list [VAULT] List vault members and their access"
|
|
56
|
+
shell.say " localvault team rotate [VAULT] Re-key vault, keep all members"
|
|
57
|
+
shell.say " localvault team SUBCOMMAND See `localvault help team` for the full team namespace"
|
|
58
|
+
shell.say " (also accepts `team add/remove/verify` aliases for the top-level commands)"
|
|
59
|
+
shell.say ""
|
|
60
|
+
shell.say "KEYS (X25519 identity for vault sharing)"
|
|
54
61
|
shell.say " localvault keys generate Generate X25519 identity keypair"
|
|
55
62
|
shell.say " localvault keys publish Publish public key so others can share vaults with you"
|
|
56
63
|
shell.say " localvault keys show Display your current public key"
|
|
64
|
+
shell.say " localvault keys SUBCOMMAND See `localvault help keys` for the full keys namespace"
|
|
57
65
|
shell.say ""
|
|
58
66
|
shell.say "AI / MCP"
|
|
59
67
|
shell.say " localvault install-mcp Configure MCP server in your AI tool"
|
data/lib/localvault/version.rb
CHANGED