Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

sensor-fusion传感器融合

Agent Skill

sensor-fusion 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

599

周安装

24

GitHub Stars

4

下载量

194
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:sensor-fusion(传感器融合)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/sensor-fusion
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill sensor-fusion
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill sensor-fusion

简介

sensor-fusion 用于融合多传感器数据以提高测量精度与可靠性,适合实时系统。

  • 采用卡尔曼滤波等算法处理噪声数据,输出平滑后的数据流供下游使用。
  • 常见于自动驾驶、工业物联网等依赖多源感知的场景。
  • 需校准各传感器时间同步与坐标系对齐,否则可能引入融合误差。
  • 安装后应验证输入接口兼容性及输出格式,确保与现有系统集成顺畅。

SKILL.md

sensor-fusion

Purpose

This skill enables the fusion of IoT sensor data using algorithms like Kalman filters to enhance accuracy and reliability in real-time applications. It processes inputs from multiple sensors, applies fusion techniques, and outputs refined data streams for downstream use.

When to Use

Use this skill when dealing with noisy or inconsistent sensor data, such as in autonomous vehicles for obstacle detection, smart home systems for environmental monitoring, or industrial IoT for predictive maintenance. Apply it in scenarios requiring real-time data smoothing, like merging GPS and accelerometer data, or when sensor redundancy improves decision-making.

Key Capabilities

  • Implements Kalman and Extended Kalman filters for state estimation and noise reduction.
  • Supports data fusion from up to 10 sensor types (e.g., temperature, humidity, motion) via JSON input streams.
  • Handles real-time processing with configurable update rates (e.g., 10-100 Hz).
  • Provides output in standardized formats like CSV or JSON for easy integration.
  • Includes adaptive thresholding to detect and ignore faulty sensor readings.
  • Offers visualization hooks for debugging fused data outputs.

Usage Patterns

To use this skill, first set the environment variable for authentication: export OPENCLAW_API_KEY=your_api_key. Then, invoke via CLI or API, providing sensor configurations in a JSON file. For CLI, pipe sensor data directly; for API, send POST requests with data payloads. Always specify the fusion algorithm and sensors in the command or request body to avoid defaults.

Example pattern 1: CLI command for fusing two sensors:

claw sensor-fusion fuse --sensors temp,humidity --algorithm kalman --config config.json

Example pattern 2: API call in a script:

import requests
response = requests.post('https://api.openclaw.io/sensor-fusion', headers={'Authorization': f'Bearer {os.environ["OPENCLAW_API_KEY"]}'}, json={'sensors': ['temp', 'humidity'], 'algorithm': 'kalman'})
print(response.json())

Common Commands/API

  • CLI: claw sensor-fusion fuse --sensors <list> --algorithm <name> --rate <Hz>: Fuses specified sensors with the given algorithm and update rate (e.g., --rate 50 for 50 Hz).
  • CLI: claw sensor-fusion simulate --data <file> --output results.csv: Simulates fusion on a sample data file and saves output.
  • API Endpoint: POST /api/sensor-fusion: Requires JSON body like {"sensors": ["temp", "pressure"], "algorithm": "ekf", "config": {"noise_variance": 0.01}}; returns fused data array.
  • API Endpoint: GET /api/sensor-fusion/status: Checks fusion job status using query param job_id, e.g., GET /api/sensor-fusion/status?job_id=123.
  • Config Format: JSON, e.g., {"sensors": [{"name": "temp", "type": "analog", "weight": 0.5}], "algorithm": {"type": "kalman", "parameters": {"Q": 0.01, "R": 0.1}}}. Use $OPENCLAW_API_KEY in headers for all API calls.

Integration Notes

Integrate by importing the OpenClaw SDK in your project: pip install openclaw. Reference this skill in code with from openclaw.skills import sensor_fusion. Ensure sensor data is formatted as arrays of {timestamp, value} objects. For multi-skill workflows, chain with other IoT skills by passing outputs via shared variables, e.g., set output_fused_data as input for a downstream analytics skill. Handle dependencies like NumPy for matrix operations. Test integrations in a sandbox environment first, using mock sensor data to verify fusion accuracy.

Error Handling

Check for errors by parsing response codes: HTTP 400 for invalid sensor lists, 401 for authentication failures with $OPENCLAW_API_KEY. In CLI, errors like "Sensor not found" appear if --sensors flag is mismatched; use --verbose to debug. Handle algorithm-specific errors, e.g., if Kalman filter diverges, catch with try-except in code: ```python try: fused_data = sensor_fusion.fuse(data, algorithm='kalman') except ValueError as e: print(f"Error: {e} - Check sensor data format")

## Graph Relationships
- Related to: iot-cluster (parent cluster for shared IoT functionalities)
- Connected to: data-processing (for preprocessing sensor inputs)
- Links with: machine-learning (for advanced algorithm training on fused data)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.7%
按下载量换算65

Claude

29.69%
按下载量换算58

Cursor

19.7%
按下载量换算38

Gemini CLI

8.78%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills