Install
$ agentstack add skill-easyzoom-aix-skills-embedded-framework-libs ✓ 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.
About
Embedded Framework Libs
Overview
Use this skill for framework-style embedded libraries that shape project architecture rather than one feature. Cover PLOOC, Avem, PowerManagement, and similar libraries by focusing on ownership, lifecycle, configuration, coupling, and migration risk.
When To Use
Use this skill when:
- The user wants to add or evaluate PLOOC, Avem, PowerManagement, or a similar embedded framework.
- The task involves object-oriented C patterns, module architecture, power-management framework integration, lifecycle hooks, or broad project restructuring.
- The user is unsure whether a framework is appropriate for a small MCU project.
Do not use this skill for small single-purpose utility libraries that can be integrated locally without architecture impact.
First Questions
Ask for:
- Library/framework name and source.
- Existing project architecture and target MCU/RTOS.
- Problem the framework is meant to solve.
- Code size, RAM, timing, safety, and team familiarity constraints.
- Whether this is greenfield, migration, or partial adoption.
Integration Checklist
- Validate need.
Confirm the framework solves a real recurring problem and is not added for style alone.
- Define boundary.
Decide which modules use the framework and which remain plain C.
- Check lifecycle.
Init, start, stop, suspend, resume, and deinit order must be explicit.
- Keep platform hooks isolated.
Hardware, RTOS, allocator, timebase, and logging hooks should not leak across application modules.
- Migrate incrementally.
Wrap one small module first and verify behavior before broad adoption.
Common Failures
- Applying an OOP-in-C framework to every file and increasing complexity.
- Hidden dynamic allocation in a no-heap project.
- Power-management hooks conflict with drivers or RTOS idle.
- Initialization order becomes implicit and fragile.
- Framework abstractions hide timing-critical hardware operations.
Verification
Before claiming framework integration works:
- State the specific problem solved and the modules in scope.
- Confirm init/lifecycle order and platform hooks.
- Confirm code size/RAM impact if relevant.
- Confirm one migrated module works and rollback is possible.
Example
User:
想在老项目里引入 PLOOC 整理模块。
Agent:
- Asks what module complexity PLOOC should solve and which modules are in scope.
- Recommends one pilot module instead of whole-project migration.
- Verifies code size, init order, and whether the abstraction improves testing/debugging.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: easyzoom
- Source: easyzoom/aix-skills
- License: MIT
- Homepage: https://github.com/easyzoom/aix-skills
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.