What problem does it solve?
This Skill helps you extend the OpenHarmony graphic_2d IPC interface layer by adding a new ToService transparent channel from the Client side to the Service side, so your new rs_interfaces API can be wired through the full C/S + IPC + authorization chain.
Core Features & Use Cases
- Client-to-Service IPC wiring: Adds corresponding declarations and proxy/stub IPC handling to carry your interface parameters and return values across processes.
- End-to-end ToService path: Connects the request flow from the Client entry to rs_screen (Service implementation layer) using the expected call-chain patterns.
- Auth integration: Updates IPC interface codes and enforces either @System or @Foundation authorization in the access verifier path.
- Use Case: You need to add a new
RSInterface in graphic_2d that is marked as ToService; use this Skill to generate the required plumbing up through IPC and rs_screen so the underlying hardware-specific behavior can be implemented later.
Quick Start
Ask the AI to add a new graphic_2d RSInterface ToService C++ API by providing the exact interface declaration and choosing whether it uses @System or @Foundation authentication.