← Back to Skills Marketplace
geoly-geo

Geo Bulk Processor

by GEOLY AI · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ✓ Security Clean
255
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install geo-bulk-processor
Description
GEO bulk processing engine for large-scale, multi-page content optimization. Use this skill whenever the user mentions bulk GEO changes, batch content update...
README (SKILL.md)

\r \r

Overview\r

\r geo-bulk-processor is a GEO (Generative Engine Optimization) bulk processing orchestrator designed for large sites and content libraries. It helps an agent:\r

  • Design and run batch optimization pipelines over thousands of pages or documents.\r
  • Standardize templates and patterns for repeated page types.\r
  • Track progress, quality, and rollout phases instead of treating each page as an isolated “single-shot” task.\r \r Use this skill when the user:\r
  • Manages a large website, multi-language site, or content library.\r
  • Wants to bulk retrofit existing pages for GEO readiness, AI citations, or structured data.\r
  • Provides sitemaps, URL lists, spreadsheets, or exports from CMS/analytics tools.\r
  • Needs a repeatable, scalable workflow instead of one-off page edits.\r \r This skill focuses on planning, orchestration, and consistency. It does not tie you to any specific GEO framework, but is optimized to work well with the family of geo-* skills (e.g. content optimizers, schema generators, local optimizers).\r \r

When to use this skill\r

\r Always consider using geo-bulk-processor when:\r

  • The user mentions “bulk”, “batch”, “mass update”, “large site”, “thousands of pages”, “entire catalog”, “all blog posts”, or similar language.\r
  • The user shares CSV/Excel exports, sitemaps, URL lists, or folders of content files.\r
  • The user wants to apply similar GEO strategies across many items (e.g., all product pages, all location pages, all support articles).\r
  • The task obviously cannot be solved efficiently by optimizing a single page at a time.\r \r If the request is clearly about one page or a very small number of pages (e.g., “fix GEO for this single article”), prefer the more focused single-page GEO skills instead of this bulk processor.\r \r

High-level workflow\r

\r When this skill is invoked, follow this structured workflow:\r \r

  1. Clarify the bulk goal\r
    • Identify the primary GEO goals (e.g., AI citations for specific queries, better structured data, consistent FAQ blocks, improved internal linking).\r
    • Ask what content universe is in scope (full site, one section, specific content types, language variants, etc.).\r
    • Ask about constraints (timelines, systems, headcount, tech stack, allowed file formats, risk tolerance).\r \r
  2. Ingest and profile the corpus\r
    • Accept inputs such as:\r
      • URL lists or sitemaps (XML, CSV, plain text).\r
      • Content exports from CMS (CSV, JSON, Markdown/HTML files).\r
      • Analytics exports (top pages, landing pages, long-tail queries).\r
    • Build a lightweight inventory summary:\r
      • Number of items by content type, language, directory, or template.\r
      • Obvious clusters (e.g., /blog/, /product/, /docs/, /locations/).\r
      • Known GEO gaps (missing schema, thin pages, duplicated structures).\r \r
  3. Define content clusters and page types\r
    • Group content into clusters that can share the same optimization strategy:\r
      • By URL pattern, content type, template ID, language, or topic.\r
    • For each cluster, define:\r
      • A page-type definition (what the pages are, who they serve, business role).\r
      • The GEO opportunities specific to that cluster.\r
      • Risks and special constraints (e.g., legal wording, regulated content).\r \r
  4. Design bulk GEO pipelines\r
    • For each cluster, design a pipeline describing:\r
      • Inputs (fields from the CMS/CSV, existing content fields, metadata).\r
      • Transformations (rewrites, new sections, schema generation, FAQ extraction).\r
      • External skills/tools to call (e.g., schema generators, content optimizers).\r
      • Outputs (updated HTML/Markdown, JSON fields, CSV columns, migration specs).\r
    • Capture pipelines in a structured, reusable format, using the guidance in references/bulk_pipelines.md.\r \r
  5. Create reusable templates and patterns\r
    • For each major page type, define:\r
      • A content skeleton (sections, headings, FAQs, schema blocks).\r
      • Variable slots tied to data fields (e.g., product name, city, category).\r
      • Style and tone expectations (aligned with GEO and brand constraints).\r
    • Make these templates explicit so they can be applied programmatically to many items.\r \r
  6. Plan execution and rollout\r
    • Propose phased rollout:\r
      • Pilot set → expansion → full coverage.\r
    • For each phase, specify:\r
      • Sample size, selection criteria, and evaluation plan.\r
      • Success metrics (GEO readiness scores, AI citation coverage, traffic proxies).\r
      • Feedback loop and how to adjust templates/pipelines between phases.\r \r
  7. Generate concrete artifacts\r
    • Depending on user needs, generate:\r
      • A master plan document summarizing clusters, pipelines, and rollout.\r
      • CSV/JSON specs for engineers or operators to implement changes.\r
      • Example before/after content and schema for each major page type.\r
    • Use scripts/geo_bulk_pipeline.py conceptually as a helper reference: it describes how to represent content items, clusters, and pipelines in code or data. You do not have to execute it, but you may mirror its structures.\r \r
  8. Quality assurance and risk management\r
    • Recommend:\r
      • Sampling and manual review before full rollout.\r
      • Regression checks for critical pages (homepage, top products, legal pages).\r
      • Monitoring plan for GEO and traffic indicators after deployment.\r \r

Input formats and expectations\r

\r Typical inputs for this skill:\r

  • URL lists / sitemaps\r
    • Plain-text lists of URLs.\r
    • XML sitemaps (possibly multiple).\r
  • Spreadsheets / tables\r
    • CSV or Excel exports listing URLs, titles, categories, traffic, etc.\r
  • Content exports\r
    • Folders of HTML/Markdown files.\r
    • CMS exports with JSON per document.\r \r When possible, normalize these into a tabular or record-based view:\r
  • One row or record per content item.\r
  • Columns / fields for URL, path, language, category, template, and any key metrics.\r \r If files are not already in a structured format, design and describe a simple manifest format that the user’s team can produce (for example, a CSV with id,url,type,cluster,language columns).\r \r

Output expectations\r

\r Unless the user asks for something highly specific, structure your main outputs as:\r \r

  1. High-level GEO bulk strategy\r
    • Clear description of scope, goals, and constraints.\r
    • Overview of clusters, page types, and priorities.\r \r
  2. Cluster-by-cluster plan\r
    • For each cluster:\r
      • Description and rationale.\r
      • Proposed pipeline steps and external skills/tools.\r
      • Suggested templates and content patterns.\r \r
  3. Implementation-ready specifications\r
    • Tables or pseudo-schemas describing:\r
      • Required input fields and data sources.\r
      • Output fields/files and where they should be written.\r
      • Recommended automation approach (ETL, scripts, CMS workflows).\r \r
  4. Rollout and QA plan\r
    • Phased rollout with criteria and success metrics.\r
    • QA checklists for sampling and sign-off.\r
    • Monitoring and iteration loops.\r \r When the user explicitly requests machine-consumable artifacts (for example, “give me a CSV spec that my data team can use”), prioritize precise, unambiguous formats (clear column names, data types, and examples).\r \r

Use of bundled resources\r

\r This skill ships with additional reference material and helper code:\r \r

  • references/bulk_pipelines.md\r
    • Explains common GEO bulk pipeline patterns.\r
    • Provides example cluster definitions, pipeline step types, and rollout patterns.\r
    • Read this when you need inspiration for how to structure pipelines or explain them to the user’s team.\r \r
  • scripts/geo_bulk_pipeline.py\r
    • Contains lightweight data models and helper functions that show one way to model content items, clusters, and pipelines.\r
    • You can mirror its structures when designing data formats, but you do not need to execute it to complete user requests.\r
    • If the environment allows executing scripts, they can be adapted into real automation helpers, but this skill does not require that.\r \r When in doubt, prefer clear written plans and specs over over-engineered code. The primary value of this skill is in designing scalable GEO bulk workflows, not in implementing full production systems inside the skill.\r \r

Style and collaboration guidelines\r

\r

  • Think like a systems designer.\r
    • Aim for solutions that will still work when the corpus doubles or triples.\r
    • Avoid plans that require per-page manual tweaking unless limited to a small, high-value subset.\r \r
  • Explain the “why”, not just the “what”.\r
    • Connect GEO decisions (clusters, templates, schema types) to the user’s business goals and constraints.\r \r
  • Be opinionated but adaptable.\r
    • Suggest defaults and best practices, but clearly mark them as such.\r
    • Offer alternative paths when user constraints are unclear or strict.\r \r
  • Make it easy to operationalize.\r
    • Prefer concrete artifacts: specs, templates, checklists, and example records.\r
    • Avoid vague recommendations that cannot be turned into tickets or automation.\r \r If the user already uses other geo-* skills, explicitly reference where they fit into each pipeline step (for example, “use geo-schema-gen here to generate Product and FAQ schema for this cluster”).\r \r
Usage Guidance
This skill appears coherent and safe as a planning/orchestration tool: it expects bulk inputs (sitemaps, CSV/JSON exports) and produces pipeline specs and templates. Before installing, consider: (1) where the agent will get the site exports — avoid giving sensitive credentials or live CMS admin access unless necessary; (2) the skill references other geo-* skills (e.g., geo-schema-gen, geo-content-optimizer) which may themselves require credentials or network access — review those separately; (3) if you plan to let the agent process large datasets automatically, ensure sampling and QA policies are in place to avoid accidental mass changes; and (4) the included Python file is a harmless reference model and does not perform network I/O. If you want extra assurance, request the skill author/publisher information or inspect any geo-* skills that will be composed with this one.
Capability Analysis
Type: OpenClaw Skill Name: geo-bulk-processor Version: 0.1.0 The geo-bulk-processor skill is a well-structured framework for orchestrating large-scale SEO and Generative Engine Optimization (GEO) tasks. The bundle consists of clear architectural guidance in SKILL.md, safe Python data models in scripts/geo_bulk_pipeline.py for organizing content clusters, and comprehensive reference documentation. There is no evidence of data exfiltration, malicious execution, or harmful prompt injection; the code is purely functional for data modeling and the instructions are strictly aligned with the stated purpose of bulk content optimization.
Capability Assessment
Purpose & Capability
Name and description match the actions in SKILL.md and the included reference files: designing pipelines, clustering content, and producing export specs for large-site GEO work. The requested inputs (sitemaps, CSV/JSON exports, content folders) are exactly what such a skill would reasonably need; there are no unexpected binaries, credentials, or config paths.
Instruction Scope
SKILL.md stays within orchestration/planning scope: ingest inventory artifacts, design pipelines, produce CSV/JSON specs, and recommend QA/rollout. It explicitly treats scripts/geo_bulk_pipeline.py as a conceptual reference and does not require executing system commands or reading unrelated system files. It does recommend calling other geo-* skills, which is consistent with its orchestration role.
Install Mechanism
Instruction-only skill with a small, static helper Python file. There is no install spec, no downloads, and nothing that writes or executes arbitrary code on disk during install.
Credentials
The skill declares no required environment variables, credentials, or config paths. The SKILL.md does not attempt to read hidden env vars or system configs. The external-skill names referenced are logical integrations for the domain but are not included and may require their own credentials.
Persistence & Privilege
always is false (default). The skill does not request permanent presence or elevated privileges and does not modify other skills' configurations. Autonomous invocation is allowed by platform default but is not combined with any additional risky privileges here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install geo-bulk-processor
  3. After installation, invoke the skill by name or use /geo-bulk-processor
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
Initial release of geo-bulk-processor: a bulk GEO content orchestration skill. - Enables large-scale GEO optimization across thousands of pages or documents. - Supports ingestion of sitemaps, URL lists, spreadsheets, or content exports. - Guides users in designing batch pipelines, reusable page templates, and phased rollout strategies. - Facilitates structured planning, quality control, and implementation specifications for bulk content updates. - Integrates conceptually with other geo-* skills for end-to-end scalable GEO workflows.
Metadata
Slug geo-bulk-processor
Version 0.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Geo Bulk Processor?

GEO bulk processing engine for large-scale, multi-page content optimization. Use this skill whenever the user mentions bulk GEO changes, batch content update... It is an AI Agent Skill for Claude Code / OpenClaw, with 255 downloads so far.

How do I install Geo Bulk Processor?

Run "/install geo-bulk-processor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Geo Bulk Processor free?

Yes, Geo Bulk Processor is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Geo Bulk Processor support?

Geo Bulk Processor is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Geo Bulk Processor?

It is built and maintained by GEOLY AI (@geoly-geo); the current version is v0.1.0.

💬 Comments