Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Schema Markup Generator

Generate complete, validated Schema.org JSON-LD markup for any content type to boost AI citation rates. Creates structured data for Organization, FAQPage, Ar...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
1 · 293 · 0 current installs · 0 all-time installs
byGEOLY AI@geoly-geo
MIT-0
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description, SKILL.md, and included scripts align: the package provides schema templates, interactive generation, URL auto-extraction, batch sitemap processing, and validation. There are no environment variables, external credentials, or unrelated binaries requested that would be inconsistent with a schema generator.
Instruction Scope
SKILL.md instructs the agent/user to run the provided Python scripts and to use auto-extraction (requests + BeautifulSoup) or a sitemap for batch processing. That behavior is within scope but implies network activity: the scripts fetch page HTML (user-supplied URLs/sitemaps) and write JSON files locally. Confirm you want the agent to fetch remote pages and potentially process many URLs (batch mode).
Install Mechanism
No install spec is provided (instruction-only), but full Python scripts are included in the bundle. The scripts rely on third-party Python packages (requests, beautifulsoup4). There are no downloads from external/unknown URLs and no extract/install steps that would write unknown binaries to disk. You will need Python and the listed libraries installed on the host.
Credentials
The skill requires no environment variables, credentials, or elevated config paths. It reads user-provided files (JSON, sitemap) and writes output to an output directory — behaviour consistent with a generator/validator and proportionate to the stated purpose.
Persistence & Privilege
The skill is not marked always:true and does not request to persist or modify other skills or global agent settings. It is user-invocable and will only run when triggered; no elevated persistent privileges are requested.
Assessment
This skill appears coherent and consistent with its stated purpose, but review a few practical points before running: 1) The scripts perform network requests (auto-extract and batch modes) — only use URLs/sitemaps you trust and be mindful of crawling rate limits and robots.txt. 2) The package includes Python code that relies on requests and beautifulsoup4; install those dependencies in a controlled environment (virtualenv or sandbox) before running. 3) I observed minor code quality issues in the listed files: batch_generate.py references re in detect_page_type but doesn't import re (this will raise a NameError), and the generate_schema.py listing in the package preview was truncated — confirm the full file is present and review it for completeness. 4) Validate generated JSON-LD with the recommended validators (validator.schema.org and Google Rich Results Test) before deploying to production. 5) As a general precaution, inspect the scripts yourself or run them in an isolated environment to ensure they behave as expected (no hidden network endpoints or unexpected file writes). If you want, I can point out exact lines to patch (e.g., add `import re`), or scan the full generate_schema.py for any additional issues.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.1
Download zip
geovk9731ccfvjpfwvt1328v9veq2181ybpkjson-ldvk9731ccfvjpfwvt1328v9veq2181ybpklatestvk97c3jftcxrchbpc6a75dj3ag1821fepschemavk9731ccfvjpfwvt1328v9veq2181ybpkstructured-datavk9731ccfvjpfwvt1328v9veq2181ybpk

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

Schema Markup Generator

Methodology by GEOly AI (geoly.ai) — structured data is the language AI uses to understand your brand.

Generate production-ready Schema.org JSON-LD markup for any page type.

Quick Start

Generate schema for your page:

python scripts/generate_schema.py --type <schema-type> [--url <page-url>]

Example:

python scripts/generate_schema.py --type Organization --url example.com
python scripts/generate_schema.py --type FAQPage --file faqs.json

Why Schema Matters for GEO

Structured data helps AI platforms understand:

  • What your content is (entity type)
  • Who created it (author, publisher)
  • When it was published (freshness)
  • How it relates to other content (breadcrumbs)

Without schema, AI systems rely on NLP inference which is less reliable.

Supported Schema Types

TypePriorityBest For
Organization🔴 CriticalHomepage, About page — establishes brand entity
FAQPage🔴 CriticalFAQ/Support pages — feeds AI Q&A answers
Article / BlogPosting🟡 HighBlog posts, news — improves citability
Product🟡 HighProduct/pricing pages — enables shopping citations
HowTo🟡 HighTutorials, guides — feeds step-by-step answers
WebSite🟡 HighHomepage — enables site search in AI
BreadcrumbList🔵 MediumAll pages — improves navigation understanding
VideoObject🔵 MediumVideo pages — enables video citations
ImageObject🔵 MediumImage galleries — enables image citations
LocalBusiness🔵 MediumPhysical locations — local AI search

Full schema reference: See references/schema-types.md

Generation Methods

Method 1: Interactive (Recommended)

python scripts/generate_schema.py --type Organization --interactive

Guided prompts for all required and optional fields.

Method 2: From URL (Auto-Extract)

python scripts/generate_schema.py --type Article --url https://example.com/blog/post

Automatically extracts metadata from the page.

Method 3: From JSON Input

python scripts/generate_schema.py --type FAQPage --file faqs.json

Where faqs.json contains your content data.

Method 4: Batch Generate

python scripts/batch_generate.py sitemap.xml --output schemas/

Generate schemas for all pages in a sitemap.

Validation

Validate generated schema:

python scripts/validate_schema.py schema.json

Checks for:

  • Required fields present
  • Valid Schema.org types
  • Proper JSON-LD syntax
  • Google Rich Results eligibility

Implementation

Add to Your Page

Paste the generated JSON-LD inside your HTML <head>:

<head>
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "Organization",
    ...
  }
  </script>
</head>

Test Before Deploying

  1. Schema.org Validator: https://validator.schema.org
  2. Google Rich Results Test: https://search.google.com/test/rich-results
  3. JSON-LD Playground: https://json-ld.org/playground/

Common Mistakes

Wrong: Multiple conflicting Organization schemas on same page ✅ Right: One comprehensive Organization schema

Wrong: Using http://schema.org (insecure) ✅ Right: Using https://schema.org (secure)

Wrong: Copy-pasting without updating placeholder values ✅ Right: All fields contain actual, accurate data

Advanced Usage

Multiple Schemas per Page

Some pages need multiple schema types. Combine them in an array:

python scripts/generate_schema.py --types Organization,WebSite --url example.com

Nested Entities

Generate related schemas together:

python scripts/generate_schema.py --type Product \
  --with-offer --with-review --with-brand

Custom Properties

Add custom properties not in the generator:

python scripts/generate_schema.py --type Organization \
  --custom '{"knowsAbout": ["SEO", "AI", "Machine Learning"]}'

Output Formats

  • JSON-LD (default): Ready to paste into HTML
  • JSON: Raw structured data
  • HTML: Complete <script> tag
  • Markdown: With explanations

Schema Hierarchy

Understanding how schemas relate:

Organization (top-level entity)
├── WebSite (belongs to Organization)
├── Product (offered by Organization)
│   ├── Offer (pricing for Product)
│   └── Review (of Product)
├── Article (published by Organization)
│   ├── Author (Person or Organization)
│   └── Publisher (Organization)
└── LocalBusiness (subtype of Organization)
    └── Place (physical location)

See Also

Files

9 total
Select a file
Select a file to preview.

Comments

Loading comments…