.agents/skills/nullable-new-params/SKILL.md
Use this skill when a change added a new parameter or type member as optional. In internal Remotion code, new inputs must be required and nullable so every caller makes an explicit choice.
name: T | null, not name?: T.null explicitly when no value exists.value === null / value !== null when null is the absence sentinel.undefined as the absence sentinel for new internal APIs unless the surrounding local contract already standardizes on undefined.frozenFrame?: number | null; make it frozenFrame: number | null.Public APIs are the exception. If the changed signature, props type, or options object is exported from a package public entrypoint or documented in packages/docs/docs, making the new field/argument required is a breaking change. Keep it optional or add a backwards-compatible overload/options path, then document/default it as appropriate.
bun .agents/skills/nullable-new-params/scripts/find-new-optional-params.ts
Useful variants:
bun .agents/skills/nullable-new-params/scripts/find-new-optional-params.ts origin/main...HEAD
bun .agents/skills/nullable-new-params/scripts/find-new-optional-params.ts --cached
For each candidate, classify whether it is public:
exports, or documented in packages/docs/docs.For internal candidates, refactor the type from optional to required nullable:
type Before = {
readonly frame?: number;
};
type After = {
readonly frame: number | null;
};
For function parameters:
const before = (frame?: number) => {};
const after = (frame: number | null) => {};
Update every caller/object literal to pass the value explicitly:
field: null when absent.field: maybeValue ?? null only when undefined can still enter from surrounding code.Update implementation logic:
0, '', or false are valid values.value !== null over value for nullable numbers/strings/booleans.Partial<T> only to dodge the new field.For public candidates, preserve backwards compatibility:
const internal = publicValue ?? null.Verify:
bunx turbo run make --filter='<package-name>'.writing-docs skill.?: member or param?: parameter remains.null.null path when behavior depends on absence.