From shinpr-claude-code-workflows
Executes tasks using rule-advisor for metacognitive rule selection, task analysis, TaskCreate for breakdown, and structured implementation following selected rules.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-1 --plugin shinpr-claude-code-workflowsThis skill uses the workspace's default tool permissions.
Task: $ARGUMENTS
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Task: $ARGUMENTS
Step 1: Rule Selection via rule-advisor (REQUIRED)
Invoke rule-advisor using Agent tool:
subagent_type: "dev-workflows:rule-advisor"description: "Rule selection"prompt: "Task: $ARGUMENTS. Select appropriate rules and perform metacognitive analysis."Step 2: Utilize rule-advisor Output
After receiving rule-advisor's JSON response, proceed with:
Understand Task Essence (from taskAnalysis.essence)
Follow Selected Rules (from selectedRules)
Recognize Past Failures (from metaCognitiveGuidance.pastFailures)
Execute First Action (from metaCognitiveGuidance.firstStep)
Step 3: Create Task List with TaskCreate
Register work steps using TaskCreate. Always include: first "Confirm skill constraints", final "Verify skill fidelity".
Break down the task based on rule-advisor's guidance:
taskAnalysis.essence in task descriptionsmetaCognitiveGuidance.firstStep to first taskwarningPatternsStep 4: Execute Implementation
Proceed with task execution following:
metaCognitiveGuidance.firstStep action from rule-advisor