openbrand — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited openbrand (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.
Extract brand assets from any website URL — logos, colors, backdrop images, and brand name.
claude mcp add --transport stdio \
--env OPENBRAND_API_KEY=your_api_key \
openbrand -- npx -y openbrand-mcpGet your free API key at openbrand.sh/dashboard.
Once configured, use the extract_brand_assets tool with a URL to get structured brand data.
npm add openbrandimport { extractBrandAssets } from "openbrand";
const result = await extractBrandAssets("https://stripe.com");
if (result.ok) {
// result.data.brand_name → "Stripe"
// result.data.logos → LogoAsset[]
// result.data.colors → ColorAsset[]
// result.data.backdrop_images → BackdropAsset[]
}curl "https://openbrand.sh/api/extract?url=https://stripe.com" \
-H "Authorization: Bearer your_api_key"| Asset | Sources |
|---|---|
| Logos | Favicons, apple-touch-icons, header/nav logos, inline SVGs (with dimension probing) |
| Brand colors | theme-color meta tags, manifest.json, dominant colors from logo imagery |
| Backdrop images | og:image, CSS backgrounds, hero/banner images |
| Brand name | og:site_name, application-name, logo alt text, page title |
{
"brandName": "Stripe",
"logos": [
{ "url": "https://...", "type": "favicon", "resolution": { "width": 32, "height": 32, "aspect_ratio": 1 } }
],
"colors": [
{ "hex": "#635bff", "usage": "primary" },
{ "hex": "#0a2540", "usage": "secondary" }
],
"backdrops": [
{ "url": "https://...", "description": "Hero image" }
]
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.