Agent Skills
› stagewise-io/stagewise
› Watch
Watch
GitHub用于在后台监控本地或远程条件,当条件满足时恢复执行。通过调用createWatcherSession实现非阻塞的持续观察,适用于等待特定状态变更的场景。
Trigger Scenarios
用户请求监控某个条件是否满足
需要后台等待特定事件发生再继续操作
Install
npx skills add stagewise-io/stagewise --skill Watch -g -y
SKILL.md
Frontmatter
{
"name": "Watch",
"description": "Watch a local or remote condition in the background and resume when it is met",
"user-invocable": true,
"agent-invocable": false
}
Treat the user's request as a background watch task. Call
createWatcherSession in this turn unless the condition is already satisfied,
cannot be checked with the available CLIs, or a matching active watcher is
listed in the current <shell-sessions>.
Perform any required read-only preflight before arming the watcher. After it is
armed, briefly tell the user and end the turn; do not wait with
executeShellCommand.
Version History
- 18ac8a2 Current 2026-08-19 21:43


