AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Repo Scout

skill-agodianel-esp32-claude-workbench-repo-scout · by agodianel

Scan and understand an ESP-IDF project structure, identifying components, dependencies, and architecture patterns.

No reviews yet
0 installs
27 views
0.0% view→install

Install

$ agentstack add skill-agodianel-esp32-claude-workbench-repo-scout

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-agodianel-esp32-claude-workbench-repo-scout)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Repo Scout? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Repo Scout

Scan an ESP-IDF project to understand its structure, components, and patterns before making changes.

When to Use

  • Starting work on an unfamiliar project.
  • Before writing an implementation contract.
  • When you need to understand dependencies between components.

Steps

1. Identify Project Type

Determine the build system:

  • Check for CMakeLists.txt at root → ESP-IDF CMake project
  • Check for platformio.ini → PlatformIO project
  • Check for Makefile with PROJECT_NAME → Legacy ESP-IDF Make project

2. Map the Component Structure

find . -name "CMakeLists.txt" -not -path "./build/*" | head -20
find . -name "component.mk" -not -path "./build/*" | head -20

For each component directory, note:

  • Component name
  • Public headers (in include/)
  • Dependencies (from CMakeLists.txt REQUIRES and PRIV_REQUIRES)
  • Whether it has tests (check for test/ subdirectory)

3. Identify Hardware Configuration

Look for:

  • sdkconfig.defaults — default Kconfig settings
  • sdkconfig — current build configuration
  • Pin definitions — search for GPIO_NUM_, #define.*PIN, #define.*GPIO
  • Peripheral usage — search for i2c_, spi_, uart_, ledc_, adc_, wifi_, ble_

4. Map Task Architecture

Search for FreeRTOS task creation:

grep -rn "xTaskCreate\|xTaskCreatePinnedToCore" --include="*.c" --include="*.h"

Document:

  • Task names
  • Stack sizes
  • Priorities
  • Core affinity (if pinned)

5. Identify External Dependencies

Check:

  • idf_component.yml — ESP Component Registry dependencies
  • managed_components/ — downloaded components
  • Git submodules — .gitmodules
  • Direct source vendoring — third_party/ or lib/

6. Generate Scout Report

Produce a summary with:

  • Project type: ESP-IDF version, build system
  • Components: list with brief purpose
  • Hardware dependencies: pins, peripherals, communication protocols
  • Task map: FreeRTOS tasks with parameters
  • External dependencies: libraries and components
  • Test coverage: which components have tests
  • Risks: anything unusual or potentially problematic

Output Format

Write the scout report to the active mission file or print it in a structured markdown block.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.