ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Meta Tags - SEO Tag Generator

Generate HTML meta tags for SEO, Open Graph, Twitter Cards, JSON-LD. Copy-paste ready. Perfect for web developers. Free CLI tool.

skill-install โ€” Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/lxgicstudios/meta-tags
Or

Meta Tags

Generate complete meta tags for SEO. HTML, Open Graph, Twitter Cards, JSON-LD schema.

Installation

npm install -g @lxgicstudios/meta-tags

Basic Usage

npx @lxgicstudios/meta-tags -t "Page Title" -d "Description" -u "https://example.com"

Commands

Generate All Tags

meta-tags -t "My Website" -d "Welcome to my site" -u "https://example.com"

With Social Image

meta-tags -t "Blog Post" -d "Great article" -i "https://example.com/image.jpg"

Article Type

meta-tags -t "How to Code" --type article --author "John Doe" --published "2024-01-15"

From Config File

meta-tags --config seo.json -o head.html

Options

OptionDescription
-t, --titlePage title (required)
-d, --descriptionMeta description
-u, --urlCanonical URL
-i, --imageOG/Twitter image
-k, --keywordsKeywords (comma-separated)
--site-nameWebsite name
--twitterTwitter handle
--typeOG type: website, article, product
--formathtml, json, react, vue

Output Example

<!-- Primary Meta Tags -->
<title>My Website</title>
<meta name="description" content="Welcome...">
<link rel="canonical" href="https://example.com">

<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="My Website">
<meta property="og:image" content="https://...">

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="My Website">

<!-- JSON-LD -->
<script type="application/ld+json">...</script>

Output Formats

meta-tags -t "Title" --format html   # Default
meta-tags -t "Title" --format json   # JSON
meta-tags -t "Title" --format react  # React Helmet
meta-tags -t "Title" --format vue    # Vue useHead

Common Use Cases

Blog post tags:

meta-tags -t "My Article" -d "Description" -i "cover.jpg" --type article --author "Me"

Generate for Next.js:

meta-tags -t "Page" --format react -o metadata.tsx

Built by LXGIC Studios

๐Ÿ”— GitHub ยท Twitter

Metadata

Stars1601
Views1
Updated2026-02-27
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build โ€” we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-lxgicstudios-meta-tags": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.