Brand check
Skill produtoramaxvision/maxvision-utilities/media-forge/plugins/media-forge-hosted/skills/brand-check
MaxVision's curated Claude Code marketplace — production-grade skills for n8n workflows, Google Tag Manager API, and more.
npx -y skills add produtoramaxvision/maxvision-utilities --skill brand-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
INTERNAL - brand compliance check (color deltaE2000 + logo + font). Used by enterprise-corrector and quality-reviewer.
SKILL.md
1.4 KB, as published. Nobody here has run it
media-forge:brand-check
INTERNAL skill. Performs brand compliance checks on a generated asset: palette ΔE2000, logo presence/position, and font keyword scan. Called by enterprise-corrector and quality-reviewer.
Workflow
- Receive image path and
brand-guidelines.ymlpath from caller context. - Palette check: use node-vibrant to extract dominant colors from the image. Compute ΔE2000 against each brand palette color. Flag any color where ΔE2000 > 5.
- Logo check: if guidelines specify logo requirement, use pixel-pattern scan to detect logo region. Validate position against allowed zones.
- Font check: if guidelines specify disallowed fonts, scan OCR text output for font name keywords.
- Return structured result:
{ "pass": boolean, "violations": [] }.
When to use
Called internally by enterprise-corrector during correction pass and by quality-reviewer in Stage 2 of the review pipeline. Not for direct user invocation.
Outputs
pass: boolean — true if all brand checks passviolations: list of{ check, field, value, expected, fix }for each failure- Error classes on failure:
BRAND_COLOR,BRAND_LOGO,BRAND_FONT - ΔE2000 scores per color pair