Install
$ agentstack add skill-agodianel-esp32-claude-workbench-repo-scout ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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.txtat root → ESP-IDF CMake project - Check for
platformio.ini→ PlatformIO project - Check for
MakefilewithPROJECT_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.txtREQUIRESandPRIV_REQUIRES) - Whether it has tests (check for
test/subdirectory)
3. Identify Hardware Configuration
Look for:
sdkconfig.defaults— default Kconfig settingssdkconfig— 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 dependenciesmanaged_components/— downloaded components- Git submodules —
.gitmodules - Direct source vendoring —
third_party/orlib/
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.
- Author: agodianel
- Source: agodianel/esp32-claude-workbench
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.