Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

ros1-noetic-generalros1 思维将军

Agent Skill

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

总安装

4,578

周安装

187

GitHub Stars

公开资料未说明

下载量

1,481
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ros1-noetic-general

简介

通用双语 ROS1 Noetic 技能,适用于机器狗、移动机器人、机械手、感知管道、模拟等领域的 ROS 问题和 ROS 项目操作。

SKILL.md

name
ros1-noetic-general
description
General bilingual ROS1 Noetic skill for ROS questions and ROS project operations across robot dogs, mobile robots, manipulators, perception pipelines, simulation, and OpenClaw integrations. Trigger whenever the user mentions ROS, ROS1, Noetic, catkin, roslaunch, rosrun, roscore, rostopic, rosservice, rospy, roscpp, tf, tf2, rosbag, launch files, workspace, package.xml, CMakeLists.txt, rosbridge, or asks in Chinese or English to start/build/check/debug/stop a ROS project or robot, such as "启动 ROS", "启动机器狗", "编译 ROS 项目", "检查 catkin 工作区", "run roslaunch", "build this ROS package", or "debug this ROS node". For general ROS knowledge questions, provide broad ROS guidance first; for requests involving local files, local workspaces, commands, builds, launch/run actions, monitoring, health checks, or stopping runtime targets, use this skill's local scripts and workflows. If the user explicitly says "使用 rosskill", "用 ros skill", or "use rosskill", treat that as a strong signal to use this skill.

ROS1 Noetic General

Use this skill for project-agnostic ROS1 Noetic work, not only quadruped tasks.

Typical trigger phrasing includes requests like:

  • "启动机器狗"
  • "启动 ROS 程序"
  • "启动 ROS"
  • "帮我看一下 ROS"
  • "帮我编译一下这个 ROS 项目"
  • "检查这个 catkin 工作区"
  • "帮我把这个 launch 跑起来"
  • "看看这个 ROS 节点为什么没起来"
  • "build this ROS package"
  • "start this ROS launch"
  • "check this ROS workspace"
  • "debug this ROS node"
  • "use rosskill"

Routing rule inside this skill:

  • If the request is mainly general ROS knowledge (concepts, terminology, architecture, best practices), answer with ROS guidance first.
  • If the request touches local files, local workspace state, local commands, build/start/launch/run/monitor/stop actions, or runtime diagnostics, use this skill's scripts and execution workflow.
  • If the user explicitly says 使用 rosskill, 用 ros skill, or use rosskill, strongly prefer this skill even when the request could also be answered more generally.

When the request mentions OpenClaw, rosbridge, websocket ROS control, or remote intent mapping, load references/ros1-openclaw-adapter.md early.

Workflow

  1. Resolve execution context and bundled resource paths.
  2. Validate ROS1 environment and active graph.
  3. Classify request into a project profile.
  4. Execute profile-specific checklist.
  5. Apply safe rollout and verification.
  6. Report result with reproducible commands.

Step 1: Resolve execution context first

Bundled scripts live inside this skill directory. Do not assume the current shell directory is the skill root.

  • Resolve scripts/... and references/... relative to this SKILL.md file before using them.
  • If you execute a bundled script, prefer an absolute path to the script.
  • If the host runtime already provides equivalent ROS inspection commands, it is fine to use those directly.

Example pattern:

SKILL_DIR="<absolute-path-to-this-skill>"
zsh "$SKILL_DIR/scripts/ros1_shell_detect.sh"
zsh "$SKILL_DIR/scripts/ros1_env_check.sh"

Step 2: Validate environment

Run:

zsh "$SKILL_DIR/scripts/ros1_shell_detect.sh"
zsh "$SKILL_DIR/scripts/ros1_env_check.sh"
zsh "$SKILL_DIR/scripts/ros1_graph_probe.sh" topic

If ROS commands are missing, use the shell detector output to decide whether the machine expects setup.bash or setup.zsh, then source ROS first.

Typical pattern:

source /opt/ros/noetic/setup.zsh

If workspace overlays exist, source base first and overlays second.

Step 3: Choose project profile

  • A. Bringup/Build: catkin workspace, package dependencies, launch files.
  • B. Runtime Debug: topics/services/actions, tf tree, node health.
  • C. Motion Control: velocity/joint commands with feedback checks.
  • D. Data Pipeline: rosbag record/playback, offline analysis.
  • E. OpenClaw Integration: rosbridge websocket adaptation and intent mapping.
  • F. Architecture/Performance: nodelets, callback-threading, message_filters, dynamic_reconfigure.
  • G. Migration Planning: ROS1 legacy maintenance and ROS1→ROS2 transition strategy.

Read detailed commands from references/project-profiles.md.

For full ROS1 coverage (core graph, launch, tf/tf2, actions, bags, diagnostics, networking), load references/ros1-full-scope.md.

Step 4: Execute by profile

A) Bringup/Build

  • bringup means bringing a ROS system up far enough to run: source ROS, identify workspace, build if needed, find launch files, start nodes, and confirm the graph is healthy.
  • Verify workspace structure and package discoverability.
  • Detect workspace/build strategy first with scripts/ros1_workspace_probe.sh.
  • Run scripts/ros1_bringup_check.sh before starting or rebuilding a project.
  • For OpenClaw-style tool use, prefer the runtime loop: ros1_start_target.sh -> ros1_runtime_health_check.sh -> ros1_stop_target.sh.
  • Build with the detected catkin command and stop on first error.
  • Discover and validate launch files before runtime.

Minimal runtime loop example:

zsh "$SKILL_DIR/scripts/ros1_start_target.sh" \
  --workspace /path/to/ws \
  --package my_pkg \
  --launch demo.launch

zsh "$SKILL_DIR/scripts/ros1_runtime_health_check.sh" \
  --state-file /tmp/ros1_skill_runtime/<run>/state.env \
  --expect-topic /rosout

zsh "$SKILL_DIR/scripts/ros1_stop_target.sh" \
  --state-file /tmp/ros1_skill_runtime/<run>/state.env

B) Runtime Debug

  • Confirm graph visibility (rosnode list, rostopic list).
  • Check type/rate/bandwidth for critical topics.
  • Verify tf availability and frame consistency.

C) Motion Control

  • Verify command topic type and active subscribers.
  • Validate critical interface types explicitly with scripts/ros1_interface_check.sh.
  • Prefer closed-loop motion if distance/angle is requested.
  • Keep conservative defaults and always send explicit stop.

Use interface/type checks first, then run motion script (mobile base profile):

zsh "$SKILL_DIR/scripts/ros1_interface_check.sh" topic /cmd_vel geometry_msgs/Twist
python3 "$SKILL_DIR/scripts/move_forward_by_odom.py" \
  --cmd-topic /cmd_vel \
  --odom-topic /odom \
  --distance 1.0 \
  --speed 0.2

D) Data Pipeline

  • Record minimal required topics (avoid “record all” unless requested).
  • Confirm clock/time behavior in playback scenarios.
  • Document bag metadata and replay command for reproducibility.

E) OpenClaw Integration (ROS1)

  • rosbridge is the websocket bridge that lets OpenClaw or other external clients publish/subscribe/call into a ROS graph without writing native rospy / roscpp code.
  • Start ROS1 rosbridge websocket.
  • Preflight the ROS graph before exposing any endpoint to OpenClaw.
  • Map high-level intents to ROS1 topic/service/action operations with explicit templates.
  • Enforce safety stop semantics, timeout, and disconnect behavior for every motion intent.

See references/ros1-openclaw-adapter.md.

F) Architecture / Performance

  • Enforce single-responsibility node boundaries.
  • Choose queue sizes intentionally for high-rate sensor topics.
  • Use message_filters for sensor-time synchronization.
  • Apply callback threading patterns (MultiThreadedSpinner / worker queue).
  • Use nodelets for large intra-process data when zero-copy matters.
  • Use dynamic_reconfigure for runtime tuning instead of hard-coded constants.

See references/ros1-engineering-patterns.md.

G) Migration Planning (ROS1 → ROS2)

  • Capture current ROS1 interfaces (topics/services/actions/params) before migration.
  • Prefer staged migration from leaf nodes inward.
  • Use bridge period planning where mixed ROS1/ROS2 runtime is required.

See references/ros1-engineering-patterns.md migration section.

Step 5: Safety and quality gates

  • Never leave a robot/controller moving on function exit.
  • Add timeout for every long-running command.
  • Fail fast when telemetry is stale or missing.
  • Report exact measured outcome (not only “success”).
  • When starting long-running processes, persist pid/log/state metadata so later health checks and stop actions can use the same handle.
  • Ask for confirmation before commands that install packages, require sudo, change system configuration, or move hardware in the real world.
  • Prefer dry-run inspection before any destructive or stateful ROS action.

Step 6: References

  • Official ROS docs and package index links: references/official-docs.md
  • Full ROS1 capability map and command matrix: references/ros1-full-scope.md
  • Engineering patterns & migration playbook: references/ros1-engineering-patterns.md
  • Project-profile checklists and command templates: references/project-profiles.md
  • OpenClaw↔ROS1 adapter blueprint: references/ros1-openclaw-adapter.md
  • ROS1 knowledge-base sources ledger (official pages reviewed): references/ros1-knowledge-base-sources.md

If official sites block simple fetches, use whatever browsing or browser-automation tools the host runtime actually exposes. Do not assume tool names that the host has not provided.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.76%
按下载量换算1,255

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills