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

agent-step-sequencerAgent 步骤排序器

Agent Skill

agent-step-sequencer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

75,130

周安装

3,010

GitHub Stars

3

下载量

24,321
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install agent-step-sequencer

简介

用于深入代理请求的多步骤调度程序。检测用户何时需要多个步骤,建议计划并等待确认,保留状态并运行心跳感知流程。当请求具有 3 个以上操作、顺序依赖性、输出依赖性或高范围/风险时使用。

SKILL.md

name
agent-step-sequencer
description
Multi-step scheduler for in-depth agent requests. Detects when user needs multiple steps, suggests plan and waits for confirmation, persists state, and runs heartbeat-aware flow. Use when requests have 3+ actions, sequential dependencies, output dependencies, or high scope/risk.
metadata
{"openclaw":{"emoji":"🔗","requires":{"bins":["python3"],"env":["STEP_AGENT_CMD"]},"install":[{"id":"apt","kind":"apt","package":"python3","bins":["python3"],"label":"Install Python 3","os":["linux"]},{"id":"brew","kind":"brew","formula":"python@3","bins":["python3"],"label":"Install Python 3","os":["darwin"]}]}}

Agent Step Sequencer

Multi-step scheduler for in-depth requests. Enables step-based actions with heartbeat integration—survives gateway reset mid-step.

Core Pattern

  1. Interpret when user request requires multiple steps
  2. Suggest step plan, wait for confirmation
  3. Persist state.json (with plan format)
  4. Agent invokes scripts/step-sequencer-check.py immediately (no wait for heartbeat)
  5. Heartbeat (e.g. every 5 min) also invokes the script—keeps sequencer aligned with email jobs and other heartbeat tasks

Critical: If gateway resets mid-step, next heartbeat reads state and resumes correctly.


Plan Format

Agent builds a plan when user approves. During approval, agent asks: Use 2-minute delay between steps? Recommended for rate-limit–sensitive API calls. User chooses; agent sets stepDelayMinutes (0 or 2) in state. Each step has title, instruction, and optionally requiredOutputs (paths relative to workspace that must exist before the step is marked DONE):

{
  "plan": {
    "steps": {
      "step-1": { "title": "Research topic X", "instruction": "Research topic X and produce a concise summary", "requiredOutputs": ["study/summary.md"] },
      "step-2": { "title": "Write paper", "instruction": "Using the summary from step 1, write a research paper..." }
    }
  },
  "stepQueue": ["step-1", "step-2"],
  "currentStep": 0,
  "stepRuns": {},
  "stepDelayMinutes": 0,
  "status": "IN_PROGRESS"
}
  • title: Human-readable label
  • instruction: Full instruction for the agent (research, summarize, pull X from Y, etc.)
  • requiredOutputs (optional): List of paths (relative to workspace). Runner marks step DONE only if agent exits 0 and all these paths exist; otherwise step is FAILED with "Missing required outputs: …".

Roles

  • Agent: Builds plan, persists state; does not touch state during step execution. Takes prompts.
  • Runner (step-sequencer-runner.py): Invokes agent with step instruction, waits for exit, marks DONE/FAILED. Applies stepDelayMinutes. On retry, agent gets troubleshoot prompt.
  • Check script (step-sequencer-check.py): If work to do, invokes runner. Handles FAILED → retry (reset PENDING, invoke runner).
  • Heartbeat: Invokes check script on schedule.

Step execution: autonomous recovery

Do not stop mid-step to ask the user. When executing a step, if something fails (empty fetch, API error, source unavailable):

  1. Retry once (same source/URL) if it might be transient.
  2. Try an alternative (e.g. CoinGecko instead of CoinMarketCap, different endpoint or token) and complete the step with what you can.
  3. Document and exit only if you truly cannot complete the step—then exit non-zero so the runner marks FAILED; the scheduler will retry with a troubleshoot prompt.

Do not stop silently. If you cannot complete the step after retry and alternatives: actively prompt the user—post a short message that you hit a snag, what failed, and what you tried (e.g. "Step 2 (research Meteora) failed: CoinMarketCap fetch empty, tried CoinGecko—also empty. Need another source or skip this token."). Then exit non-zero so the runner marks FAILED and the scheduler can retry or add to blockers. Never just stop without telling the user.


How Agent Determines Multi-Step

Agent must suggest before proceeding. When MULTI_STEP, propose the step plan and wait for confirmation before executing.

MULTI_STEP =
  (action_count >= 3)
  OR has_sequential_language
  OR has_output_dependency
  OR high_scope_or_risk
  OR user_requests_steps
  OR contains_setup_keywords

SINGLE_STEP =
  (action_count == 1)
  AND NOT has_output_dependency
  AND immediate_execution

DECISION =
  IF MULTI_STEP THEN suggest_multi_step → wait for confirm → proceed
  ELSE single_step

Definitions:

CriterionMeaning
action_countNumber of distinct actions (file edits, commands, etc.)
has_sequential_language"then", "after", "first...then", "step 1"
has_output_dependencyStep B needs output from step A
high_scope_or_riskMany files, destructive ops, migration
user_requests_steps"step by step", "break this down", "one at a time"
contains_setup_keywords"set up", "migrate", "implement from scratch", "full X", "complete Y"

State Schema

See references/state-schema.md. Key fields:

  • plan.steps: step definitions (title, instruction, optional requiredOutputs)
  • stepQueue, currentStep, stepRuns
  • stepDelayMinutes: 0 = no delay; 2 = 2 min between steps
  • blockers, lastHeartbeatIso, artifacts

Heartbeat Flow

Heartbeat invokes scripts/step-sequencer-check.py. Agent also invokes it right after persisting state.

  1. Read state.json
  2. If no state or status=DONE → do nothing
  3. If step FAILED → bump tries, reset to PENDING, invoke runner (immediate retry)
  4. If step DONE → advance currentStep, invoke runner
  5. If step PENDING or IN_PROGRESS → invoke runner
  6. Update lastHeartbeatIso

Runner invokes agent (configurable via STEP_AGENT_CMD). Runner applies stepDelayMinutes.


Failure Flow

  1. Runner marks step FAILED, stores error in stepRuns
  2. Runner invokes check script immediately (no heartbeat wait)
  3. Check script bumps tries, resets status to PENDING, invokes runner
  4. Runner invokes agent with troubleshoot prompt: "Step X failed (tries: N). Previous run ended with: [error]. Please troubleshoot and retry: [instruction]"
  5. Repeats until DONE or max retries / blockers

Flow Diagrams

Check script → Runner

flowchart TD
    A[Heartbeat or Agent] --> B[step-sequencer-check.py]
    B --> C{Work to do?}
    C -->|No| D[Do nothing]
    C -->|Yes| E[Invoke runner]
    E --> F[step-sequencer-runner.py]
    F --> G[Invoke agent with instruction]
    G --> H{Agent exit}
    H -->|Success| I[Mark DONE]
    H -->|Fail| J[Mark FAILED, invoke check script]
    I --> K[Check advances or done]
    J --> B

User flow (propose + persist)

flowchart TD
    U[User Request] --> V{Complex enough?}
    V -->|No| W[Execute directly]
    V -->|Yes| X[Propose step plan]
    X --> Y[User confirms]
    Y --> Z[Persist state.json with plan]
    Z --> AA[Agent invokes step-sequencer-check]
    AA --> AB[Runner invokes agent - step 1]
    AB --> AC[Heartbeat also invokes on schedule]

Configuration

EnvDescription
STEP_AGENT_CMDRequired. Command to invoke agent (space-separated). Prompt appended as last arg. Example: openclaw agent --message
STEP_RUNNERPath to step-sequencer-runner.py (optional)
STEP_MAX_RETRIESMax retries on FAILED before adding to blockers. Default: 3

OpenClaw: Wire STEP_AGENT_CMD to OpenClaw's agent invocation (e.g. openclaw agent --message).

Security: Set STEP_AGENT_CMD only to your trusted agent binary. Do not use shell interpreters (bash, sh, etc.) or -c/-e—the runner rejects these to prevent command injection. The instruction from state.json is passed as a single argument; it is never executed by a shell.


Final Deliverables Step

When all steps complete:

  • Confirm all requirements of the steps are met
  • Produce summary with links or paths to any files created/written
  • Mark state DONE → on subsequent heartbeats, scheduler does nothing

Installation

clawhub install agent-step-sequencer

Manual copy:

cp -r agent-step-sequencer ~/.openclaw/skills/agent-step-sequencer

Heartbeat integration — Add this to your heartbeat (or have the agent add it):

# Agent Step Sequencer check (add to heartbeat cycle)
python3 ~/.openclaw/skills/agent-step-sequencer/scripts/step-sequencer-check.py ~/.openclaw/workspace/state.json

Or if skill is in workspace: python3 ~/.openclaw/workspace/skills/agent-step-sequencer/scripts/step-sequencer-check.py ~/.openclaw/workspace/state.json

Set STEP_AGENT_CMD to your agent invocation before running. Agent should invoke the check script immediately after persisting state.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.57%
按下载量换算22,028

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills