safe-chains 0.150.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
[[command]]
name = "php"
description = "PHP language interpreter. With no script file or code arguments, only informational flags are exposed here (--help, --version, -m/--modules to list compiled extensions, -i/--info to print phpinfo, --ini to show .ini files in use), making the bare invocation purely diagnostic. The interpreter can execute arbitrary code when given a script file or -r flag, and -S starts a long-running built-in HTTP server that binds a port and serves PHP from a docroot (-t), so restricting to version/help/inspection queries eliminates both the execution and network-listener surfaces. PHP follows a predictable annual release cycle."
url = "https://www.php.net/manual/en/features.commandline.options.php"
bare = false
bare_flags = [
    "--help", "--info", "--ini", "--modules", "--version",
    "-h", "-i", "-m", "-v",
]

[[command.sub]]
name = "artisan"
delegate_skip = 0

[[command.sub]]
name = "please"
delegate_skip = 0