Configuration Schema
This page documents every field available in runok.yml. Each option is described using a consistent format: name, description, type, default value, and example.
File Format
Section titled “File Format”runok configuration is written in YAML. The configuration file is named runok.yml (or runok.yaml) and placed at the project root or in the global config directory. See File Discovery and Merging for details on where runok looks for configuration files.
A minimal configuration file looks like this:
rules: - allow: 'git *' - ask: 'npm *'The top-level keys are extends, defaults, rules, and definitions. All are optional.
JSON Schema
Section titled “JSON Schema”runok provides a JSON Schema for configuration file validation and editor autocompletion. The schema file is available at schema/runok.schema.json in the repository.
To enable autocompletion in your editor, add a # yaml-language-server directive at the top of your configuration file:
# yaml-language-server: $schema=https://raw.githubusercontent.com/fohte/runok/main/schema/runok.schema.jsonrules: - allow: 'git *'Top-Level Fields
Section titled “Top-Level Fields”extends
Section titled “extends”List of configuration files to inherit from. Supports local paths and remote Git repositories.
Type: list[str]
Default: []
Required: No
extends: - ./base.yml - github:example-org/example-presets@v1.0.0See Extends (Presets) for full details on local paths, GitHub shorthand, and Git URLs.
defaults
Section titled “defaults”Default settings applied when no rule matches a command.
Type: object
Default: { action: "ask" }
Required: No
defaults: action: allow sandbox: strictdefaults.action
Section titled “defaults.action”Action to take when no rule matches.
Type: "allow" | "ask" | "deny"
Default: "ask"
| Value | Behavior |
|---|---|
allow | Permit the command without prompting. |
ask | Prompt the user for confirmation. |
deny | Reject the command. |
defaults.sandbox
Section titled “defaults.sandbox”Name of a sandbox preset (defined in definitions.sandbox) to apply by default. See Sandbox for how sandboxing works.
Type: str
Default: None
defaults: sandbox: standardOrdered list of permission rules evaluated top-to-bottom against each command. The first matching rule wins. See Rule Evaluation for how rules are matched and prioritized.
Type: list[RuleEntry]
Default: []
Required: No
rules: - allow: 'git *' - deny: 'rm -rf /' message: Dangerous operation - ask: 'docker *' sandbox: container-safeRule Entry
Section titled “Rule Entry”Each rule entry must have exactly one of deny, allow, or ask set.
deny / allow / ask
Section titled “deny / allow / ask”Command pattern that triggers this rule. Only one of the three may be specified per rule. See Pattern Syntax for the pattern matching language.
Type: str
Required: Exactly one
# deny rule- deny: 'rm -rf /'
# allow rule- allow: 'git status'
# ask rule- ask: 'docker run *'CEL (Common Expression Language) expression that must evaluate to true for this rule to apply. If omitted, the rule always applies when the pattern matches. See Rule Evaluation for details on condition evaluation.
Type: str
Default: None
- allow: 'npm publish' when: "env.CI == 'true'"message
Section titled “message”Message shown to the user when the rule matches. Primarily useful for deny rules to explain why a command is blocked. See Denial Feedback for usage examples.
Type: str
Default: None
- deny: 'rm -rf /' message: This operation is too dangerous to allow.fix_suggestion
Section titled “fix_suggestion”Suggested alternative command shown when a deny rule matches. Helps users find a safer alternative. See Denial Feedback for usage examples.
Type: str
Default: None
- deny: 'rm -rf *' message: Use trash instead of rm for safety. fix_suggestion: 'trash *'sandbox
Section titled “sandbox”Name of a sandbox preset (defined in definitions.sandbox) to apply when this rule matches. Not allowed on deny rules. See Sandbox for how sandboxing works.
Type: str
Default: None
- allow: 'node *' sandbox: strictdefinitions
Section titled “definitions”Reusable definitions for paths, sandbox presets, wrappers, and commands.
Type: object
Default: {}
Required: No
definitions.paths
Section titled “definitions.paths”Named path lists that can be referenced by <path:name> in sandbox fs.deny rules.
Type: map[str, list[str]]
Default: {}
definitions: paths: secrets: - ~/.ssh - ~/.gnupg - ~/.aws/credentialsThe name is referenced via <path:name> syntax:
definitions: sandbox: secure: fs: deny: - <path:secrets>definitions.sandbox
Section titled “definitions.sandbox”Named sandbox presets that define filesystem and network restrictions. See Sandbox for details on how sandbox policies are enforced.
Type: map[str, SandboxPreset]
Default: {}
definitions: sandbox: strict: fs: writable: - ./src - ./tests deny: - <path:secrets> network: allow: falseSandbox Preset Fields
Section titled “Sandbox Preset Fields”Filesystem access policy.
Type: object
Default: None
fs.writable
Section titled “fs.writable”Directories the sandboxed process is allowed to write to.
Type: list[str]
Default: []
fs.deny
Section titled “fs.deny”Paths the sandboxed process is denied access to. Supports <path:name> references to entries in definitions.paths.
Type: list[str]
Default: []
network
Section titled “network”Network access policy.
Type: object
Default: None
network.allow
Section titled “network.allow”Whether network access is allowed.
Type: bool
Default: true
Sandbox Merge Strategy (Strictest Wins)
Section titled “Sandbox Merge Strategy (Strictest Wins)”When multiple sandbox presets apply to a command, they are merged using a Strictest Wins strategy. See Sandbox Overview for the merge rules and examples.
definitions.wrappers
Section titled “definitions.wrappers”Wrapper command patterns for recursive rule evaluation. When a command matches a wrapper pattern, the inner <cmd> is extracted and evaluated against the rules independently. See Rule Evaluation for details on wrapper processing.
Type: list[str]
Default: []
definitions: wrappers: - 'sudo <cmd>' - 'env * <cmd>'definitions.commands
Section titled “definitions.commands”Additional command patterns to recognize during parsing.
Type: list[str]
Default: []
definitions: commands: - mycustomtoolComplete Example
Section titled “Complete Example”extends: - github:example-org/example-presets@v1.0.0
defaults: action: ask sandbox: standard
definitions: paths: secrets: - ~/.ssh - ~/.gnupg sandbox: standard: fs: writable: - . deny: - <path:secrets> network: allow: true strict: fs: writable: - ./src deny: - <path:secrets> network: allow: false wrappers: - 'sudo <cmd>' commands: - mycustomtool
rules: - allow: 'git *' - allow: 'cargo test *' sandbox: strict - deny: 'rm -rf /' message: This operation is too dangerous. fix_suggestion: 'trash /' - ask: 'docker *' sandbox: standard