skills$openclaw/Meta Tags - SEO Tag Generator
lxgicstudios7.8kโ˜…

by lxgicstudios

Meta Tags - SEO Tag Generator โ€“ OpenClaw Skill

Meta Tags - SEO Tag Generator is an OpenClaw Skills integration for writing workflows. Generate HTML meta tags for SEO, Open Graph, Twitter Cards, JSON-LD. Copy-paste ready. Perfect for web developers. Free CLI tool.

7.8k stars3.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nameMeta Tags - SEO Tag Generator
descriptionGenerate HTML meta tags for SEO, Open Graph, Twitter Cards, JSON-LD. Copy-paste ready. Perfect for web developers. Free CLI tool. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/meta-tags
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/meta-tags
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains Meta Tags - SEO Tag Generator in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
294 B
SKILL.md
2.4 KB
SKILL.md

name: Meta Tags - SEO Tag Generator description: Generate HTML meta tags for SEO, Open Graph, Twitter Cards, JSON-LD. Copy-paste ready. Perfect for web developers. Free CLI tool.

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

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install Meta Tags - SEO Tag Generator?

Run openclaw add @lxgicstudios/meta-tags in your terminal. This installs Meta Tags - SEO Tag Generator into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/meta-tags. Review commits and README documentation before installing.