Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

openclaw-vln-plannerOpenClaw VLN planner 搜索

Agent Skill

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

总安装

3,740

周安装

159

GitHub Stars

公开资料未说明

下载量

1,310
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-vln-planner

简介

根据导航指令和历史图像规划机器人高级导航步骤。

  • 适用于机器人路径规划和环境感知任务。openclaw-vln-planner 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持多图像输入和实时决策,提升导航准确性。
  • 安装命令:openclaw skills install openclaw-vln-planner。
  • 需确认权限范围和维护状态,避免触发设备控制或网络请求。

SKILL.md

name
openclaw-vln-planner
description
Plan the next high-level navigation step for a robot from a user navigation instruction, one current image, and a sequence of historical images. Use when the task is vision-language navigation, closed-loop replanning, multimodal next-action prediction, or converting visual observations into a single structured JSON navigation action for an OpenAI-compatible multimodal gateway and a separate execution bridge.

OpenClaw VLN Planner

Use this skill when the user wants a robot to follow a natural-language navigation instruction from visual observations.

This skill is a high-level navigation planner. It does not produce motor, joint, torque, or trajectory control. It only produces one structured mid-level navigation action at a time.

When this skill triggers

Trigger this skill when the task includes one or more of the following:

  • Vision-language navigation (VLN)
  • Robot next-step planning from camera images
  • Closed-loop navigation with replanning after each observation
  • Converting a current frame plus historical frames into a single next navigation action
  • Sending current + history images to an OpenAI-compatible multimodal gateway for action prediction

Required inputs

The planner expects:

  • user_instruction: natural-language navigation instruction
  • current_frame: exactly one current image
  • history_frames: zero or more previous images in temporal order

Optional inputs:

  • robot_state: heading, speed, pose estimate, execution feedback, etc.
  • safety_flags: blocked, collision_risk, lost, target_reached, low_visibility, etc.
  • config_path: path to the runtime config file

Output contract

Output must be pure JSON only. Do not prepend or append prose.

Allowed action types only:

  • MOVE_FORWARD
  • TURN_LEFT
  • TURN_RIGHT
  • STOP

Expected JSON shape:

{
  "next_action": {
    "type": "MOVE_FORWARD",
    "value": 75,
    "unit": "cm"
  },
  "task_status": "in_progress",
  "confidence": 0.87,
  "notes": "continue along the hallway"
}

Completion example:

{
  "next_action": {
    "type": "STOP"
  },
  "task_status": "completed",
  "confidence": 0.93,
  "notes": "goal reached"
}

Core rules

  1. Plan only the next action.
  2. Never output a full route.
  3. Replan after each execution step.
  4. If uncertain, unsafe, blocked, unable to parse, or visually ambiguous, output STOP.
  5. Enforce action bounds:

- MOVE_FORWARD: 10-150 cm - TURN_LEFT: 5-90 deg - TURN_RIGHT: 5-90 deg - STOP: no value/unit required

  1. If safety_flags.target_reached == true, output STOP with task_status = completed.
  2. If blocked, collision_risk, lost, or severe uncertainty is present, prefer STOP.

Runtime configuration

Before running, load a YAML config file such as config/vln-config.yaml.

The config should define:

  • subscribed or logical input topics / channels for current frame and history frame collection
  • optional robot state and safety flag sources
  • OpenAI-compatible multimodal gateway settings: base_url, api_key, model_id
  • planner behavior such as confidence threshold and safety fallback
  • executor bridge mode (default: Python function bridge)

Read references/navigation-schema.md for the expected config structure.

Internal module design

1) context builder

Build a model input payload from:

  • user instruction
  • historical observations
  • current observation
  • optional robot state
  • optional safety flags

The prompt must explicitly separate:

  • historical observations
  • current observation
  • user instruction

2) action planner

Call an OpenAI-compatible multimodal gateway with:

  • one current image
  • historical images
  • planner prompt
  • optional structured context

The model should be asked to return pure JSON for exactly one next action.

3) action parser

Parse the model result as JSON.

If parsing fails:

  • try safe extraction of the first JSON object
  • if still invalid, fall back to STOP

4) action validator

Validate:

  • action type is one of the four allowed values
  • distance and angle ranges are legal
  • unit matches action type
  • confidence is numeric if present
  • task_status is one of in_progress, completed, failed

Any invalid output falls back to STOP.

5) executor bridge

Forward the validated mid-level action to a separate execution layer.

Reserved Python bridge interface:

  • execute_move_forward(distance_cm)
  • execute_turn_left(angle_deg)
  • execute_turn_right(angle_deg)
  • execute_stop()
  • get_robot_state()
  • get_safety_flags()

Do not hardcode a robot SDK into the planner logic.

6) replanning loop

Use the planner in a closed loop:

  1. gather current frame + history frames
  2. gather optional robot state / safety flags
  3. call multimodal planner
  4. parse and validate JSON action
  5. execute through bridge
  6. observe again
  7. repeat until task_status = completed or forced stop

7) safety fallback

Always stop on:

  • parse failure
  • invalid action
  • confidence below threshold
  • blocked / collision risk / lost / target reached
  • missing visual evidence for safe motion

Prompt template

Use this prompt pattern:

You are a robot navigation planner.
You will receive:
1. historical observations
2. current observation
3. a user instruction
4. optional robot state and safety flags

Your job is to decide the robot's next single mid-level navigation action.
You may output only one of these actions:
- MOVE_FORWARD with distance in cm
- TURN_LEFT with angle in deg
- TURN_RIGHT with angle in deg
- STOP

Rules:
- Plan only the next step, not the whole route.
- If the goal has been reached, output STOP.
- If you are uncertain, the scene is unclear, or there is any safety risk, output STOP.
- MOVE_FORWARD must be 10-150 cm.
- TURN_LEFT and TURN_RIGHT must be 5-90 deg.
- Output pure JSON only, with no extra explanation.

Example user requests

  • "Go down the hallway and stop at the blue door."
  • "Move to the kitchen entrance."
  • "Find the end of the corridor and stop."
  • "Turn right at the next intersection and continue."

Failure handling

If anything is wrong with the output, return:

{
  "next_action": {
    "type": "STOP"
  },
  "task_status": "failed",
  "confidence": 0.0,
  "notes": "fallback_stop"
}

Bundled resources

  • references/navigation-schema.md: schema, bounds, safety fallback, examples, config contract
  • scripts/vln_bridge.py: example OpenAI-compatible multimodal planner + Python executor bridge
  • scripts/requirements.txt: Python dependencies
  • config/vln-config.yaml: runtime config template

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.87%
按下载量换算1,059

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills