LLM Skills
~/catalogue/debugging et maintenance//run-prompt

Exécuter le prompt

/run-prompt

Statut Git : !`git status --short`

glittercowboyglittercowboy
2.0k
1 avril 2026
MIT License
// contenu du skill

name: run-prompt

description: Delegate one or more prompts to fresh sub-task contexts with parallel or sequential execution

argument-hint: <prompt-number(s)-or-name> [--parallel|--sequential]

allowed-tools: [Read, Task, Bash(ls:), Bash(mv:), Bash(git:*)]


<context>

Git status: !git status --short

Recent prompts: !ls -t ./prompts/*.md | head -5

</context>

<objective>

Execute one or more prompts from ./prompts/ as delegated sub-tasks with fresh context. Supports single prompt execution, parallel execution of multiple independent prompts, and sequential execution of dependent prompts.

</objective>

<input>

The user will specify which prompt(s) to run via $ARGUMENTS, which can be:

Single prompt:

  • Empty (no arguments): Run the most recently created prompt (default behavior)
  • A prompt number (e.g., "001", "5", "42")
  • A partial filename (e.g., "user-auth", "dashboard")

Multiple prompts:

  • Multiple numbers (e.g., "005 006 007")
  • With execution flag: "005 006 007 --parallel" or "005 006 007 --sequential"
  • If no flag specified with multiple prompts, default to --sequential for safety

</input>

<process>

<step1parsearguments>

Parse $ARGUMENTS to extract:

  • Prompt numbers/names (all arguments that are not flags)
  • Execution strategy flag (--parallel or --sequential)

<examples>

  • "005" → Single prompt: 005
  • "005 006 007" → Multiple prompts: [005, 006, 007], strategy: sequential (default)
  • "005 006 007 --parallel" → Multiple prompts: [005, 006, 007], strategy: parallel
  • "005 006 007 --sequential" → Multiple prompts: [005, 006, 007], strategy: sequential

</examples>

</step1parsearguments>

<step2resolvefiles>

For each prompt number/name:

  • If empty or "last": Find with !ls -t ./prompts/*.md | head -1
  • If a number: Find file matching that zero-padded number (e.g., "5" matches "005-.md", "42" matches "042-.md")
  • If text: Find files containing that string in the filename

<matching_rules>

  • If exactly one match found: Use that file
  • If multiple matches found: List them and ask user to choose
  • If no matches found: Report error and list available prompts

</matching_rules>

</step2resolvefiles>

<step3_execute>

<single_prompt>

  1. Read the complete contents of the prompt file
  2. Delegate as sub-task using Task tool with subagent_type="general-purpose"
  3. Wait for completion
  4. Archive prompt to ./prompts/completed/ with metadata
  5. Commit all work:
  • Stage files YOU modified with git add [file] (never git add .)
  • Determine appropriate commit type based on changes (fix|feat|refactor|style|docs|test|chore)
  • Commit with format: [type]: [description] (lowercase, specific, concise)
  1. Return results

</single_prompt>

<parallel_execution>

  1. Read all prompt files
  2. Spawn all Task tools in a SINGLE MESSAGE (this is critical for parallel execution):

<example>

Use Task tool for prompt 005

Use Task tool for prompt 006

Use Task tool for prompt 007

(All in one message with multiple tool calls)

</example>

  1. Wait for ALL to complete
  2. Archive all prompts with metadata
  3. Commit all work:
  • Stage files YOU modified with git add [file] (never git add .)
  • Determine appropriate commit type based on changes (fix|feat|refactor|style|docs|test|chore)
  • Commit with format: [type]: [description] (lowercase, specific, concise)
  1. Return consolidated results

</parallel_execution>

<sequential_execution>

  1. Read first prompt file
  2. Spawn Task tool for first prompt
  3. Wait for completion
  4. Archive first prompt
  5. Read second prompt file
  6. Spawn Task tool for second prompt
  7. Wait for completion
  8. Archive second prompt
  9. Repeat for remaining prompts
  10. Archive all prompts with metadata
  11. Commit all work:
  • Stage files YOU modified with git add [file] (never git add .)
  • Determine appropriate commit type based on changes (fix|feat|refactor|style|docs|test|chore)
  • Commit with format: [type]: [description] (lowercase, specific, concise)
  1. Return consolidated results

</sequential_execution>

</step3_execute>

</process>

<context_strategy>

By delegating to a sub-task, the actual implementation work happens in fresh context while the main conversation stays lean for orchestration and iteration.

</context_strategy>

<output>

<singlepromptoutput>

✓ Executed: ./prompts/005-implement-feature.md

✓ Archived to: ./prompts/completed/005-implement-feature.md

<results>

[Summary of what the sub-task accomplished]

</results>

</singlepromptoutput>

<parallel_output>

✓ Executed in PARALLEL:

  • ./prompts/005-implement-auth.md
  • ./prompts/006-implement-api.md
  • ./prompts/007-implement-ui.md

✓ All archived to ./prompts/completed/

<results>

[Consolidated summary of all sub-task results]

</results>

</parallel_output>

<sequential_output>

✓ Executed SEQUENTIALLY:

  1. ./prompts/005-setup-database.md → Success
  2. ./prompts/006-create-migrations.md → Success
  3. ./prompts/007-seed-data.md → Success

✓ All archiv

// source originale publique
glittercowboy/taches-cc-resources
/commands/run-prompt.md
Licence : MIT License
Projet indépendant, non affilié à Anthropic. Ce skill reste la propriété de son auteur original.
// installer ce skill
Collez cette commande dans votre terminal à la racine de votre projet :
mkdir -p .claude/commands && curl -o ".claude/commands/run-prompt.md" "https://raw.githubusercontent.com/glittercowboy/taches-cc-resources/main/commands/run-prompt.md"
Ensuite dans Claude Code, tapez /run-prompt pour l'activer.
open_in_newVoir la source originale
// sauvegarder
Sauvegarde disponible après connexion.
loginSe connecter pour sauvegarder
// informations
Créateurglittercowboy
Étoiles 2.0k
LicenceMIT License
Mis à jour1 avril 2026
Format.md
AccèsGratuit
// similaires

Skills Debugging et maintenance

Voir toutarrow_forward