End-to-end SEO content generation. Takes a target keyword, researches the top competing articles via web search, analyzes their structure and topics, then generates a fully optimized 2000+ word blog post in Markdown — ready to publish.
google-generativeai package (pip install google-generativeai)pip install playwright) for competitor researchGEMINI_API_KEY in /Users/edwin/.openclaw/workspace/dreams-arts/.envpython engine.py "best custom printing services near me"
--tone "professional, authoritative" # Writing style (default: "informative, engaging")
--word-count 3000 # Target word count (default: 2000)
--brand "Dream's Arts Evolution" # Brand to weave in naturally
--location "Caguas, PR" # Local SEO focus
--output article.md # Save to file (default: stdout)
--skip-research # Skip web scraping, use keyword only
from engine import SEOContentEngine
engine = SEOContentEngine()
article = await engine.generate(
keyword="custom t-shirt printing Puerto Rico",
tone="professional",
brand="Dream's Arts Evolution",
location="Caguas, PR",
word_count=2500
)
The script outputs a complete Markdown article with YAML frontmatter:
---
title: "Custom T-Shirt Printing in Puerto Rico: The Ultimate 2026 Guide"
meta_description: "Looking for custom t-shirt printing in Puerto Rico? Compare top services, prices, and turnaround times. Free quotes from local shops in Caguas, San Juan & more."
target_keyword: "custom t-shirt printing Puerto Rico"
secondary_keywords: ["screen printing PR", "custom apparel Caguas"]
word_count: 2450
reading_time: "10 min"
internal_links_suggested:
- anchor: "our custom printing services"
target: "/services/custom-printing"
- anchor: "request a free quote"
target: "/contact"
---
# Custom T-Shirt Printing in Puerto Rico: The Ultimate 2026 Guide
## Introduction
...
## What to Look for in a Custom Printing Service
### Quality of Materials
...
### Turnaround Time
...
## Top Custom Printing Methods Compared
...
## Frequently Asked Questions
### How much does custom t-shirt printing cost in Puerto Rico?
...
### What is the minimum order for custom printing?
...
python engine.py "keyword" — this scrapes Google results and analyzes competitors.The engine automatically ensures:
When --skip-research is NOT set, the engine:
--language es for Spanish.共 1 个版本