scaffold-module
Installation
SKILL.md
scaffold-module
Generate new modules following pplx-sdk's layered architecture and conventions.
When to use
Use this skill when creating a new transport backend, domain service, or shared utility for the SDK.
Instructions
- Identify the target layer (core, shared, transport, domain, or client).
- Create the source file with proper imports, type annotations, and docstrings.
- Create the test file in
tests/test_<module>.py. - Update
__init__.pyexports in the target package. - Verify with
pytest tests/test_<module>.py -vandmypy pplx_sdk/.