OpenSpec
ReferenceConfiguration

CLI settings (config.json)

Every field of config.json: how the openspec CLI behaves on your machine.

Location

The CLI keeps its machine-level settings at ~/.config/openspec/config.json on macOS and Linux, and %APPDATA%\openspec\config.json on Windows; $XDG_CONFIG_HOME wins on every platform when set. The openspec config command reads and edits it.

Fields

KeyTypeRequiredEffect
profilestring: core or customNoPicks the workflow set openspec init installs
deliverystring: both, skills, or commandsNoWhether init installs skills, slash commands, or both
workflowslist of stringsNoThe workflow list a custom profile installs
featureFlagsmap: flag → booleanNoBoolean feature toggles
defaultStorestringNoMachine-level fallback store for root resolution
openerslistNoThe tools worksets open in, and how each is launched
telemetrymapNoState the CLI keeps: anonymous id and notice-seen

profile

Which workflow set openspec init installs. Defaults to core: propose, explore, apply, update, sync, and archive. Setting custom installs exactly the workflows list instead.

delivery

Whether init installs workflows as skills, as slash commands, or both. Defaults to both.

workflows

The workflows a custom profile installs; ignored when the profile is core. Valid ids: propose, explore, new, continue, apply, update, ff, sync, archive, bulk-archive, verify, onboard.

featureFlags

Boolean toggles keyed by flag name, set with openspec config set featureFlags.<flag> true. No flag is read by the CLI today.

defaultStore

The machine-level fallback store id for root resolution, consulted only when no --store flag, local openspec/, or project store: pointer resolves. The full ladder is Root resolution.

openers

The tools a workset can open in, and how each is launched. Entries are hand-edited and validated on use; each may set style (workspace-file or attach-dirs), label, command, args, and attach_flag, and is merged over the built-in defaults.

telemetry

State the CLI writes for telemetry: your anonymous id and whether the first-run notice was shown. It is not the opt-out; disabling telemetry is an environment variable, on Environment variables.

Example

A filled-in config.json:

{
  "profile": "core",
  "delivery": "both",
  "featureFlags": {},
  "telemetry": {
    "anonymousId": "5f8a2c1e-4b6d-4f9a-9c3d-7e1b2a8d4c6f",
    "noticeSeen": true
  }
}

On this page