What problem does it solve?
Building a third-party .ppmplugin bundle for Power Apps mobile requires running manifest generation, Android DEX and iOS framework builds, assembly, and auditing in the correct order, and doing any stage wrong produces a bundle that fails on upload or on device. This Skill acts as the single entry point that drives all five stages in sequence with gates between them.
Core Features & Use Cases
- End-to-end orchestration: Detects viable Android and iOS targets from repo structure, confirms the target set, then invokes the manifest, build, assemble, and audit stage skills in order.
- Verified output only: Stops on any failed stage with a clear handoff message instead of emitting an unverified partial bundle, and runs the audit stage automatically as the final gate.
- Use Case: After scaffolding a native module with Android and iOS source, run this Skill to produce a validated pen-input.ppmplugin containing the manifest, Android DEX, and iOS framework, ready for upload via the wrap wizard.
Quick Start
Ask the agent to run /generate-ppmplugin in a third-party-control repo containing android/ or ios/ native module source to build and verify the .ppmplugin bundle.