oc-create-command
Guides through creating a new OpenCode command with interactive interview, $VARIABLE configuration, and validation. Use when user says "create opencode command", "new opencode command", "build command for opencode", or wants to create an OpenCode command markdown file.
What this skill does
# Create OpenCode Command
You are initiating the OpenCode command creation workflow. This process guides the user through an interactive interview to gather requirements, generates a properly formatted command markdown file, and validates the result.
## Critical Rules
### AskUserQuestion is MANDATORY
**IMPORTANT**: You MUST use the `AskUserQuestion` tool for ALL questions to the user. Never ask questions through regular text output.
---
## Phase 1: Load References
Read the OpenCode platform overview and command guide:
1. Read `${CLAUDE_PLUGIN_ROOT}/references/platform-overview.md`
2. Read `${CLAUDE_PLUGIN_ROOT}/references/command-guide.md`
---
## Phase 2: Interview
Gather requirements through a structured interview.
### Round 1: Basics
**Question 1 — Command Name:**
- Header: "Command Name"
- Question: "What should this command be named? It will be invoked as `/{name}`. Use kebab-case."
- Options:
- "I'll type the name" — Let me provide a custom name
**Question 2 — Purpose:**
- Header: "Purpose"
- Question: "What does this command do?"
- Options:
- "Workflow shortcut" — Automates a frequently used multi-step process
- "Template task" — Structured prompt with variable inputs
- "Scripted operation" — Executes specific tool sequences
- "Custom" — I'll describe it
**Question 3 — Description:**
- Header: "Description"
- Question: "Briefly describe what this command does (shown in the command list)."
- Options:
- "I'll type a description" — Let me write a custom description
### Round 2: Variables & Model
**Question 1 — Variables:**
- Header: "Variables"
- Question: "Does the command need user-provided input via $VARIABLE placeholders?"
- Options:
- "Yes, I'll list them" — I need specific named variables
- "Just $ARGUMENTS" — A single free-text argument
- "No variables" — The command works without user input
- multiSelect: false
If "Yes":
**Question 2 — Variable Names:**
- Header: "Var Names"
- Question: "List the variable names (e.g., FILE_PATH, TARGET_BRANCH, OUTPUT_FORMAT). Each becomes a $VARIABLE prompt."
- Options:
- "I'll type them" — Let me list the variable names
**Question 3 — Model Override:**
- Header: "Model"
- Question: "Should this command use a specific model? (Commands are the only extension type with per-invocation model override.)"
- Options:
- "No override (Recommended)" — Use the session's current model
- "Opus" — Use anthropic/claude-opus-4-6 for complex reasoning
- "Sonnet" — Use anthropic/claude-sonnet-4-6 for balanced performance
- "Haiku" — Use anthropic/claude-haiku-4-5 for speed
- multiSelect: false
**Question 4 — Agent Routing:**
- Header: "Agent"
- Question: "Should this command be routed to a specific agent?"
- Options:
- "No (Recommended)" — Use the current agent context
- "Yes" — Route to a specific named agent
- multiSelect: false
### Round 3: Location
**Question 1 — Location:**
- Header: "Location"
- Question: "Where should the command be created?"
- Options:
- "Project (.opencode/commands/)" — Available only in this project
- "Global (~/.config/opencode/commands/)" — Available in all projects
- "Custom path" — I'll specify the directory
- multiSelect: false
### Interview Summary
Present a summary:
```
## Command Summary
- **Name**: {name} (invoked as /{name})
- **Description**: {description}
- **Variables**: {list of $VARIABLE names or "none"}
- **Model override**: {model or "none"}
- **Agent**: {agent name or "none"}
- **Location**: {path}
```
Use `AskUserQuestion` to confirm:
- Header: "Confirm"
- Question: "Does this look correct? Ready to generate the command?"
- Options:
- "Yes, generate it"
- "Make changes"
---
## Phase 3: Generate
Spawn the generator agent:
```
Task:
subagent_type: "agent-alchemy-opencode-tools:oc-generator"
prompt: |
Generate an OpenCode command with these specifications:
Type: command
Name: {name}
Description: {description}
Variables: {list of $VARIABLE names}
Model override: {model or "none"}
Agent: {agent name or "none"}
Subtask: {true/false}
Purpose: {detailed purpose from interview}
Target path: {target directory}/commands/{name}.md
NOTE: Commands support `agent` (which agent executes) and `subtask` (force subagent execution) frontmatter fields in addition to `model` and `description`.
Reference guide: ${CLAUDE_PLUGIN_ROOT}/references/command-guide.md
Template: ${CLAUDE_PLUGIN_ROOT}/references/templates/command-template.md
Interview notes:
{all gathered requirements}
```
---
## Phase 4: Validate
Spawn the validator agent:
```
Task:
subagent_type: "agent-alchemy-opencode-tools:oc-validator"
prompt: |
Validate the following OpenCode artifact:
Type: command
Path: {path to generated file}
Reference guide: ${CLAUDE_PLUGIN_ROOT}/references/command-guide.md
```
If validation fails with errors, fix and re-validate.
---
## Phase 5: Present
Present the generated command:
1. Read the generated file
2. Show the file contents
3. Explain key design decisions:
- $VARIABLE placeholder usage
- Model override rationale (if applicable)
- Why command vs skill was the right choice
4. Show validation results
5. Explain how to invoke: `/{name}` in the OpenCode TUI
6. If variables are present, show what the user will be prompted for
**CRITICAL**: Complete ALL 5 phases before finishing.
Related in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing — use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.