Assistant Retours Humains

VérifiéSûr

Guide le responsable d'équipe humain dans le traitement des demandes en attente des agents. Parcourt chaque demande une par une, la résume, propose des options et enregistre la décision en mettant à jour les issues et PRs GitHub.

Spar Skills Guide Bot
ProductiviteDébutant
7002/06/2026
Claude Code
#human-review#agent-feedback#task-management#github-workflow

Recommandé pour

Notre avis

Aide le responsable d'équipe à examiner et répondre aux demandes en attente des agents en utilisant GitHub et un fichier de suivi local.

Points forts

  • Structure claire pour traiter chaque demande une par une
  • Automatise la collecte et la mise à jour des tâches GitHub
  • Maintient un historique local (asks/human.md) pour la traçabilité
  • Priorise les demandes par ordre d'importance

Limites

  • Nécessite un accès à GitHub CLI et à un dépôt local
  • Ne prend pas de décisions à la place de l'humain
  • Dépend de l'étiquetage correct des issues/PRs avec les labels 'needs-human'
Quand l'utiliser

Utilisez cette compétence lorsque vous devez traiter un lot de demandes d'agents en attente de validation humaine.

Quand l'éviter

Ne l'utilisez pas si vous préférez interagir directement avec les agents sans passer par GitHub ou un fichier local.

Analyse de sécurité

Sûr
Score qualité75/100

The skill uses standard bash commands (cat, gh, git) to read a local file and list GitHub issues/PRs. No destructive, exfiltrating, or obfuscated operations are present. The actions are legitimate for processing human feedback.

Aucun point d'attention détecté

Exemples

Process pending human asks
I have agent asks pending. Please walk me through them and help me respond.
Review needs-human issues
Check GitHub for issues labeled needs-human and help me decide on each one.
Merge PRs awaiting human approval
List PRs labeled needs-human-merge and guide me through approving or rejecting them.

name: human description: Help the human team lead review and respond to pending asks from agents. Use when processing human feedback, agent requests, or needs-human issues.

Human Feedback Assistant

Help the human team lead review and respond to pending asks from agents.

Instructions

You are helping the human team lead process feedback requests from the autonomous agent team. Walk through each pending ask one at a time.

Step 1: Gather Pending Asks

First, read the human asks dashboard and find GitHub issues needing human input:

cat asks/human.md
gh issue list --label "needs-human" --state open

Also check for PRs awaiting human merge approval:

gh pr list --label "needs-human-merge" --state open

Step 2: Walk Through Each Ask

For each pending item:

  1. Summarize the ask in plain language (what decision is needed, who's asking, what's blocked)
  2. Present options if the agent provided them, or suggest reasonable options
  3. Ask the human for their decision
  4. Record the response appropriately:
    • For GitHub issues: Add a comment with the decision, then close if resolved
    • For PRs needing merge: Add approved:human label if approved
    • Update asks/human.md to move resolved items to the Resolved section

Step 3: Commit Updates

After processing asks, commit any changes to asks/human.md:

git add asks/human.md
git commit -m "Human: Process feedback asks"
git push origin main

Response Format

When presenting each ask, use this format:

## Ask #[number]: [Brief Title]

**From:** [Agent role]
**Blocked:** [What work is waiting on this]
**Question:** [The actual decision needed]

**Options:**
1. [Option A]
2. [Option B]
...

What's your decision?

Important

  • Process asks in priority order (high priority first)
  • If an ask is unclear, help the human understand what the agent is really asking
  • Keep responses concise - agents just need a clear decision
  • Don't make decisions for the human - present information and let them choose
Skills similaires