Agent skill · luongnv89
brand-name-checker
Check product and brand names for conflicts across trademarks, domains, social handles, and package registries. Returns a risk level and Proceed/Modify/Abandon recommendation. Skip for name brainstorming, logo design, or trademark filings.
What it needs
About 6k tokens when loaded.
What this skill does
Brand Name Checker Check product and brand names for conflicts across trademarks, domains, social media, and package registries (npm, PyPI, Homebrew, apt). When to Use Use this skill before adopting a product or brand name. To stay within the agent's context budget, lean sections (templates, examples) live in references/.md and per-source workers live in agents/.md — only the orchestrator instructions are inlined here. Subagent Architecture This skill uses parallel subagents to handle 13+ sequential web fetches across independent sources. Pattern: B (Parallel Workers) + D (Research+Synthesis). Agents Agent Role Output ------- ------ -------- social-checker Search 6 platforms (Twitter, Instagram, GitHub, LinkedIn, TikTok, Discord) in parallel JSON: per-platform availability status registry-checker Check npm, PyPI, Homebrew, apt availability with owner info JSON: per-registry status and owner details domain-checker Check .com, .io, .app, .co, regional TLDs availability JSON: per-TLD registration status trademark-checker Search WIPO, EUIPO, INPI trademark databases JSON: conflict analysis per database synthesizer Apply risk matrix and produce final recommendation Markdown + JSON: Risk level, verdict, alternatives Parallelization Strategy Early-Exit Rule: If social-checker finds an exact handle taken on any of the 6 platforms, skip steps 2-4 (Registry, Domain, Trademark) and jump straight to the synthesizer with an "Abandon" verdict. This is referenced elsewhere in this file simply as the Early-Exit Rule. Independent Workers: Registry, domain, trademark checkers run in parallel without dependencies Sequential Flow: Social → (if clear) → Parallel {Registry, Domain, Trademark} → Synthesizer Speedup: ~4x faster than sequential approach (13+ web fetches parallelized into 2-3 waves). Environment Check Before executing: 1. Verify WebSearch and WebFetch tools are available 2. Confirm internet connectivity for external service queries 3. …
How to use it
Reference it in AdaL, Claude Code, Cursor or any coding agent — nothing to install:
@skills luongnv89/brand-name-checker