pulumi-component — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited pulumi-component (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Add a new Pulumi ComponentResource to src/pulumi/components/.
infra, build, net, app, state. import * as pulumi from '@pulumi/pulumi'
export interface MyComponentArgs {
// All inputs are pulumi.Input<T>
}
export class MyComponent extends pulumi.ComponentResource {
public readonly myOutput: pulumi.Output<string>
constructor(name: string, args: MyComponentArgs, opts?: pulumi.ComponentResourceOptions) {
super('clawops:<category>:MyComponent', name, {}, opts)
// Create child resources with { parent: this }
this.myOutput = pulumi.output('...')
this.registerOutputs({ myOutput: this.myOutput })
}
}tests/pulumi/:pulumi.runtime.setMocks() (see src/pulumi/CLAUDE.md)aws:ec2/instance:Instance not aws:ec2:Instance.claude/rules/pulumi.md: all inputs pulumi.Input<T>, all outputs pulumi.Output<T>.this.registerOutputs(...) at the end of the constructor.envVars (R6).~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.