agentsclimarketplace

Letter shell integration

Skill easyzoom/aix-skills/skills/letter-shell-integration

Reusable Agent Skills for embedded systems, MCU debugging, firmware workflows, and AI automation. (嵌入式、MCU 调试、固件流程与 AI 自动化的可复用 Agent Skills 集合)。

Install
npx -y skills add easyzoom/aix-skills --skill letter-shell-integration

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when integrating, porting, configuring, or debugging letter-shell command shells, UART shell transport, command registration, RTOS shell tasks, or embedded debug consoles

SKILL.md

3.8 KB, 736 tokens by cl100k_base, as published. Nobody here has run it

letter-shell Integration

Overview

Use this skill to integrate letter-shell as an embedded debug console safely. Prove the transport, shell task or polling loop, command registration, and authorization policy before exposing commands that modify flash, reset devices, or change production state.

When To Use

Use this skill when:

  • The user wants to add or debug letter-shell in MCU firmware.
  • Shell input/output is missing, commands are not found, history/completion behaves wrong, or shell blocks the system.
  • The task involves UART shell, RTT shell, RTOS shell task, command export macros, login/password, or runtime debug commands.

Do not use this skill when the serial port itself is not trustworthy. Use embedded-serial-log-debug first.

First Questions

Ask for:

  • Target MCU/RTOS/compiler and letter-shell version or source.
  • Transport backend: UART, USB CDC, RTT, TCP, or custom.
  • Runtime model: polling loop, interrupt-driven RX, DMA RX, or RTOS task.
  • Existing shell config, command registration method, and linker section behavior.
  • Whether shell is allowed in production builds.
  • Commands that may be destructive, such as erase, reset, format, calibration, network write, or firmware update.

Integration Checklist

  1. Prove transport first. Confirm raw RX/TX works before debugging shell parsing.

  2. Create one shell instance. Bind it to explicit read/write functions and initialize it once.

  3. Decide scheduling model. Use a polling loop for simple bare-metal demos or a dedicated task/event-driven model for RTOS projects.

  4. Register one harmless command. Start with version, help, or status before adding state-changing commands.

  5. Confirm linker retention. If commands are exported through sections/macros, ensure the linker script and optimization settings keep them.

  6. Add access control for risky commands. Commands that erase flash, format filesystems, reset devices, change boot config, or modify calibration require explicit user/product approval.

Porting Checks

  • UART/CDC/RTT output is non-blocking enough for the product.
  • RX buffering handles backspace, line endings, paste bursts, and command length.
  • Shell task stack is large enough for formatting and command handlers.
  • Command handlers validate arguments and return useful errors.
  • Shell does not run in interrupt context unless the library explicitly supports it.
  • Production builds can disable or restrict debug commands.

Common Failures

  • Raw UART works but shell does not receive because RX callback is not connected to shell input.
  • Commands disappear because linker garbage collection removed command sections.
  • Shell blocks lower-priority tasks due to long output or blocking writes.
  • Command handler crashes from unchecked arguments.
  • Dangerous maintenance commands are exposed without authentication or build guards.

Verification

Before claiming letter-shell works:

  • State transport, scheduler model, shell instance, and command registration method.
  • Confirm help or an equivalent harmless command works.
  • Confirm one custom read-only command works.
  • Confirm line ending, backspace, and invalid command behavior.
  • Identify destructive commands and their guard policy.

Example

User:

想接 letter-shell,通过串口输入命令查看系统状态。

Agent:

  1. Asks for UART backend, RTOS/bare-metal model, config, and command export method.
  2. Verifies raw serial RX/TX first.
  3. Registers a read-only status command and confirms help can list it.
  4. Adds guardrails before exposing reset, erase, or format commands.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.