What problem does it solve?
Developing task plugins for the Certd certificate management platform requires knowledge of its online YAML plugin format, where script source code lives in a content field rather than decorator-based source files. This Skill guides the AI to produce complete, importable plugin YAML that follows Certd conventions.
Core Features & Use Cases
- Online YAML Plugin Generation: Produces full plugin YAML with pluginType, metadata fields, input configuration, and a content field containing the executable script.
- AbstractTaskPlugin Template: Provides a class template using _ctx.import for module loading, this.getAccess for authorization, this.ctx.http for API calls, and proper error handling with exceptions or skip returns.
- Run Strategy Handling: Explains runStrategy semantics (0 = skip after success, 1 = always run) so tasks behave correctly across pipeline reruns.
- Use Case: A developer wants a Certd task plugin that calls a third-party API to deploy a certificate; the Skill outputs the complete YAML ready to import via the /scoped/sys/ai/plugin/import endpoint.
Quick Start
Create a Certd online task plugin that deploys a certificate to my hosting provider's API and give me the complete importable YAML.