Skip to main content

asym config

View and modify Asymptote CLI configuration settings.
asym config [command]
$ asym config --help

View and modify Asymptote CLI configuration settings.

Available settings:
  secure-by-design   Enable/disable proactive security policy injection for Claude Code (default: off)

Usage:
  asym config [command]

Available Commands:
  get         Get configuration value(s)
  set         Set a configuration value

Flags:
  -h, --help   help for config

Use "asym config [command] --help" for more information about a command.

get

Get the current value of a configuration setting.
asym config get [setting]

Examples

# Get a specific setting
asym config get secure-by-design

# Get all settings
asym config get

set

Set a configuration value.
asym config set [setting] [value]

Examples

# Enable secure-by-design
asym config set secure-by-design true

# Disable secure-by-design
asym config set secure-by-design false

Settings

secure-by-design

Enables proactive security policy injection for Claude Code. When enabled, Asymptote injects your active security policies into Claude’s context at the start of each session, so Claude is aware of your organization’s security requirements before writing any code. Default: false
asym config set secure-by-design true