Skip to content
Documentation

CLI Reference

Every qring command in one place. Just getting set up? Start with Getting Started or wire up your editor in MCP Setup.

Reference

CLI complete reference

Every CLI command and option is listed below with at least one real invocation example. 55 commands in total.

55 of 55

qring set <key> [value]

Store a secret (with optional quantum metadata)

Options

-g, --global-p, --project--team <id>--org <id>--project-path <path>-e, --env <env>--ttl <seconds>--expires <iso>--description <desc>--tags <tags>--rotation-format <format>--rotation-prefix <prefix>--requires-approval--jit-provider <provider>

Examples

qring set
$ qring set OPENAI_API_KEY "sk-..." --project --env dev --tags ai,backend
qring set
$ qring set DB_PASSWORD --ttl 3600 --rotation-format password --requires-approval

qring get <key>

Retrieve a secret (collapses superposition if needed)

Options

-g, --global-p, --project--team <id>--org <id>--project-path <path>-e, --env <env>--raw

Examples

qring get
$ qring get OPENAI_API_KEY --project --env prod

qring delete <key> (alias: rm)

Remove a secret from the keyring

Options

-g, --global-p, --project--project-path <path>-y, --yes--json

Examples

qring delete
$ qring delete LEGACY_TOKEN --project

qring has <key>

Check whether a secret exists — exit 0 if present, 1 if not; decay-aware (expired counts as absent)

Options

-g, --global-p, --project--team <id>--org <id>--project-path <path>-q, --quiet--json

Examples

qring has
$ qring has OPENAI_API_KEY --quiet && echo configured

qring list (alias: ls)

List all secrets with quantum status indicators

Options

-g, --global-p, --project--team <id>--org <id>--project-path <path>--show-decay-t, --tag <tag>--expired--stale-f, --filter <pattern>--json

Examples

qring list
$ qring list --project --tag payments --filter "STRIPE_*" --show-decay

qring inspect <key>

Show full quantum state of a secret

Options

-g, --global-p, --project--project-path <path>--json

Examples

qring inspect
$ qring inspect OPENAI_API_KEY --project

qring export

Export secrets as .env or JSON (collapses superposition)

Options

-f, --format <format>-g, --global-p, --project--project-path <path>-e, --env <env>-k, --keys <keys>-t, --tags <tags>

Examples

qring export
$ qring export --format env --project --env prod --keys OPENAI_API_KEY,STRIPE_KEY

qring import <file>

Import secrets from a .env file

Options

-g, --global-p, --project--project-path <path>-e, --env <env>--skip-existing--dry-run--json

Examples

qring import
$ qring import .env --project --skip-existing

qring check

Validate project secrets against .q-ring.json manifest

Options

--project-path <path>--json

Examples

qring check
$ qring check --project-path .

qring validate [key]

Test if a secret is actually valid with its target service

Options

-g, --global-p, --project--project-path <path>--provider <name>--all--manifest--list-providers--json

Examples

qring validate
$ qring validate OPENAI_API_KEY --project
qring validate
$ qring validate --all --manifest --project

qring exec <command...>

Run a command with secrets injected into its environment (output auto-redacted)

Options

-g, --global-p, --project--project-path <path>-e, --env <env>-k, --keys <keys>-t, --tags <tags>--profile <name>

Examples

qring exec
$ qring exec --project --profile restricted --keys OPENAI_API_KEY -- node "scripts/smoke.js"

qring run <command...>

Run a command with only declared secrets injected — .q-ring.json manifest keys plus qring:// refs from .env (least-privilege sibling of exec; output auto-redacted)

Options

--project-path <path>-e, --env <env>--env-file <files...>--no-manifest--profile <name>--strict--dry-run

Examples

qring run
$ qring run -- pnpm dev
qring run
$ qring run --dry-run -- pnpm dev
qring run
$ qring run --env prod --env-file .env.prod -- ./deploy.sh

qring setup <editor>

Wire the q-ring MCP server into an editor's MCP config (cursor, kiro, claude) — merged non-destructively

Options

-g, --global--project-path <path>--force--dry-run--json

Examples

qring setup
$ qring setup cursor
qring setup
$ qring setup kiro --dry-run

qring push <target>

Push manifest secrets to a deployment platform via its own CLI (github, vercel, cloudflare) — values travel over stdin, never argv; every push is audited

Options

-k, --keys <keys>--project-path <path>-e, --env <env>--repo <owner/name>--vercel-env <envs>--dry-run--json

Examples

qring push
$ qring push github --repo you/your-app
qring push
$ qring push vercel --vercel-env production,preview
qring push
$ qring push github --keys DATABASE_URL,API_KEY --dry-run

qring scan [dir]

Scan a codebase for hardcoded secrets

Options

--fix-g, --global-p, --project--project-path <path>--json

Examples

qring scan
$ qring scan src --fix --project

qring lint <files...>

Lint specific files for hardcoded secrets (with optional auto-fix)

Options

--fix-g, --global-p, --project--project-path <path>--json

Examples

qring lint
$ qring lint src/config.ts src/client.ts --fix --project

qring context (alias: describe)

Show safe, redacted project context for AI agents (no secret values exposed)

Options

-g, --global-p, --project--project-path <path>--json

Examples

qring context
$ qring context --project --json

qring remember <key> <value>

Store a key-value pair in encrypted agent memory (persists across sessions)

No command-specific options.

Examples

qring remember
$ qring remember deployment_note "rotate Stripe key after release"

qring recall [key]

Retrieve a value from agent memory, or list all keys

Options

--json

Examples

qring recall
$ qring recall deployment_note
qring recall
$ qring recall

qring forget <key>

Delete a key from agent memory

Options

--all-y, --yes

Examples

qring forget
$ qring forget deployment_note

qring approve <key>

Grant a scoped, reasoned, HMAC-verified approval token for MCP secret access

Options

-g, --global-p, --project--project-path <path>--for <seconds>--reason <text>--revoke--list

Examples

qring approve
$ qring approve OPENAI_API_KEY --project --for 1800 --reason "temporary agent read"

qring approvals

List all approval tokens with verification status

Options

--json

Examples

qring approvals
$ qring approvals

qring hook:install

Install a git pre-commit hook that scans for hardcoded secrets

Options

--project-path <path>

Examples

qring hook:install
$ qring hook:install --project-path .

qring hook:uninstall

Remove the q-ring pre-commit hook

Options

--project-path <path>

Examples

qring hook:uninstall
$ qring hook:uninstall --project-path .

qring hook:run

Run the pre-commit secret scan (called by the git hook)

No command-specific options.

Examples

qring hook:run
$ qring hook:run

qring wizard <name>

Set up a new service integration with secrets, manifest, and hooks

Options

--keys <keys>--provider <provider>--tags <tags>--hook-exec <cmd>-g, --global-p, --project--project-path <path>-y, --yes

Examples

qring wizard
$ qring wizard stripe --keys STRIPE_KEY,STRIPE_WEBHOOK_SECRET --provider stripe --tags payments,prod

qring analyze

Analyze secret usage patterns and provide optimization suggestions

Options

-g, --global-p, --project--project-path <path>--json

Examples

qring analyze
$ qring analyze --project

qring env

Show detected environment (wavefunction collapse context)

Options

--project-path <path>--json

Examples

qring env
$ qring env --project-path .

qring generate (alias: gen)

Generate a cryptographic secret (quantum noise)

Options

-f, --format <format>-l, --length <n>--prefix <prefix>-s, --save <key>-g, --global-p, --project--project-path <path>

Examples

qring generate
$ qring generate --format api-key --prefix sk- --save OPENAI_API_KEY --project

qring entangle <sourceKey> <targetKey>

Link two secrets — rotating one updates the other

Options

-g, --global--source-project <path>--target-project <path>

Examples

qring entangle
$ qring entangle API_KEY API_KEY_BACKUP --source-project . --target-project ../worker

qring disentangle <sourceKey> <targetKey>

Unlink two entangled secrets

Options

-g, --global--source-project <path>--target-project <path>

Examples

qring disentangle
$ qring disentangle API_KEY API_KEY_BACKUP --source-project . --target-project ../worker

qring tunnel create <value>

Create a tunneled secret (returns tunnel ID)

Options

--ttl <seconds>--max-reads <n>

Examples

qring tunnel
$ qring tunnel create "temp-token" --ttl 300 --max-reads 1

qring tunnel read <id>

Read a tunneled secret (may self-destruct)

No command-specific options.

Examples

qring tunnel
$ qring tunnel read tu_abc123

qring tunnel destroy <id>

Destroy a tunneled secret immediately

No command-specific options.

Examples

qring tunnel
$ qring tunnel destroy tu_abc123

qring tunnel list (alias: tunnel ls)

List active tunnels

Options

--json

Examples

qring tunnel
$ qring tunnel list

qring teleport pack

Pack secrets into an encrypted bundle

Options

-k, --keys <keys>-g, --global-p, --project--project-path <path>

Examples

qring teleport
$ qring teleport pack --project --keys OPENAI_API_KEY,STRIPE_KEY > bundle.qring

qring teleport unpack [bundle]

Unpack and import secrets from an encrypted bundle

Options

-g, --global-p, --project--project-path <path>--dry-run-y, --yes

Examples

qring teleport
$ qring teleport unpack "$(cat bundle.qring)" --project --dry-run

qring audit

View the audit log (observer effect)

Options

-k, --key <key>-a, --action <action>-n, --limit <n>--anomalies--json

Examples

qring audit
$ qring audit --key OPENAI_API_KEY --action read --limit 50

qring audit:verify

Verify the integrity of the audit hash chain

Options

--json

Examples

qring audit:verify
$ qring audit:verify

qring audit:export

Export audit events in a portable format

Options

--since <date>--until <date>--format <fmt>-o, --output <file>

Examples

qring audit:export
$ qring audit:export --since 2026-03-01 --format json -o audit.json

qring health

Check the health of all secrets

Options

-g, --global-p, --project--project-path <path>--json

Examples

qring health
$ qring health --project

qring hook add

Register a new hook

Options

--key <key>--key-pattern <pattern>--tag <tag>--scope <scope>--action <actions>--exec <command>--url <url>--signal-target <target>--signal-name <signal>--description <desc>

Examples

qring hook
$ qring hook add --key DB_PASSWORD --action write,rotate --exec "pnpm restart:api"
qring hook
$ qring hook add --tag payments --url https://hooks.example.com/qring --action rotate

qring hook list (alias: hook ls)

List all registered hooks

Options

--json

Examples

qring hook
$ qring hook list

qring hook remove <id> (alias: hook rm)

Remove a hook by ID

No command-specific options.

Examples

qring hook
$ qring hook remove hk_abc123

qring hook enable <id>

Enable a hook

No command-specific options.

Examples

qring hook
$ qring hook enable hk_abc123

qring hook disable <id>

Disable a hook

No command-specific options.

Examples

qring hook
$ qring hook disable hk_abc123

qring hook test <id>

Dry-run a hook with a mock payload

No command-specific options.

Examples

qring hook
$ qring hook test hk_abc123

qring env:generate

Generate a .env file from the project manifest (.q-ring.json)

Options

--project-path <path>-o, --output <file>-e, --env <env>-y, --yes

Examples

qring env:generate
$ qring env:generate --project-path . --env prod -o .env

qring status

Launch the live status dashboard in your browser — KPIs, secrets table, manifest, policy, approvals, hooks, anomalies, and audit feed (SSE, never shows secret values)

Options

--port <port>--no-open

Examples

qring status
$ qring status --port 9876 --no-open

qring agent

Start the autonomous agent (background monitor)

Options

-i, --interval <seconds>--auto-rotate-v, --verbose--project-path <paths>--once

Examples

qring agent
$ qring agent --once --auto-rotate --project-path .,../worker

qring rotate <key>

Attempt issuer-native rotation of a secret via its provider

Options

-g, --global-p, --project--project-path <path>--provider <name>--json

Examples

qring rotate
$ qring rotate OPENAI_API_KEY --project --provider openai

qring ci:validate

CI-oriented batch validation of all secrets (exit code 1 on failure)

Options

-g, --global-p, --project--project-path <path>--json

Examples

qring ci:validate
$ qring ci:validate --project --json

qring policy

Show project governance policy summary

Options

--json

Examples

qring policy
$ qring policy --json

qring doctor

Diagnose the q-ring installation — keyring backend round-trip, audit dir + hash chain, .q-ring.json validity, policy, qring-mcp on PATH

Options

--project-path <path>--json

Examples

qring doctor
$ qring doctor
qring doctor
$ qring doctor --json

qring completion <shell>

Print a shell completion script generated from the live command tree (bash, zsh, fish)

No command-specific options.

Examples

qring completion
$ qring completion zsh > ~/.zsh/completions/_qring