mcpbeat

Recipe Task

shinpr/recipe-task

Execute tasks following appropriate rules with rule-advisor metacognition

623 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
664
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/shinpr/claude-code-workflows --skill recipe-task

The instruction itself

2 sections, as written by the author

Execute Skill: llm-friendly-context before writing Agent prompts, handoffs, or generated artifacts.

Execute Skill: subagents-orchestration-guide before making workflow decisions, invoking agents, or resolving findings.

Task Execution with Metacognitive Analysis

Task: $ARGUMENTS

Mandatory Execution Process

Step 1: Rule Selection via rule-advisor (REQUIRED)

Invoke rule-advisor using Agent tool:

  • subagent_type: "dev-workflows-frontend: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)
  • Focus on fundamental purpose, not surface-level work
  • Distinguish between "quick fix" vs "proper solution"
  • Follow Selected Rules (from selectedRules)
  • Review each selected rule section
  • Apply concrete procedures and guidelines
  • Recognize Past Failures (from metaCognitiveGuidance.pastFailures)
  • Apply countermeasures for known failure patterns
  • Use suggested alternative approaches
  • Execute First Action (from metaCognitiveGuidance.firstStep)
  • Start with recommended action
  • Use suggested tools first

Step 3: Create Task List with TaskCreate

Register work steps using TaskCreate. Use "Select and map applicable rules" as the first task and "Verify selected rules and report completion" as the final task.

Break down the task based on rule-advisor's guidance:

  • Reflect taskAnalysis.essence in task descriptions
  • Apply metaCognitiveGuidance.firstStep to first task
  • Restructure tasks considering warningPatterns
  • Set priorities based on dependency order and warningPatterns severity
  • Update each task with TaskUpdate as execution progresses

Step 4: Execute Implementation

Proceed with task execution following:

  • Start with metaCognitiveGuidance.firstStep action from rule-advisor
  • Update task structure with TaskUpdate to reflect rule-advisor insights
  • Selected rules from rule-advisor
  • Task structure (managed via TaskCreate/TaskUpdate)
  • Quality standards defined in the selectedRules output from rule-advisor
  • Monitor warningPatterns flags throughout execution and adjust approach when triggered

How to use it

Copy the folder

Take shinpr/recipe-task from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.