safe-chains 0.136.0

Auto-allow safe bash commands in agentic coding tools
Documentation
[[command]]
name = "conda"
description = "Cross-platform package and environment manager for Python and data science. conda list and conda info are read-only queries that inspect locally installed packages and environment metadata. conda config with --show or --show-sources is a read-only view of the configuration; other config operations can modify settings. None of these subcommands install or remove packages. list may read the lockfile and environment directories. Mature, stable project maintained by Anaconda, Inc."
url = "https://docs.conda.io/projects/conda/en/stable/commands/index.html"
bare_flags = ["--help", "--version", "-V", "-h"]

[[command.sub]]
name = "list"
standalone = [
    "--explicit", "--export", "--full-name", "--help", "--json",
    "--no-pip", "--revisions",
    "-e", "-f", "-h",
]
valued = ["--name", "--prefix", "-n", "-p"]

[[command.sub]]
name = "info"
standalone = [
    "--all", "--envs", "--help", "--json", "--verbose",
    "-a", "-e", "-h", "-v",
]

[[command.sub]]
name = "config"
bare = false
require_any = ["--show", "--show-sources"]
standalone = [
    "--help", "--json", "--quiet", "--show", "--show-sources", "--verbose",
    "-h", "-q", "-v",
]
valued = ["--env", "--file", "--name", "--prefix", "-f", "-n", "-p"]