Skip to main content

transport-module-authoring

Use when implementing a new transport module or making non-trivial transport behavior changes without violating module and engine architecture.

跳到安装

来源信息

仓库
meshtastic/meshtastic-sdk
最近来源活动
2026年5月2日 00:29
检测到的 SKILL.md 语言
英语
星标
8
分支
6

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
transport-module-authoring
description
Use when implementing a new transport module or making non-trivial transport behavior changes without violating module and engine architecture.
# Transport Module Authoring Use this skill when implementing a new transport module or making non-trivial transport behavior changes. ## Goals - Add transport capabilities without violating module and engine architecture. - Keep wire behavior compatible with protocol and handshake requirements. - Ensure failure mapping and lifecycle semantics remain predictable. ## Required Context - AGENTS.md - docs/SPEC.md - docs/protocol.md - docs/architecture/module-graph.md - docs/decisions/002-architecture.md - docs/decisions/006-multi-module-rationale.md - docs/error-taxonomy.md ## Guardrails - :core must not gain transport implementation dependencies. - Transport modules should depend on :core and :proto only for contract and wire types. - Preserve FIFO semantics for outbound frames. - Pre-handshake bytes must not leak into ready session state. - Keep reconnect and error behavior aligned with taxonomy and connection-state semantics. ## Workflow 1. Capture expected transport lifecycle and framing model. 2. Map lifecycle to RadioTransport contract methods and events. 3. Implement minimal adapter and conversion logic. 4. Add tests for connection lifecycle, send ordering, receive parsing, and error translation. 5. Verify cross-platform assumptions for target matrix. 6. Update docs when transport behavior changes observable contracts. ## Validation Commands - ./gradlew jvmTest - ./gradlew check ## Deliverable - Changed files summary - Contract compatibility verification - Tests run and outcomes - Remaining transport-specific risks
在 GitHub 查看