🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Checklist

by @welliu

Collaborative task checklist manager for AI agents with sequential, parallel, and looping execution. Features agent coordination, dependencies, deadlock prev...

Versionv1.2.1
Downloads776
Installs2
TERMINAL
clawhub install checklist

πŸ“– About This Skill


name: checklist version: 1.2.1 description: Collaborative task checklist manager for AI agents with sequential, parallel, and looping execution. Features agent coordination, dependencies, deadlock prevention, and loop safety.

Checklist πŸ“‹

Collaborative task checklist manager for AI agents with advanced execution modes.


🎯 When to Use

Use this skill when:

  • Multi-agent collaboration - Multiple AI agents need to coordinate
  • Sequential tasks - Steps must execute in order
  • Parallel tasks - Steps can run simultaneously
  • Looping workflows - Repeat until condition is met
  • Complex coordination - Avoid deadlocks and infinite loops

  • 🌐 Execution Modes

    1. Sequential (串葌)

    Steps execute one after another:
    A β†’ B β†’ C β†’ D
    

    2. Parallel (幢葌)

    Steps execute simultaneously:
    A
    B ← Branch together
    C
    

    3. Loop (εΎͺ环)

    Repeat until exit condition:
    while condition:
        A β†’ B
        if exit_condition:
            break
    


    ⚑ Quick Commands

    Execution Control

    # Set execution mode
    checklist mode sequential   # 串葌
    checklist mode parallel    # 幢葌
    checklist mode loop       # εΎͺ环

    Configure loop

    checklist loop set 5 # Set max 5 iterations checklist loop condition "" # Set exit condition checklist loop count # Show current loop count

    Run checklist

    checklist run # Execute with current mode checklist run --dry-run # Preview without executing

    Safety

    checklist check # Check for deadlocks checklist validate # Validate entire workflow

    Agent Commands

    checklist agent register 
    checklist agent use 
    checklist assign  
    checklist claim
    checklist status
    

    Task Commands

    checklist create