Create or update OpenCode skills via one unified command with operation routing. :auto/:confirm.
Scanned 9/21/2026
Install to Claude Code
npx -y skills add MichelKerkmeester/opencode--spec-kit-skilled-agent-orchestration --skill commands --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Commands?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/michelkerkmeester-commands)More formats (shields.io, HTML) on the badges page.
---
description: Create or update OpenCode skills via one unified command with operation routing. :auto/:confirm.
argument-hint: "<skill-name> [operation] [type] [--path <dir>] [--chained] [:auto|:confirm]"
allowed-tools: Read, Write, Edit, Bash, Glob, Grep, TodoWrite
---
# /create:skill Router
This command is a thin router. It separates execution routing from user-facing presentation.
## 1. ROUTER CONTRACT
Route /create:skill to its presentation contract and workflow YAML for creating or updating OpenCode skills through the unified skill command.
- Do not split behavior across legacy command definitions.
- Do not edit workflow YAML while executing this command.
---
## 2. OWNED ASSETS
| Purpose | Asset |
|---------|-------|
| Presentation contract | `.skilled/commands/create/assets/create-skill-presentation.txt` |
| Auto workflow | `.skilled/commands/create/assets/create-skill-auto.yaml` |
| Confirm workflow | `.skilled/commands/create/assets/create-skill-confirm.yaml` |
---
## 3. MODE ROUTING
- If any referenced asset is missing, stop and report the missing path.
- The YAML owns workflow behavior; the presentation Markdown owns user-visible wording and layout.
1. Read `.skilled/commands/create/assets/create-skill-presentation.txt`.
2. Run the presentation contract's Phase 0 verification and setup resolution.
3. Resolve operation from setup: `full-create`, `full-update`, `reference-only`, or `asset-only`.
4. Resolve execution mode from `$ARGUMENTS` or the setup answer: `:auto` or `:confirm`.
5. Load the workflow YAML bound to the resolved mode from the EXECUTION TARGETS table below.
6. Execute the selected YAML step by step and route to the resolved operation branch.
7. Use the presentation contract, not this router, for user prompts, setup/status dashboards, and final result display.
---
## 4. EXECUTION TARGETS
| Mode | Target |
|------|--------|
| `:auto` | `.skilled/commands/create/assets/create-skill-auto.yaml` |
| `:confirm` or omitted mode | `.skilled/commands/create/assets/create-skill-confirm.yaml` |
---
## 5. PRESENTATION BOUNDARY
The following content lives only in `.skilled/commands/create/assets/create-skill-presentation.txt`:
- Startup questions, Phase 0 verification, setup dashboard, operation display, status display, completion template, and next-step text.
The router must not invent visible wording for those surfaces; it only resolves operation, execution mode, and workflow selection.
---
## 6. WORKFLOW SUMMARY
The bound workflow YAML (`create-skill-auto.yaml` for `:auto`, `create-skill-confirm.yaml` for `:confirm` or an omitted mode) runs the unified skill workflow step by step after Phase 0 verification and setup resolution, then routes to the resolved `full-create`, `full-update`, `reference-only`, or `asset-only` operation branch to create or update OpenCode skills. `:auto` executes autonomously; `:confirm` runs the same steps as an interactive checkpointed workflow. All user-facing prompts, setup/status dashboards, and result display come from the presentation contract, not this router.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!