safe-chains 0.167.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 = "flake8"
description = "Python linter that wraps pycodestyle, Pyflakes, and mccabe under a single CLI, extensible via third-party plugins. Reads Python source files and reports style violations and errors to stdout without modifying code. Stable project with periodic releases."
url = "https://flake8.pycqa.org/en/latest/user/invocation.html"
level = "SafeRead"
bare = true
standalone = [
    "--benchmark", "--count", "--help", "--quiet",
    "--show-pep8", "--show-source", "--statistics",
    "--verbose", "--version",
    "-V", "-h", "-q", "-v",
]
valued = [
    "--config", "--exclude", "--extend-exclude",
    "--extend-ignore", "--filename", "--format",
    "--ignore", "--max-complexity", "--max-line-length",
    "--output-file", "--per-file-ignores", "--select",
]