diff --git a/skills/pass-mgr/SKILL.md b/skills/pass-mgr/SKILL.md index ff5d8a7..fd5c50a 100644 --- a/skills/pass-mgr/SKILL.md +++ b/skills/pass-mgr/SKILL.md @@ -15,21 +15,30 @@ Always invoke pass_mgr through the `pcexec` tool. Do NOT run pass_mgr directly. - List keys for current agent - `pass_mgr list` + - Include shared scope: `pass_mgr list --public` - Get username for a key - - `pass_mgr get-username ` + - `pass_mgr get-username --key ` + - Shared scope: `pass_mgr get-username --public --key ` - Get secret for a key - - `pass_mgr get-secret ` + - `pass_mgr get-secret --key ` + - Shared scope: `pass_mgr get-secret --public --key ` - Set a key entry (username optional) - - `pass_mgr set --secret [--username ]` + - `pass_mgr set --key --secret [--username ]` + - Shared scope: `pass_mgr set --public --key --secret [--username ]` - Remove a key entry - - `pass_mgr unset ` + - `pass_mgr unset --key ` + - Shared scope: `pass_mgr unset --public --key ` - Generate a random secret for a key (prints secret) - - `pass_mgr generate ` + - `pass_mgr generate --key [--username ]` + - Shared scope: `pass_mgr generate --public --key [--username ]` + +- Legacy (hidden) getter + - `pass_mgr get ` ## Usage notes