Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计提醒

wanderwander 开发

Agent Skill

wander 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,040

周安装

210

GitHub Stars

公开资料未说明

下载量

1,680
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wander(wander 开发)
来源仓库:https://github.com/erergb/wander
安装命令:
openclaw skills install wander
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install wander

简介

用于监控长时间运行的异步任务,如 CI 构建、部署发布等流程。

  • 在用户触发耗时操作时自动通知完成状态,无需手动轮询检查。
  • 适合集成到前端开发工作流中,提升任务跟踪效率。wander 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 使用前需确认是否具备访问相关系统日志或通知接口的权限。
  • 建议结合具体项目环境核验其对现有构建工具的兼容性。

SKILL.md

name
wander
description
Monitor any async task that takes time and needs completion notification — CI, builds, deploys, releases. Use when the user triggers any long-running async task and should not have to poll for results manually.

Wander — Async Task Completion Monitor

Don't watch. Wander. The core philosophy: when you trigger something async, you should be notified when it finishes — not polling, not refreshing, not waiting.

Mental model (first principles)

Every async task has the same shape:

Trigger  →  Task runs remotely  →  Result
(Agent)     (can't speed up)       (Agent + User both need to know)

Wander owns the middle-to-right transition. The Agent triggers and moves on. Wander closes the loop back to both the user (notification) and the Agent (result context).

The loop is only complete when the Agent knows the result. After Wander reports completion, the Agent must:

  1. Read the terminal output from the Wander background process to get the actual result.
  2. Act on the result — do not consider the task "done" until the result is confirmed:

- ✅ success → proceed to next step (e.g., announce PR ready, deploy, tag release) - ❌ failure → immediately surface the failure, fetch failed logs, propose fix

  1. Never assume success — a background monitor starting is not the same as the task succeeding.
# After Wander background process exits, check result:
gh run view <RUN_ID> --json conclusion -q .conclusion
# → "success" | "failure" | "cancelled" | "timed_out"

# If failure, fetch logs for Agent to diagnose:
gh run view <RUN_ID> --log-failed

Task taxonomy — what counts as a "task" Wander should monitor:

Task typeExamplesWander support
CI testlint, unit test, e2e✅ Native (GitHub Actions)
BuildDocker, web bundle✅ Native (GHA build.yml)
Mobile buildEAS iOS/Android⚠️ GHA wrapper only (not EAS CLI direct)
DeployRailway, Fly, Vercel✅ Native (GHA deploy workflow)
Release / publishnpm, ClawHub, App Store✅ Native (GHA publish workflow)
Ad-hoc long taskDB migration, data job⚠️ Manual: wrap in GHA workflow_dispatch

Current engine: GitHub Actions only. For EAS builds triggered via eas build CLI, Wander cannot monitor directly — use a GHA wrapper workflow that calls EAS, then monitor that workflow.

For the full v1 scope statement (GHA vs non-GHA CLIs, workarounds, roadmap links), see the repository README: v1 scope: GitHub Actions today.


Agent auto-trigger (mandatory)

After triggering ANY async task that maps to a GitHub Actions workflow, start Wander in background mode unless the user opts out.

Trigger signals to watch for:

  • git push to a branch that has CI/CD configured
  • PR created or merged (if deploy workflow triggers on merge)
  • gh workflow run (manual dispatch)
  • eas build that is backed by a GHA wrapper

Steps:

  1. Check if .workflows.yml exists → use it to pick the right workflow name and timing.
  2. If .workflows.yml is absent but .github/workflows/ exists → run scan_workflows (or ask user) to identify the right workflow, then start.
  3. Use watch-workflow-bg.sh <workflow.yml> — always background unless user explicitly wants to block.
  4. After ~8s check terminal output and report initial status.
  5. Tell the user: "Wander is watching <workflow>. I'll notify you when it finishes — continue working."
  6. Poll for result: periodically check the terminal output file or run gh run view <RUN_ID> --json conclusion. Do not declare the task complete until conclusion is success.
  7. On result:

- success → report to user, proceed with next planned step - failure → immediately fetch gh run view <RUN_ID> --log-failed, surface the error, propose a fix

If .github/workflows/ does not exist: offer monitoring but do not auto-start.


When to use this skill

  • User triggers anything async that will take > 30 seconds
  • User says "let me know when CI is done" / "notify me when the build finishes"
  • User is about to wait or refresh manually
  • Long pipelines: E2E, mobile build wrappers, release publish, DB migrations via GHA
  • Any git push that touches a branch with a workflow on: push trigger

When NOT to use

  • Task completes in < 10 seconds (just wait inline)
  • No GitHub Actions involved and no GHA wrapper exists
  • User explicitly said they want to watch synchronously

Prerequisites

  • gh CLI installed and authenticated
  • jq installed
  • Wander on disk: WANDER_HOME (default ~/code/wander)
  • macOS for notification center; Linux/headless: output-only mode still works

Install

git clone https://github.com/ERerGB/wander.git ~/code/wander
cd ~/code/wander && chmod +x *.sh

Add to shell rc:

export WANDER_HOME="${WANDER_HOME:-$HOME/code/wander}"
export PATH="$WANDER_HOME:$PATH"
alias wf='watch-workflow.sh'
alias wfbg='watch-workflow-bg.sh'
alias wfdt='watch-workflow-detached.sh'

Picking the right mode

ModeScriptUse case
Backgroundwatch-workflow-bg.shDefault. Keep working; get notified.
Detachedwatch-workflow-detached.shClose terminal; logs to ~/.wander_logs/
Foregroundwatch-workflow.shBlock session until done (rare)

Rule of thumb: always background. Switch to detached for >5 min tasks where you'll close the terminal.


Workflow registry (.workflows.yml)

Each workflow has different timing. The registry tells Wander what to expect:

workflows:
  - name: "ci.yml"
    description: "Lint + unit tests"
    check_window: 180      # grace window if already finished when we start
    expected_duration: 45  # typical runtime
    category: "smoke"

  - name: "build.yml"
    description: "Docker build + push"
    check_window: 600
    expected_duration: 180
    category: "build"

  - name: "deploy.yml"
    description: "Railway deploy"
    check_window: 900
    expected_duration: 300
    category: "deploy"

check_window = if the workflow already finished by the time Wander starts, how far back should we still accept it as "the run we triggered"? Set this to ~6x expected_duration.

Auto-generate for a repo:

cd /path/to/repo
"$WANDER_HOME/scripts-registry.sh" scan-workflows --auto-scope

Default check_window when unconfigured: 300s.


Canonical usage patterns

After any git push

git push origin main && "$WANDER_HOME/watch-workflow-bg.sh" ci.yml

With project wrapper (recommended for teams)

# scripts/watch-ci.sh
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
WANDER_DIR="${WANDER_HOME:-$(dirname "$REPO_ROOT")/wander}"
exec "$WANDER_DIR/watch-workflow-bg.sh" ci.yml "$@"

Then: git push && ./scripts/watch-ci.sh

EAS mobile build (via GHA wrapper)

If your EAS build is triggered by a GHA workflow (e.g. eas-build.yml):

git push origin feat/my-branch && "$WANDER_HOME/watch-workflow-bg.sh" eas-build.yml

If EAS is triggered directly via CLI (no GHA), Wander cannot monitor it natively — consider creating a workflow_dispatch wrapper.

Manual workflow dispatch

gh workflow run deploy.yml --ref main
"$WANDER_HOME/watch-workflow-bg.sh" deploy.yml main

Edge cases

ScenarioBehavior
Workflow finishes before Wander startsDetected via check_window; instant result + notify
Run not appearing after 30sWander waits up to 30s, then exits with tips
Wrong branch filter on workflowNo run found; Wander reports and exits
Very short workflow (<30s)Fast path: check_window catches it immediately
Very long workflow (>10min)Use detached mode; logs survive terminal close

When a task fails

# View failed step logs
gh run view <RUN_ID> --log-failed

# Re-run only failed jobs
gh run rerun <RUN_ID> --failed

WANDER_HOME resolution

  1. $WANDER_HOME env var
  2. Sibling of current repo: $(dirname "$REPO_ROOT")/wander
  3. Default: ~/code/wander

Known limitation: non-GHA tasks

Wander v1 is GitHub Actions-native. For tasks outside GHA (EAS CLI, Railway CLI, custom scripts), the correct pattern is:

  1. Wrap the task in a GHA workflow_dispatch workflow.
  2. Trigger via gh workflow run.
  3. Monitor with Wander.

A future version may support pluggable backends (EAS, Railway, etc.) via a task adapter layer.


Reference

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.94%
按下载量换算1,444

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install wander 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills