← Back to Skills Marketplace
ylongw

Embedded Code Review Expert

by ylongw · GitHub ↗ · v1.1.0
cross-platform ⚠ suspicious
544
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install embedded-review
Description
Expert code review for embedded/firmware projects with dual-model cross-review (Claude + Codex via ACP). Detects memory safety, interrupt hazards, RTOS pitfa...
README (SKILL.md)

Embedded Code Review Expert

Overview

Perform structured code review of embedded/firmware projects using dual-model cross-review: Claude Code and Codex independently review the same diff, then findings are cross-compared to catch blind spots that single-model review misses.

Target environments: bare-metal MCU, RTOS (FreeRTOS/Zephyr/ThreadX), Linux embedded, mixed C/C++ firmware.

Trigger

Activate when user asks to review embedded/firmware code changes. Examples:

  • "review firmware-pro2 的改动"
  • "review the NFC changes"
  • /embedded-review ~/Documents/dec/firmware-pro2
  • /embedded-review ~/Documents/dec/firmware-pro2 HEAD~5..HEAD
  • /embedded-review \x3Cgithub-pr-url>

Severity Levels

Level Name Description Action
P0 Critical Memory corruption, interrupt safety violation, security vulnerability, brick risk Must block merge
P1 High Race condition, resource leak, undefined behavior, RTOS misuse Should fix before merge
P2 Medium Code smell, portability issue, missing error handling, suboptimal pattern Fix or create follow-up
P3 Low Style, naming, documentation, minor suggestion Optional improvement

Workflow

Mode Selection

Single-model mode (default for small diffs ≤100 lines):

  • One review pass using the current session's model
  • Faster, lower cost
  • Suitable for trivial changes, config tweaks, documentation

Dual-model cross-review (default for diffs >100 lines, or when explicitly requested):

  • Claude Code + Codex review independently via ACP
  • Cross-compare findings
  • Higher quality, catches heterogeneous blind spots
  • Use for: new features, architecture changes, critical paths (ISR, crypto, NFC, DMA)

User can override: "用双模型 review" or "quick review 就行"


Phase 0: Preflight — Scope & Context

  1. Run scripts/prepare-diff.sh \x3Crepo_path> [diff_range] to extract:

    • Repository info (branch, last commit)
    • Target identification (MCU, RTOS, compiler)
    • Diff stat and full diff content
  2. Assess scope:

    • No changes: Inform user; offer to review staged changes or a commit range.
    • Small diff (≤100 lines): Default to single-model review.
    • Large diff (>500 lines): Summarize by file/module first, then review in batches by subsystem.
    • Critical path touched (ISR, DMA, crypto, NFC, boot): Always recommend dual-model.
  3. Build review context package:

    REVIEW_CONTEXT = {
      repo_info: (branch, MCU, RTOS, compiler),
      diff: (full git diff text),
      references: (relevant checklist sections from references/),
      focus_areas: (user-specified or auto-detected critical paths)
    }
    

Phase 1: Single-Model Review

For small diffs or when dual-model is not requested:

1) Memory safety scan

  • Load references/memory-safety.md for detailed checklist.
  • Stack overflow, buffer overrun, alignment, DMA cache coherence, heap fragmentation
  • Flag sprintf, strcpy, gets, strcat — suggest bounded alternatives

2) Interrupt & concurrency correctness

  • Load references/interrupt-safety.md for detailed checklist.
  • Shared variable access, critical sections, ISR best practices, RTOS pitfalls
  • Priority inversion, reentrancy, nested interrupt handling

3) Hardware interface review

  • Load references/hardware-interface.md for detailed checklist.
  • Peripheral init ordering, register access, timing violations, pin conflicts
  • Communication protocols: I2C/SPI/UART/NFC buffer management, timeout handling

4) C/C++ language pitfalls

  • Load references/c-pitfalls.md for detailed checklist.
  • Undefined behavior, integer issues, compiler assumptions, linker issues
  • Preprocessor hazards, portability, type safety

5) Architecture & maintainability

  • HAL/BSP layering, abstraction, coupling, testability
  • Dead code, magic numbers, configuration management

6) Security scan (embedded-specific)

  • Secret storage, debug interfaces, firmware update integrity
  • Side channels, fault injection, input validation, stack canaries

→ Skip to Phase 3: Output for single-model results.


Phase 2: Dual-Model Cross-Review (ACP)

When dual-model review is triggered:

Step 1: Prepare review payloads

Build two independent review tasks from the same REVIEW_CONTEXT:

Claude Code task:

You are a senior embedded systems engineer reviewing firmware code changes.

[REVIEW_CONTEXT: repo info, diff, focus areas]

Review checklist (apply all that are relevant):
- Memory safety (references/memory-safety.md)
- Interrupt & concurrency (references/interrupt-safety.md)
- Hardware interfaces (references/hardware-interface.md)
- C/C++ pitfalls (references/c-pitfalls.md)
- Architecture & security

Output format: For each finding, provide:
[P0/P1/P2/P3] [file:line] Title
- Description
- Risk
- Suggested fix

Be thorough. Flag everything you find, even if uncertain — mark uncertain items with [?].

Codex task:

You are an independent code reviewer for embedded/firmware projects.
Your job is to find bugs, security issues, and correctness problems.

[REVIEW_CONTEXT: repo info, diff, focus areas]

Focus on:
1. Memory corruption risks (buffer overflow, use-after-free, stack overflow)
2. Concurrency bugs (race conditions, missing volatile, ISR safety)
3. Hardware interface errors (timing, register access, peripheral init)
4. Logic errors and edge cases
5. Security vulnerabilities

Output: List every issue found as:
[SEVERITY: critical/high/medium/low] [file:line] Issue title
- What's wrong
- What could happen
- How to fix

Do NOT skip low-severity items. Report everything.

Step 2: Spawn parallel ACP sessions

sessions_spawn(runtime="acp", agentId="claude-code", task=claude_task)
sessions_spawn(runtime="acp", agentId="codex", task=codex_task)

Both run simultaneously. Wait for both to complete.

Step 3: Cross-compare findings

After both complete, analyze results:

  1. Consensus findings (both flagged same issue): HIGH CONFIDENCE — these are real bugs
  2. Claude-only findings: Review for validity — may be false positive or genuine catch
  3. Codex-only findings: Review for validity — heterogeneous perspective may catch Claude's blind spots
  4. Contradictions: Flag for human judgment — one says it's fine, other says it's a bug

Map to unified severity levels (P0-P3).


Phase 3: Output Format

## Embedded Code Review Summary

**Target**: [MCU/Board] | [RTOS/Bare-metal] | [Compiler]
**Branch**: [branch name]
**Files reviewed**: X files, Y lines changed
**Review mode**: [Single-model / Dual-model (Claude Code + Codex)]
**Overall assessment**: [APPROVE / REQUEST_CHANGES / COMMENT]

---

## Findings

### 🔴 P0 - Critical (must block)
(none or list)

### 🟠 P1 - High (fix before merge)
1. **[file:line]** Brief title [🤝 consensus / 🔵 Claude-only / 🟢 Codex-only]
   - Description of issue
   - Risk: what can go wrong
   - Suggested fix

### 🟡 P2 - Medium (fix or follow-up)
...

### ⚪ P3 - Low (optional)
...

---

## Cross-Review Analysis (dual-model only)

| Metric | Count |
|--------|-------|
| 🤝 Consensus (both found) | X |
| 🔵 Claude-only | Y |
| 🟢 Codex-only | Z |
| ⚠️ Contradictions | W |

### Notable disagreements
(list any contradictions with both perspectives)

---

## Hardware/Timing Concerns
(register access, peripheral init, timing-sensitive code)

## Architecture Notes
(layering, testability, portability observations)

Phase 4: Next Steps

---
## Next Steps

Found X issues (P0: _, P1: _, P2: _, P3: _).

**How would you like to proceed?**
1. **Fix all** — implement all suggested fixes
2. **Fix P0/P1 only** — address critical and high priority
3. **Fix specific items** — tell me which issues to fix
4. **Re-review with dual-model** — run cross-review (if single-model was used)
5. **No changes** — review complete

Important: Do NOT implement changes until user explicitly confirms.


Resources

references/

File Purpose
memory-safety.md Buffer, stack, heap, DMA, alignment checklist
interrupt-safety.md ISR, concurrency, RTOS, atomic operations checklist
hardware-interface.md Peripherals, registers, timing, protocol checklist
c-pitfalls.md UB, integer, compiler, preprocessor, portability checklist

scripts/

File Purpose
prepare-diff.sh Extract git diff and build review context
Usage Guidance
This skill appears to do what it claims: local git diffs are prepared and then fed to one or two external models for review. Before installing/use: (1) Be aware that dual-model mode will send full diff and file contents to external LLMs (Claude/Codex) — do not run it on repositories containing secrets or private keys unless you trust those model endpoints and your ACP configuration. (2) The registry metadata does not list runtime requirements, but you need Git and an OpenClaw/ACP setup with Claude/Codex agents available; verify these are present and correctly configured. (3) If you need tighter data control, use single-model/local review or sanitize the repo (remove secrets, test on a copy). (4) Review the included scripts (prepare-diff.sh) yourself — it only runs git/grep/diff locally, but running any skill on sensitive repos deserves caution. If you want higher assurance, ask the author for explicit declarations of required binaries/credentials and an explicit privacy notice describing what is sent to external models.
Capability Analysis
Type: OpenClaw Skill Name: embedded-review Version: 1.1.0 The skill is highly vulnerable to shell injection due to unsanitized user input being passed directly to shell commands. Specifically, `SKILL.md` instructs the agent to run `scripts/prepare-diff.sh <repo_path> [diff_range]`, and `scripts/prepare-diff.sh` directly uses `$REPO` in `cd "$REPO"` and `$RANGE` in `git diff "$RANGE"`. An attacker can craft malicious `repo_path` or `diff_range` arguments (e.g., `/embedded-review "; rm -rf /"`) to execute arbitrary commands on the host system, leading to Remote Code Execution (RCE). Additionally, the skill constructs prompts for downstream LLMs (Claude/Codex) using user-provided `diff` content, posing a prompt injection risk against those models. The skill's source is from `https://github.com/ylongwang2782/embedded-review.git`.
Capability Assessment
Purpose & Capability
The skill is a code-review workflow for embedded/firmware projects and its SKILL.md, references, and prepare-diff.sh all align with that purpose. The dual-model cross-review (Claude + Codex) described in the documentation is consistent with the stated goal of higher-quality reviews.
Instruction Scope
Instructions explicitly require extracting full diffs and (in dual-model mode) sending review context and full file contents to ACP-backed models for analysis. That is expected for a thorough code review, but it means the agent will transmit repository contents (potentially secrets) to external LLM endpoints when dual-model review is used — a privacy/exfiltration consideration the SKILL.md does not explicitly warn about.
Install Mechanism
No install spec is present (instruction-only with a small helper script). No downloads or archive extraction occur, so there is minimal installation risk. The included prepare-diff.sh is a small, readable shell script that runs git/grep/diff locally.
Credentials
The skill declares no required env vars or binaries in registry metadata, but SKILL.md/README assume Git is available and that OpenClaw/ACP and configured Claude/Codex agents exist. The lack of declared runtime requirements (git, ACP/agent CLI) in metadata is an inconsistency that could confuse automated eligibility checks; otherwise no unrelated credentials are requested.
Persistence & Privilege
Skill is not always-loaded and is user-invocable (defaults). It does not request permanent presence or attempt to modify other skills or system-wide configs. It only reads local repo state via the helper script; no elevated privileges are requested.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install embedded-review
  3. After installation, invoke the skill by name or use /embedded-review
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
Initial ClawHub release: dual-model cross-review (Claude + Codex via ACP), 4 embedded checklists (memory safety, interrupt safety, hardware interfaces, C/C++ pitfalls), prepare-diff.sh
Metadata
Slug embedded-review
Version 1.1.0
License
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Embedded Code Review Expert?

Expert code review for embedded/firmware projects with dual-model cross-review (Claude + Codex via ACP). Detects memory safety, interrupt hazards, RTOS pitfa... It is an AI Agent Skill for Claude Code / OpenClaw, with 544 downloads so far.

How do I install Embedded Code Review Expert?

Run "/install embedded-review" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Embedded Code Review Expert free?

Yes, Embedded Code Review Expert is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Embedded Code Review Expert support?

Embedded Code Review Expert is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Embedded Code Review Expert?

It is built and maintained by ylongw (@ylongw); the current version is v1.1.0.

💬 Comments