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

mqtt-developmentMQTT 开发

Agent Skill

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

总安装

8,775

周安装

362

GitHub Stars

87

下载量

2,867
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mindrally/skills --skill mqtt-development

简介

mqtt-development 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态和协作事项进行整理。

  • 适用于需要跟踪代码变更、管理 Issue 或参与协作的开发场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 建议确认权限范围、维护状态,以及是否会触发联网或命令执行操作。
  • 可结合来源仓库 README 进一步核验具体用法和功能边界。

SKILL.md

MQTT Development

You are an expert in MQTT (Message Queuing Telemetry Transport) protocol development for IoT and real-time messaging systems. Follow these best practices when building MQTT-based applications.

Core Principles

  • MQTT is designed as an extremely lightweight publish/subscribe messaging transport
  • Ideal for connecting remote devices with small code footprint and minimal network bandwidth
  • MQTT requires up to 80% less network bandwidth than HTTP for transmitting the same amount of data
  • A minimal MQTT control message can be as little as two data bytes

Architecture Overview

Components

  • Message Broker: Server that receives messages from publishing clients and routes them to destination clients
  • Clients: Any device (microcontroller to server) running an MQTT library connected to a broker
  • Topics: Hierarchical strings used to filter and route messages
  • Subscriptions: Client registrations for specific topic patterns

Topic Design Best Practices

Topic Structure

  • Use hierarchical topic structures with forward slashes as level separators
  • Maximum of seven forward slashes (/) in topic names for AWS IoT Core compatibility
  • Do NOT prefix topics with a forward slash - it counts towards topic levels and creates confusion
  • Use meaningful, descriptive topic segments

Topic Naming Conventions

{organization}/{location}/{device-type}/{device-id}/{data-type}

Example: acme/building-1/sensor/temp-001/temperature

Wildcard Usage

  • Single-level wildcard (+): Matches one topic level - prefer for device subscriptions
  • Multi-level wildcard (#): Matches all remaining levels - use sparingly
  • Never allow a device to subscribe to all topics using #
  • Reserve multi-level wildcards for server-side rules engines
  • Use single-level wildcards (+) for device subscriptions to prevent unintended consequences

Quality of Service (QoS) Levels

QoS 0 - At Most Once

  • Fire and forget - no acknowledgment
  • Fastest but least reliable
  • Use for: Sensor data where occasional loss is acceptable, high-frequency telemetry

QoS 1 - At Least Once

  • Guaranteed delivery, may have duplicates
  • Balance of reliability and performance
  • Use for: Important notifications, commands that can be safely repeated

QoS 2 - Exactly Once

  • Guaranteed single delivery using four-way handshake
  • Highest overhead but most reliable
  • Use for: Financial transactions, critical commands, state changes

Choosing QoS

  • Match QoS to your reliability requirements
  • Consider bandwidth constraints - higher QoS means more overhead
  • Publisher and subscriber QoS are independent - broker delivers at lower of the two

Session Management

Clean Sessions

  • cleanSession=true: No session state preserved, suitable for transient clients
  • cleanSession=false: Broker stores subscriptions and queued messages for offline clients

Persistent Sessions

  • Enable for devices with intermittent connectivity
  • Broker stores undelivered messages (based on QoS) for later delivery
  • Set appropriate session expiry intervals
  • Consider message queue limits on the broker

Keep-Alive

  • Configure keep-alive interval based on network conditions
  • Broker uses keep-alive to detect dead connections
  • Shorter intervals = faster detection, more overhead
  • Typical values: 30-60 seconds for stable networks, 10-15 for mobile

Last Will and Testament (LWT)

  • Configure LWT message for each client
  • Broker publishes LWT when client disconnects unexpectedly
  • Use for: Device status updates, alerts, cleanup triggers
  • LWT topic typically: {base-topic}/status with payload offline

Security Best Practices

Transport Security

  • MQTT sends credentials in plain text by default
  • Always use TLS to encrypt connections in production
  • Default unencrypted port: 1883
  • Encrypted port: 8883
  • Verify broker certificates to prevent MITM attacks

Authentication

  • Use strong client credentials (username/password or certificates)
  • Implement OAuth, TLS 1.3, or customer-managed certificates where supported
  • Rotate credentials regularly
  • Consider client certificate authentication for high-security scenarios

Authorization

  • Implement topic-level access control
  • Clients should only access topics they need
  • Use ACLs (Access Control Lists) on the broker
  • Separate read and write permissions per topic

Message Design

Payload Format

  • Use efficient serialization (JSON for readability, binary for efficiency)
  • Keep payloads small - MQTT is designed for constrained environments
  • Include timestamps in messages for time-series data
  • Consider schema versioning for payload format changes

Message Properties

  • Use retained messages for current state (last known value)
  • Set appropriate message expiry for time-sensitive data
  • Use user properties for metadata without polluting payload

Client Implementation

Connection Handling

  • Implement automatic reconnection with exponential backoff
  • Handle connection loss gracefully
  • Queue messages during disconnection for later delivery
  • Use connection pooling for multi-threaded applications

Subscription Management

  • Subscribe to specific topics, avoid broad wildcards
  • Unsubscribe when no longer needed
  • Handle subscription acknowledgment failures
  • Resubscribe after reconnection if using clean sessions

Publishing Best Practices

  • Validate messages before publishing
  • Handle publish failures appropriately
  • Use batching for high-frequency publishing where supported
  • Consider message ordering requirements

Broker Configuration

Scalability

  • Configure appropriate connection limits
  • Set message queue sizes based on expected load
  • Implement clustering for high availability
  • Use load balancers for horizontal scaling

Monitoring

  • Track connection counts and rates
  • Monitor message throughput and latency
  • Alert on queue depth and memory usage
  • Log authentication failures

Testing

Unit Testing

  • Mock MQTT client for isolated testing
  • Test message serialization/deserialization
  • Verify QoS handling logic

Integration Testing

  • Test with real broker in test environment
  • Verify reconnection scenarios
  • Test LWT functionality
  • Load test with realistic device counts

Common Patterns

Request/Response

  • Use correlated topics: request/{id} and response/{id}
  • Include correlation ID in message
  • Implement timeouts for responses

Device Shadow/Twin

  • Maintain desired and reported state
  • Use separate topics for state updates
  • Handle state synchronization on reconnection

Command and Control

  • Use dedicated command topics per device
  • Implement command acknowledgment
  • Handle command queuing for offline devices

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.8%
按下载量换算797

OpenCode

26.29%
按下载量换算754

Antigravity

17.71%
按下载量换算508

Codex

13.67%
按下载量换算392

Cursor

9.2%
按下载量换算264

github-copilot

3.65%
按下载量换算105

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills