iterate-configure
Configure models, tools, and options for kenken workflow
What this skill does
# kenken Configure
> **For Claude:** This skill manages kenken configuration. Parse arguments and execute accordingly.
## Arguments
| Argument | Action |
| --------- | -------------------------------- |
| (none) | Interactive configuration wizard |
| `--show` | Display current merged config |
| `--reset` | Reset config to defaults |
## --show
Display current configuration by:
1. Load global config from `~/.claude/kenken-config.json` (if exists)
2. Load project config from `.claude/kenken-config.json` (if exists)
3. Merge: project overrides global
4. Display formatted output:
```
kenken Configuration
Block on severity: low
PLAN Stage:
brainstorm: model=inherit, parallel=true
writePlan: model=inherit, parallel=true
planReview: tool=mcp__codex-high__codex
IMPLEMENT Stage:
implementation: model=inherit, implementer=claude, bugFixer=codex-high, enforceLogging=true
simplify: model=inherit, bugFixer=codex-high
implementReview: tool=mcp__codex-high__codex, bugFixer=codex-high
TEST Stage: [disabled]
instructions: (not configured)
commands: lint=make lint, test=make test, coverage=make coverage
coverageThreshold: 80%
testPlan: model=inherit
testImplementation: model=inherit
testReview: tool=mcp__codex-high__codex
FINAL Stage:
codexFinal: tool=mcp__codex-xhigh__codex (fixed)
suggestExtensions: enabled=true, maxSuggestions=3
Config files:
Global: ~/.claude/kenken-config.json [found/not found]
Project: .claude/kenken-config.json [found/not found]
```
## --reset
Ask user which config to reset:
1. Use AskUserQuestion:
- "Which configuration to reset?"
- Options: Global, Project, Both
2. Delete selected file(s)
3. Confirm: "Reset complete. Using defaults."
## Interactive Wizard (no arguments)
### Step 1: Show current config
Display current values (as in --show).
### Step 2: Select stages to configure
Use AskUserQuestion with multiSelect:
- "Which stages do you want to configure?"
- Options: PLAN Stage, IMPLEMENT Stage, TEST Stage, FINAL Stage
### Step 3: Configure selected stages
**For PLAN Stage:**
Ask for each phase:
- brainstorm: model (see Model Names section), parallel (true/false)
- writePlan: model, parallel
- planReview: tool (mcp**codex**codex/mcp**codex-high**codex/claude-review)
Common model options: `inherit`, `sonnet`, `opus`, `haiku`, `opus-4.5`, `sonnet-4`, `sonnet-3.5`
**For IMPLEMENT Stage:**
- implementation: model, implementer (claude/codex-high/codex-xhigh), bugFixer (claude/codex-high/codex-xhigh), enforceLogging (true/false)
- simplify: model, bugFixer
- implementReview: tool, bugFixer
**For TEST Stage:**
- enabled: true/false
- instructions: (freeform text - project-specific testing guidance)
- commands.lint: command to run linting
- commands.test: command to run tests
- commands.coverage: command to generate coverage
- coverageThreshold: threshold (0-100)
- coverageFormat: auto/lcov/cobertura/json
- runTests: timeout (seconds)
- testReview: tool
**For FINAL Stage:**
- suggestExtensions: enabled (true/false), maxSuggestions (1-5)
- (codexFinal tool is fixed, not configurable)
### Step 4: Save location
Ask: "Where to save?"
- Global (~/.claude/kenken-config.json)
- Project (.claude/kenken-config.json)
### Step 5: Save and confirm
1. Create directory if needed
2. Backup existing file (.backup)
3. Merge new values with existing
4. Write JSON with 2-space indent
5. Confirm with summary of changes
## Full Config Schema
```json
{
"version": 1,
"blockOnSeverity": "low",
"stages": {
"plan": {
"brainstorm": { "model": "inherit", "parallel": true },
"writePlan": { "model": "inherit", "parallel": true },
"planReview": { "tool": "mcp__codex-high__codex", "maxRetries": 3 }
},
"implement": {
"implementation": {
"model": "inherit",
"implementer": "claude",
"bugFixer": "codex-high",
"enforceLogging": true
},
"simplify": { "model": "inherit", "bugFixer": "codex-high" },
"implementReview": {
"tool": "mcp__codex-high__codex",
"bugFixer": "codex-high",
"maxRetries": 3
}
},
"test": {
"enabled": false,
"instructions": "",
"commands": {
"lint": "make lint",
"test": "make test",
"coverage": "make coverage"
},
"coverageThreshold": 80,
"coverageFormat": "auto",
"testPlan": { "model": "inherit" },
"testImplementation": { "model": "inherit", "bugFixer": "codex-high" },
"runTests": { "timeout": 300 },
"testReview": {
"tool": "mcp__codex-high__codex",
"bugFixer": "codex-high",
"maxRetries": 3
}
},
"final": {
"codexFinal": {
"tool": "mcp__codex-xhigh__codex",
"bugFixer": "codex-high"
},
"suggestExtensions": { "enabled": true, "maxSuggestions": 3 }
}
},
"git": {
"branchFormat": "{type}/{slug}",
"defaultType": "feat",
"mainBranch": "auto"
},
"logging": {
"directory": ".agents/logs",
"retainDays": 7,
"extractErrors": true
}
}
```
## Defaults Summary
| Setting | Default |
| ------------------ | ------------------------- |
| blockOnSeverity | `low` |
| All models | `inherit` |
| Implementer | `claude` |
| Bug fixer | `codex-high` |
| Review tools | `mcp__codex-high__codex` |
| Final tool | `mcp__codex-xhigh__codex` |
| Test stage | disabled |
| Coverage threshold | 80% |
| Max retries | 3 |
| Extensions | enabled |
| Test instructions | (must be provided) |
| Branch format | `{type}/{slug}` |
| Default type | `feat` |
| Main branch | `auto` (detect) |
## Validation Rules
| Setting | Valid Values |
| --------------- | ------------------------------------------------------------------------------- |
| blockOnSeverity | `high`, `medium`, `low` (blocks on specified level and above) |
| model | `inherit`, or any valid model name (see Model Names below) |
| implementer | `claude`, `codex-high`, `codex-xhigh` (who writes initial code) |
| bugFixer | `claude`, `codex-high`, `codex-xhigh` (who fixes issues found by reviews) |
| tool (review) | `mcp__codex-high__codex`, `mcp__codex-xhigh__codex`, `claude-review` (see note) |
| tool (final) | `mcp__codex-xhigh__codex` only (fixed) |
| threshold | 0-100 |
| maxRetries | 1-10 |
| timeout | 60-3600 (seconds) |
| maxSuggestions | 1-5 |
| instructions | non-empty string (required when test.enabled=true) |
| commands.\* | valid shell command string |
| coverageFormat | `auto`, `lcov`, `cobertura`, `json` |
| branchFormat | string with placeholders: `{type}`, `{slug}`, `{date}`, `{user}` |
| defaultType | `feat`, `fix`, `chore`, `refactor`, `docs`, `test` |
| mainBranch | `auto`, `main`, `master`, or custom branch name |
**Note on `claude-review`:** This option uses the `superpowers:requesting-code-review` skill instead of Codex MCP. It's available as a fallback when Codex MCP is notRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.