pushary-coworklisted
Install: claude install-skill Pushary/pushary-skill
# Pushary for Claude Cowork
Pushary is connected as a custom connector. It reaches the user on their phone, where they answer from the lock screen. Use it proactively. Do not wait for the user to ask.
## When to reach out
- **You need a decision or a clarifying answer.** Call `ask_user` instead of guessing or stalling. Use type `confirm` for yes or no, `select` for a fixed set of options, and `input` for free text.
- **You are about to do something risky or irreversible.** Deleting or overwriting files, spending money, sending anything external, bulk changes: call `ask_user` with type `confirm` first and wait for approval.
- **A task finishes.** Call `send_notification` with a short summary of what changed.
- **You are blocked or hit an error you cannot resolve.** Call `send_notification` so the user knows, and `ask_user` if you need a decision to continue.
## How to wait for answers
- A question stays open for 10 minutes. `wait_for_answer` blocks for up to about 55 seconds per call. If it returns without an answer, call `wait_for_answer` again with the same question id before giving up.
- On long tasks where the user might be away, prefer `send_notification` with `context.askQuestion` over a blocking `ask_user`. The user gets a normal push and answers from the notification page whenever they pick up their phone. Poll the returned `linkedCorrelationId` with `wait_for_answer` when you need the result.
- Use `cancel_question` to retract a question that is no longer needed.