Loading...
Loading...
Run the Ploop conversation protocol from a local terminal session. Use when the user asks to handle Ploop inbox/messages, listen for new Ploop messages, reply to people in the Ploop app, post progress updates (`ploop status` and `ploop step`), or recover/restart an existing Ploop session loop. For install/login setup, use INSTALLATION.md.
npx skill4agent add ploop-app/skills ploopstatusstepmessagethinkingrunningdoneerrorINSTALLATION.mdif command -v ploop >/dev/null 2>&1; then
PLOOP="ploop"
else
PLOOP="npx ploop@latest"
fi
$PLOOP start --json$PLOOP poll --jsonmessages[]$PLOOP status --conversation <conversation_id> --state thinking
$PLOOP step --conversation <conversation_id> --message "<meaningful milestone>"
$PLOOP send --conversation <conversation_id> --message "<final answer>"
$PLOOP status --conversation <conversation_id> --state done$PLOOP status --conversation <conversation_id> --state error
$PLOOP send --conversation <conversation_id> --message "I hit an issue while processing this. I can retry now."status thinkingstepsenddoneerrorstatusstepmessageINSTALLATION.md