Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Web Wl

ASecurity

How to use @owlmeans/web-wl — the browser half of the white-label contract — the bound WL_PROVIDE entrypoint, the caching WlWebService that loads an organization's white-label set, and the WlLogo component. Auto-invoked when reading white-label data in a web app or rendering a customer's branding.

3 stars
0 votes
0 copies
0 views
Added 9/22/2026
developmenttypescriptgoreactbackend

Works with

cli

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add owlmeans/common --skill web-wl --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Web Wl?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Web Wl
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/owlmeans-web-wl/badge)](https://www.skillsdirectory.com/skills/owlmeans-web-wl)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: web-wl
description: How to use @owlmeans/web-wl — the browser half of the white-label contract — the bound WL_PROVIDE entrypoint, the caching WlWebService that loads an organization's white-label set, and the WlLogo component. Auto-invoked when reading white-label data in a web app or rendering a customer's branding.
user-invocable: false
---

# @owlmeans/web-wl

**Layer:** Web (React)
**Install:** `"@owlmeans/web-wl": "^0.1.18-rc.30"` in `dependencies`

Reads what `@owlmeans/server-wl` serves. One service call per organization entity, cached inside the
service, plus a component for the one piece of branding almost every app needs.

## Key Exports

| Export | Description |
|--------|-------------|
| `entrypoints` | The `WL_PROVIDE` protocol bound for the browser. Spread it into the app's entrypoint list or `call()` misses |
| `makeWlService(alias?)` | The service factory. Defaults to `DEFAULT_ALIAS` |
| `DEFAULT_ALIAS` | `'wl-web-serivce'` — spelled exactly that way. Always register and look the service up through this constant rather than a literal |
| `WlWebService` | `load<T>(entityId, resource?) => Promise<ProvidedWLSet<T>>` and `extract<T>(key, set) => ProvidedWL<T>`. The `resource` argument is accepted and ignored — the whole set always comes back |
| `ProvidedWLSet<T>` | The whole answer: `{ [providerAlias]: ProvidedWL<T> }` |
| `WlLogo` | `<WlLogo entityId={…} defImg={…} />` — both props optional. Renders the `wl-logo` section's `brand.wideLogo`, else `defImg`, else nothing; with no `entityId` it never loads and only `defImg` can show. It reads the section by the literal name `wl-logo`, so the backend must register its media provider under exactly that alias |
| `Config`, `Context` | This package's `AppConfig`/`AppContext` from `@owlmeans/web-client`, narrowed for its own service |

The component prop interfaces are **not** exported — the entry point re-exports the component only.
Type a wrapper with `ComponentProps<typeof WlLogo>` rather than importing a props name.

## Wiring

```typescript
import { entrypoints as wlEntrypoints, makeWlService } from '@owlmeans/web-wl'

context.registerService(makeWlService())
const entrypoints = [...baseEntrypoints, ...wlEntrypoints, ...managerEntrypoints]
```

## Reading a white-label set

```typescript
import { DEFAULT_ALIAS } from '@owlmeans/web-wl'
import type { WlWebService } from '@owlmeans/web-wl'
import type { CustomStyles } from '@owlmeans/wled'

const wl = context.service<WlWebService>(DEFAULT_ALIAS)
const set = await wl.load(entityId)
const styles = wl.extract<CustomStyles>('wl-styles', set)
if (styles.exists === true) {
  applyTheme(styles.colors, styles.font)
}
```

The key is the **provider service alias the backend registered**, the same string that appears in
that server's `cfg.wlProviders`. It is not a `WL_TYPE_*` constant — those name the `type` field
inside a section, which is how a reader confirms the shape it got.

The value `load` sends as the `entity` param is the argument it was given, unchanged; what the server
accepts there is the server's rule, not this package's.

`load` memoises per `entityId` in a cache created inside `makeWlService`, so the memo lives exactly as
long as that service instance and two services made under different aliases keep independent caches.
The entry is written only after the call resolves and there is no in-flight promise memo, so
concurrent callers — two `WlLogo`s mounting in the same tick — each issue their own request; the
cache only dedups calls made after one has returned. Nothing invalidates it either, so a screen that
has just written new branding must reload the page (or read the write's own response) rather than
expecting `load` to see the change.

## Depends On

- `@owlmeans/wled`, `@owlmeans/client`, `@owlmeans/client-entrypoint`, `@owlmeans/context`
- `@owlmeans/web-client` — supplies the `AppConfig`/`AppContext` this package's `Config`/`Context`
  extend. It is imported by the published types but missing from the manifest, so a consumer has to
  install it explicitly or the declarations do not resolve
- `react` (peer)

The server counterpart is `@owlmeans/server-wl`. Editing screens for white-label records live in
downstream manager packages, not here.

Attribution

owlmeansowlmeans
View sourceMore from owlmeans →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284072 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →