safe-chains 0.136.1

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 = "nox"
description = "Python test automation tool that executes sessions defined in a noxfile.py. Each session can create virtualenvs, install packages, and run arbitrary shell commands, so nox inherits the full safety profile of whatever the noxfile defines. --list is a read-only dry-run that shows available sessions without executing them. The noxfile.py itself is executed as Python code during session discovery. Does not make network requests directly, but sessions typically do (e.g., pip install). Stable project with regular releases."
url = "https://nox.thea.codes/"
level = "SafeRead"
standalone = [
    "--error-on-external-run", "--error-on-missing-interpreters", "--help",
    "--list", "--no-color", "--no-error-on-external-run",
    "--no-error-on-missing-interpreters", "--no-install", "--no-venv",
    "--reuse-existing-virtualenvs", "--stop-on-first-error", "--version",
    "-R", "-h", "-l", "-r", "-x",
]
valued = [
    "--default-venv-backend", "--envdir", "--extra-pythons",
    "--force-pythons", "--noxfile", "--pythons",
    "--sessions", "--tags",
    "-e", "-f", "-p", "-s", "-t",
]