Lists, sets, gets, and resets persistent user preferences with a 3-tier precedence (flag > user setting > default). Other skills read these settings as fallback values.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-caliper-workflow:caliper-settingsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
View and manage persistent user preferences. Settings follow 3-tier precedence: CLI flag > user setting > shipped default.
View and manage persistent user preferences. Settings follow 3-tier precedence: CLI flag > user setting > shipped default.
Run the settings script to manage preferences:
caliper-settings list
caliper-settings get <key>
caliper-settings set <key> <value>
caliper-settings reset [key]
Shows each setting with its current value (user override or default), the shipped default, and a description.
Returns the merged value (user override if set, otherwise default). Other skills call this as a fallback when no CLI flag is passed.
Persists a user override. The script validates the value against the setting's type (bool, enum, int) and rejects invalid values with a clear error.
Removes a user override so the setting falls back to its shipped default. With no key argument, resets all settings.
| Key | Type | Default | Used by |
|---|---|---|---|
skip_tests | bool | false | pr-create |
review_mode | enum | (prompt) | pr-review |
skip_review | bool | false | pr-review |
merge_strategy | enum | squash | pr-merge |
workflow | enum | (prompt) | design, orchestrate |
execution_mode | enum | (prompt) | design, orchestrate |
planner_model | enum | opus | design |
task_implementer_model | enum | opus | orchestrate |
design_reviewer_model | enum | opus | design, design-review |
plan_reviewer_model | enum | sonnet | design, plan-review |
task_reviewer_model | enum | sonnet | orchestrate |
implementation_reviewer_model | enum | sonnet | orchestrate, implementation-review |
pr_reviewer_model | enum | opus | pr-review |
review_wait_minutes | int | 5 | orchestrate, pr-review |
re_review_threshold | int | 5 | design, orchestrate, review skills |
Other skills check settings as fallbacks when no CLI flag is provided. For example, pr-create checks skip_tests only when --skip-tests wasn't passed. CLI flags always win — settings are tier 2, flags are tier 1.
npx claudepluginhub nikhilsitaram/claude-caliper --plugin claude-caliper-toolingQueries or modifies Gran Maestro workflow settings (config.json) including feedback rounds, discussion limits, concurrency, and server options.
Manages Claude Code settings including settings.json (user/project/enterprise), permissions, sandbox, plugins, env vars, and tools via docs-management delegation. For config setup and troubleshooting.
Records user preferences for best practices (e.g., testing framework, coding style) as persistent pins, supporting quick one-step saving or promotion of session-level choices.