Agent skill · Data & Analytics

schema-markup-generator

Generate and implement JSON-LD structured data for web apps, blogs, FAQs, and SaaS sites. Supports WebSite, SoftwareApplication, BlogPosting, FAQPage, HowTo, and more.

Nick44,414★ · +328/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill schema-markup-generator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Whoisabhishekadhikari
Path: skills/schema-markup-generator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Schema Markup Generator Skill Add JSON-LD structured data to pages to unlock rich results, improve CTR, and signal context to Google and AI systems. --- ## When to Use - Use when adding or auditing JSON-LD schema for websites, SaaS apps, tools, articles, FAQs, breadcrumbs, or organization pages. - Use when schema must be implemented in Next.js App Router or validated against Google Rich Results and Schema.org tooling. - Use when a page has strong content but lacks structured data for search engines and rich-result eligibility. --- ## How to Add Schema in Next.js App Router The cleanest approach is a reusable `JsonLd` component: ```jsx // components/JsonLd.jsx export function JsonLd({ data }) { const json = JSON.stringify(data).replace(/</g, '\\u003c'); return ( <script type="application/ld+json" dangerouslySetInnerHTML={{ __html: json }} /> ); } ``` Use it in any page: ```jsx import { JsonLd } from '@/components/JsonLd'; export default function MyPage() { return ( <> <JsonLd data={mySchemaObject} /> {/* rest of page */} </> ); } ``` --- ## Schema Types by Page Type ### WebSite + Sitelinks Searchbox (homepage only) ```js { "@context": "https://schema.org", "@type": "WebSite", "nam

What's inside
Steps it walks through
  1. When to Use
  2. How to Add Schema in Next.js App Router
  3. Schema Types by Page Type
  4. WebSite + Sitelinks Searchbox (homepage only)
  5. SoftwareApplication (tool / SaaS app pages)
  6. Article / BlogPosting (blog posts)
  7. FAQPage (FAQ sections, tool help pages)
  8. HowTo (step-by-step tool guides)
  9. BreadcrumbList (all non-homepage pages)
  10. Organization (about, contact pages)
  11. Combining Multiple Schemas on One Page
  12. Validation
  13. Schema Markup Checklist
  14. Limitations
Commands it runs
Quick check: schema appears in HTML
curl -s https://www.yourdomain.com/tools/keyword-density | grep -A 5 "application/ld+json"
More from agentic-awesome-skills
All skills →
About this skill
What does the schema-markup-generator skill do?

Generate and implement JSON-LD structured data for web apps, blogs, FAQs, and SaaS sites. Supports WebSite, SoftwareApplication, BlogPosting, FAQPage, HowTo, and more.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill schema-markup-generator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going