fix
Meta-skill workflow orchestrator for bug investigation and resolution. Routes to debug, implement, test, and commit based on scope.
npx skills add parcadei/Continuous-Claude-v3 --skill fix --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Fix Workflow orchestrator for bug investigation and resolution. Chains specialized skills based on issue scope. ## Usage ``` /fix <scope> [options] [description] ``` ## Question Flow (No Arguments) If the user types just `/fix` with no or partial arguments, guide them through this question flow. Use AskUserQuestion for each phase. ### Phase 0: Workflow Selection ```yaml question: "What would you like to fix?" header: "Fix type" options: - label: "Help me choose (Recommended)" description: "I'll ask questions to pick the right fix workflow" - label: "Bug - something is broken" description: "Chain: investigate → diagnose → implement → test → commit" - label: "Hook - Claude Code hook issue" description: "Chain: debug-hooks → hook-developer → implement → test" - label: "Dependencies - import/package errors" description: "Chain: preflight → research → plan → implement → qlty-check" - label: "PR Comments - address reviewer feedback" description: "Chain: github-search → research → plan → implement → commit" ``` **Mapping:** - "Help me choose" → Continue to Phase 1-4 questions - "Bug" → Set scope=bug, skip to Phase 2 (issue details) - "Hook" → Set scope=hook, skip to Phase 2 (issue detai
- Usage
- Question Flow (No Arguments)
- Phase 0: Workflow Selection
- Phase 1: Issue Type
- Phase 2: Issue Details
- Phase 3: Investigation Depth
- Phase 4: Testing & Commit
- Summary Before Execution
- Scopes
- Options
- Workflow
- Phase 1: Parse Arguments
- Phase 2: Investigation (Parallel)
- Phase 3: Diagnosis Report
Parse scope and options for arg in "$@"; do case $arg in esac done
What does the fix skill do?
Meta-skill workflow orchestrator for bug investigation and resolution. Routes to debug, implement, test, and commit based on scope.
How do I install it?
Run `npx skills add parcadei/Continuous-Claude-v3 --skill fix --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
