safe-chains 0.221.0

Auto-allow safe bash commands in agentic coding tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[[command]]
name = "ssh-add"
description = "Manages keys held by ssh-agent. Bare invocation adds default keys (~/.ssh/id_*). -l lists fingerprints (read). -L lists public keys (read). -d removes keys, -D removes all keys, -e removes from PKCS#11. -X locks/unlocks the agent. The agent is a long-running process the user already started — ssh-add only sends commands to it."
url = "https://man.openbsd.org/ssh-add"
researched_version = "OpenSSH 10.x"
level = "SafeWrite"
bare = true
tolerate_unknown_short = true
standalone = [
    "--help", "-?", "-A", "-D", "-K",
    "-L", "-T", "-V", "-X", "-c", "-d",
    "-h", "-k", "-l", "-q",
    "-v", "-x",
]
valued = [
    "-E", "-H", "-O", "-S", "-T", "-W",
    "-c", "-e", "-h", "-s", "-t",
]