From opsx-omc-bridge
Bridge skill that delegates simple OpenSpec changes to Oh My ClaudeCode (OMC) autopilot mode. Triggered when user says "implement quickly", "apply now", "delegate to autopilot", "apply opsx", "start spec implementation", or when an OpenSpec change folder has tasks.md ready with only straightforward implementation remaining. Best for 3 or fewer tasks, single domain, no parallelization needed.
npx claudepluginhub kyongsik-yoon/opsx-omc-bridge --plugin opsx-omc-bridgeThis skill uses the workspace's default tool permissions.
Bridge skill that hands off simple OpenSpec planning artifacts to OMC autopilot.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Analyzes competition with Porter's Five Forces, Blue Ocean Strategy, and positioning maps to identify differentiation opportunities and market positioning for startups and pitches.
Bridge skill that hands off simple OpenSpec planning artifacts to OMC autopilot. Eliminates the manual copy-paste of tasks.md and context re-explanation.
Scan openspec/changes/ directory for active changes.
ls -d openspec/changes/*/tasks.md 2>/dev/null | grep -v archive
/opsx:propose or /opsx:ff first and stopCheck minimum required files in the selected change folder:
CHANGE_DIR="openspec/changes/<change-name>"
# Required: tasks.md
test -f "$CHANGE_DIR/tasks.md" || echo "MISSING: tasks.md"
# Recommended: proposal.md (for context)
test -f "$CHANGE_DIR/proposal.md" || echo "WARNING: proposal.md missing - context may be insufficient"
If tasks.md is missing, stop. If proposal.md is missing, warn and proceed.
Read files in order to assemble implementation context:
proposal.md — Motivation and scope (Why/What)design.md — Technical approach (How) — read if present, skip if absenttasks.md — Implementation checklist (read in full)Extract the following:
- [ ] items from tasks.mdCompose gathered context into a single autopilot instruction. Key principles:
Prompt structure to compose:
autopilot Implement the following changes.
## Background
[1-2 sentence summary extracted from proposal.md]
## Technical Constraints
[Key decisions from design.md. Omit this section if design.md is absent]
## Tasks
[Full text of pending items from tasks.md]
## Guidelines
- Check off each task as [x] in tasks.md upon completion
- Strictly follow architectural decisions from design.md
- Verify existing tests are not broken
Once OMC autopilot completes successfully, present the user with a choice for the next step:
Implementation complete. What would you like to do next?
1. /opsx:verify — Validate the implementation against the spec
2. /opsx:archive — Archive this change (skip verification)
3. Skip — Do nothing for now
Choose [1/2/3]:
Use AskUserQuestion to present this choice. Based on the user's selection:
/opsx:verify skill/opsx:archive skill/opsx:apply — it is an alternative path leveraging OMC's autonomous execution.deploy skill instead./opsx:apply.