Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

seo-content-productionSEO 内容 production

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

285

周安装

12

GitHub Stars

4

下载量

1
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:seo-content-production(SEO 内容 production)
来源仓库:https://github.com/cdeistopened/opened-vault
仓库路径:skills/seo-content-production
安装命令:
npx skills add https://github.com/cdeistopened/opened-vault --skill seo-content-production
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cdeistopened/opened-vault --skill seo-content-production

简介

用于辅助文档、README 和内容稿件的整理与改写。

  • 适合提炼结构、统一术语或检查链接完整性。
  • 使用时应保留项目已有事实,避免写成确定结论。
  • 安装命令:npx skills add https://github.com/cdeistopened/opened-vault --skill seo-content-production
  • 涉及对外文案时需控制语气,避免过度营销或夸大能力。

SKILL.md

SEO Content Production

Complete workflow from keyword research to publication. This skill orchestrates other skills - it does not duplicate their functionality.

Workflow Overview

RESEARCH → STRUCTURE → SOURCES → DRAFT → QUALITY → PUBLISH
    │           │          │        │        │         │
seomachine   outline   proprietary  write   quality   webflow
                       content              -loop     -publish

Phase 1: Research

Use seomachine for Data

All SEO data comes from the seomachine skill. DO NOT hardcode credentials.

Credentials: Stored in vault .env file:

  • DATAFORSEO_LOGIN, DATAFORSEO_PASSWORD - Keyword research
  • GA4_PROPERTY_ID, GOOGLE_SERVICE_ACCOUNT_PATH - Traffic data
  • GSC_SITE_URL - Search Console data

Common research tasks:

# Keyword research
import sys
sys.path.insert(0, ".claude/skills/seomachine/modules")
from dataforseo import DataForSEO

dfs = DataForSEO()
ideas = dfs.get_keyword_ideas("waldorf vs montessori", limit=50)
questions = dfs.get_questions("homeschool curriculum", limit=20)
serp = dfs.get_serp_data("best homeschool math curriculum")
# Generate content brief with competitor analysis
python3 .claude/skills/seomachine/scripts/content_brief_generator.py "keyword phrase"

# Find keyword gaps vs competitors
python3 .claude/skills/seomachine/scripts/competitor_gap_finder.py --batch --min-volume 200

Validation Criteria

Before proceeding:

  • Search volume > 500/month
  • Keyword difficulty < 30 (winnable)
  • Topic aligns with OpenEd expertise
  • We have (or can create) proprietary perspective

Phase 2: Structure

Identify OpenEd's Unique Angle

Before outlining, answer:

  1. What does OpenEd believe about this topic? (Check opened-identity skill)
  2. What can we say that competitors can't? (Podcast quotes, staff expertise)
  3. What do most articles get wrong or avoid?

Content Type Templates

Templates are in references/content-templates.md. Common types:

TypeLengthWhen to Use
Comparison2000-3000X vs Y searches
Pillar Guide2500-3500"Complete guide to X"
How-To2000-2500"How to X" searches
Listicle1500-2500"Best X for Y" searches

Phase 3: Source Compilation

Search Order (Priority)

  1. OpenEd Book - .claude/references/OpenEdBook/
  2. Published Content - Search Master Content Index
  3. Podcast Transcripts - Grep Published Content/Podcasts/
  4. Staff Knowledge - Tag relevant team members
  5. External Research - Fill remaining gaps

Source Search Commands

# Search published content
grep -rli "topic" "Published Content/" | head -20

# Check Master Content Index
grep -B5 "Tags:.*homeschool" ".claude/references/Master_Content_Index.md"

Phase 4: Draft

Before Writing

  • Research brief complete (from seomachine)
  • Unique angle identified
  • Sources compiled
  • Internal links planned (3+ minimum)

Writing Constraints

Apply these skills automatically:

  • ai-tells - Patterns to avoid
  • ghostwriter - Authentic voice techniques

Key rules:

  • BLUF first - lead with the answer, not the backstory (see references/bluf-rewrite-pattern.md)
  • Table early (for skimmers)
  • 5+ internal links, 2-3 external
  • Use spaced hyphens - not em dashes

AI-isms to Eliminate

See references/ai-tells-quick-reference.md for full list.

Kill words: delve, comprehensive, crucial, leverage, landscape, navigate, foster, facilitate, realm, paradigm, journey, tapestry, myriad, seamless

Kill patterns:

  • "It's not just X - it's Y" (correlative constructions)
  • "In today's fast-paced world..."
  • "Let's dive in..."
  • "The best part?..."

Phase 5: Quality Control

Use quality-loop Skill

Run every draft through 5 judges:

JudgeTypeChecks
Human DetectorBLOCKINGAI tells, correlative constructions
Accuracy CheckerBLOCKINGFacts verified against sources
OpenEd VoiceBLOCKINGBrand alignment, not preachy
Reader AdvocateBLOCKINGEngaging, logical flow
SEO AdvisorADVISORYKeywords, links, meta elements

Quick Checks (Grep Patterns)

# Forbidden words
grep -inE "delve|comprehensive|crucial|leverage|landscape" DRAFT*.md

# Correlative constructions
grep -inE "isn't just|not just .* - it's" DRAFT*.md

# Em dashes (should be hyphens with spaces)
grep -n "—" DRAFT*.md

# Internal link count
grep -oE '\(https://opened\.co[^)]*\)|\(/[^)]*\)' DRAFT*.md | wc -l

Phase 6: Visuals

Use nano-banana-image-generator Skill

AssetDimensionsStyle
Thumbnail16:9watercolor-line
Social card1:1, 4:5brand colors

Comparison article concepts:

  • Two hands offering different gifts
  • Split path through two environments
  • Same tree with different root systems

Phase 7: Publish

Use webflow-publish Skill

Pre-publish checklist:

  • All blocking judges passed
  • Thumbnail created
  • Meta elements finalized
  • Internal/external links verified

Post-Publish

  1. Update articles that should link TO this piece
  2. Sync Master Content Index
  3. Schedule social promotion via newsletter-to-social

Skill Dependencies

PhasePrimary SkillPurpose
ResearchseomachineDataForSEO, GSC, GA4 data
Structureopened-identityBrand perspective
Draftai-tells, ghostwriterWriting quality
Qualityquality-loop5-judge review
Visualsnano-banana-image-generatorThumbnails
Publishwebflow-publishCMS upload
Socialnewsletter-to-socialDerivative posts

Project Folder Structure

Studio/SEO Content Production/[Topic]/
├── SEO_RESEARCH_BRIEF.md   # From seomachine
├── SOURCES.md              # Compiled proprietary sources
├── OUTLINE.md              # Approved structure
├── DRAFT_v1.md             # First draft
├── DRAFT_v2.md             # Post-quality-loop
└── thumbnail-final.png     # Header image

Quick Start

1. Validate topic with seomachine
   → Volume > 500, KD < 30, OpenEd has perspective

2. Create folder: Studio/SEO Content Production/[Topic]/

3. Run research: seomachine content brief + competitor gap

4. Compile sources: OpenEd book → Published → Podcasts → External

5. Get outline approved: Structure + unique angle

6. Draft with constraints: ai-tells + ghostwriter + internal links

7. Quality loop: 5 judges, fix blocking issues

8. Create thumbnail: nano-banana-image-generator

9. Publish: webflow-publish → newsletter-to-social

*Refactored: 2026-01-29 (consolidated from seo-content-writer, removed credential exposure)*

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

31.99%
按下载量换算0

Claude

30.55%
按下载量换算0

Cursor

18.33%
按下载量换算0

Gemini CLI

10.03%
按下载量换算0

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills