Agent skill · Testing & QA

fix

Meta-skill workflow orchestrator for bug investigation and resolution. Routes to debug, implement, test, and commit based on scope.

parcadeigithub.com/parcadeiGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill fix --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 14 KB
Bundled scripts: none
Allowed tools: BashReadGrepWriteEditTask
Path: .claude/skills/fix/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Usage
  2. Question Flow (No Arguments)
  3. Phase 0: Workflow Selection
  4. Phase 1: Issue Type
  5. Phase 2: Issue Details
  6. Phase 3: Investigation Depth
  7. Phase 4: Testing & Commit
  8. Summary Before Execution
  9. Scopes
  10. Options
  11. Workflow
  12. Phase 1: Parse Arguments
  13. Phase 2: Investigation (Parallel)
  14. Phase 3: Diagnosis Report
Commands it runs
Parse scope and options
for arg in "$@"; do
case $arg in
esac
done
More from Continuous-Claude-v3
All skills →
About this skill
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.

Keep going