Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

edgecomputing-ats边缘计算 ATS

Agent Skill

edgecomputing-ats 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,910

周安装

125

GitHub Stars

公开资料未说明

下载量

1,020
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install edgecomputing-ats

简介

分析 EdgeComputing ATS 项目的代码架构、设备协议与业务逻辑流程。

  • 适用于开发者理解自动票务系统内部机制或进行二次开发的场景。
  • 通过 OpenClaw 安装并使用 clawhub 方式部署,需接入项目代码仓库。
  • 使用前请确认代码可读性、许可证类型及是否允许读取私有模块与配置文件。
  • edgecomputing-ats 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
edgecomputing-ats
description
Analyzes EdgeComputing ATS (Automatic Ticket System) codebase architecture, device protocols, and business logic. Invoke when user asks about ATS project structure, device management, or needs code analysis.

ATS (Automatic Ticket System) Analyzer

Analyzes the EdgeComputing ATS project for architecture understanding, device management, and codebase navigation.

ATS Project Overview

ATS is an edge computing gateway for automatic ticket systems, managing multiple hardware devices (IC card readers, QR scanners, LED/LCD displays, card dispensers/collectors, etc.) and communicating with cloud platforms.

Project Location

/home/forlinx/Documents/trae_projects/workspace/EdgeComputing/ats/

Key Documentation

  • docs/系统架构文档.md - System architecture (layered architecture, modules, communication)
  • docs/项目概述文档.md - Project overview (features, users, components)
  • docs/用户操作手册.md - User operation manual
  • docs/设计说明书.md - Design specification (interfaces, protocols, algorithms)

Architecture Layers

Layer 1: Application Layer

  • robot/ats-robot-server/ - Main service (core business logic)
  • robot/ats-robot-lcd-app/ - LCD application (HMI)

Layer 2: Common Libraries

  • common/ats_common/ - Serial, network, database utilities
  • common/ats_common_device/ - Device abstraction layer (20+ device types)
  • common/ats_media/ - Video capture/encoding
  • common/ats_protocol_api/ - Uplink protocol (cloud communication)
  • common/ats_protocol_robot/ - Downlink protocol (device communication)

Layer 3: Device Drivers

  • device/io/ - IO devices (GPIO, relay)
  • device/ic/ - IC card readers (multiple vendors: dy, hh, jt, yc, robot)
  • device/qr/ - QR/barcode scanners
  • device/led/ - LED displays
  • device/provide/ - Card dispensers
  • device/collect/ - Card collectors
  • device/plate/ - License plate recognition
  • And more (printer, env, aircond, alarm, etc.)

Core Device Types

Device TypeClassDescription
IOCATSIODeviceDigital input/output control
IC CardCATSICDeviceCard read/write (M1, CPU)
QR CodeCATSQRDeviceBarcode/QR scanning
LEDCATSLEDDeviceInformation display
LCDCATSLCDDeviceHuman-machine interface
ProvideCATSProvideDeviceCard dispensing
CollectCATSCollectDeviceCard collection
PlateCATSPlateDeviceLicense plate recognition
PrinterCATSPrinterDeviceReceipt printing

Key Classes

CNodeService (Main Service)

class CNodeService : public CService {
    // Device management
    CATSIODevice*        m_pIODevice;
    CATSProvideDevice*   m_pProvideDevice;
    CATSCollectDevice*   m_pCollectDevice;
    CATSQRDevice*        m_pQRDevice1;
    CATSLEDDevice*       m_pATSLEDDevice;

    // Business management
    CCoilManager*        m_pCoilManager;
    CKioskManager*       m_pKioskManager;

    // Communication
    CMQTTServer*         m_pMQTTServer;
    CDYProtocolServer*   m_pDYProtocolServer;
};

Device Base Class

class CATSBaseDevice : public CBaseInterface {
    virtual BOOL Open(...) = 0;
    virtual void Close() = 0;
    void SetStatusHandle(CATSBaseDeviceStatusHandle* pHandle);
};

Communication Architecture

Cloud Communication (Uplink)

  • HTTP Server (Port 8080)
  • WebSocket (Port 8081)
  • MQTT (Port 1883)
  • GB28181 (Port 5060)
  • RTSP (Port 554)

Device Communication (Downlink)

  • Serial (RS232/RS485/UART)
  • TCP/UDP Network
  • CAN Bus
  • GPIO

Message Protocol Examples

Heartbeat (Uplink)

struct ATSCmdHeartonline {
    unsigned int dwDeviceId;
    unsigned char byStatus;
    unsigned char byNetwork;
    unsigned short wDeviceType;
    unsigned int dwOnlineTime;
};

Card Provide Command

struct ATSCmdCardProvide {
    unsigned int dwCardType;
    unsigned int dwCardNum;
    unsigned char byAction;  // 1-issue, 2-recycle
};

Compilation

cd ats/build-aarch64
./build.sh

Usage Guidelines

  1. When user asks about ATS architecture, reference the documentation in docs/
  2. When analyzing device code, look in device/{type}/ for vendor-specific implementations
  3. When analyzing protocol code, look in common/ats_protocol_*/
  4. Device abstraction is in common/ats_common_device/

Triggers

  • User asks about ATS project structure
  • User needs help understanding device protocols
  • User wants to add new device support
  • User asks about system design or architecture

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.77%
按下载量换算936

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills