Agent skill · Backend & API

embedded-docs

Embedded firmware documentation generation and maintenance using Doxygen and related tools. Expert skill for API documentation, hardware interface documentation, memory maps, and integration with documentation systems.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill embedded-docs --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 13 KB
Bundled scripts: none
Allowed tools: ReadGrepWriteEditBashGlobWebFetch
Path: library/specializations/embedded-systems/skills/embedded-docs/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Embedded Documentation Skill Expert skill for embedded firmware documentation generation and maintenance. Provides Doxygen comment generation, API documentation structure, hardware interface documentation, and integration with documentation systems. ## Overview The Embedded Documentation skill enables comprehensive documentation for embedded firmware projects: - Doxygen comment generation and maintenance - API documentation structure and organization - Hardware interface documentation - Memory map documentation - Call graph and dependency visualization - Version changelog management - Register documentation formatting - Integration with Sphinx/MkDocs ## Capabilities ### 1. Doxygen Comment Generation Generate Doxygen-compatible documentation comments: ```c /** * @file uart_driver.h * @brief UART peripheral driver for STM32F4 series * @author Firmware Team * @version 1.2.0 * @date 2026-01-24 * * @details * This driver provides a hardware abstraction layer for UART peripherals. * It supports: * - Polling, interrupt, and DMA transfer modes * - Hardware flow control (RTS/CTS) * - Configurable baud rates up to 10.5 Mbps * - Error detection and handling * * @note Thread-safe when used w

What's inside
Steps it walks through
  1. Overview
  2. Capabilities
  3. 1. Doxygen Comment Generation
  4. 2. Function Documentation
  5. 3. Hardware Register Documentation
  6. 4. Memory Map Documentation
  7. 5. API Documentation Structure
  8. Process Integration
  9. Workflow
  10. 1. Analyze Codebase
  11. 2. Generate Documentation Comments
  12. 3. Configure Doxygen
  13. 4. Generate Output
  14. Output Schema
Ships with 1 file
  • README.md
Commands it runs
Find undocumented functions
grep -rn "^[a-z_]*\s\+[a-z_]*(" src/ | grep -v "/\*\*"
Count documented vs undocumented
find src/ -name "*.h" -exec grep -l "@brief" {} \; | wc -l
find src/ -name "*.h" | wc -l
Generate HTML documentation
doxygen Doxyfile
Generate PDF (requires LaTeX)
cd docs/api/latex && make pdf
Serve locally for review
More from babysitter
All skills →
About this skill
What does the embedded-docs skill do?

Embedded firmware documentation generation and maintenance using Doxygen and related tools. Expert skill for API documentation, hardware interface documentation, memory maps, and integration with documentation systems.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill embedded-docs --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going