Agent SkillsWingedGuardian/GENesis-AGI › content-publish

content-publish

GitHub

端到端内容创作与发布技能。涵盖选题、研究、草稿撰写(强制使用voice-master确保语气)、Telegram审批及通过浏览器自动化发布至Medium。

.claude/skills/content-publish/SKILL.md WingedGuardian/GENesis-AGI

触发场景

用户要求发布关于某主题的文章 用户要求写作并发布到Medium 显式调用content-publish ego分发的会话需要创建和分发内容

安装

npx skills add WingedGuardian/GENesis-AGI --skill content-publish -g -y
更多选项

非标准路径

npx skills add https://github.com/WingedGuardian/GENesis-AGI/tree/main/.claude/skills/content-publish -g -y

不安装直接使用

npx skills use WingedGuardian/GENesis-AGI@content-publish

指定 Agent (Claude Code)

npx skills add WingedGuardian/GENesis-AGI --skill content-publish -a claude-code -g -y

安装 repo 全部 skill

npx skills add WingedGuardian/GENesis-AGI --all -g -y

预览 repo 内 skill

npx skills add WingedGuardian/GENesis-AGI --list

SKILL.md

Frontmatter
{
    "name": "content-publish",
    "keywords": [
        "medium",
        "publish",
        "article",
        "blog",
        "post",
        "content",
        "write",
        "draft",
        "distribution",
        "marketing"
    ],
    "description": "End-to-end content creation and publishing. Takes a topic (or generates one), drafts in the user's voice, gets approval via Telegram, and publishes to Medium via browser automation. Invoke with \"publish a post about X\", \"write and publish to Medium\", \"content-publish\", or when an ego-dispatched session needs to create and distribute content.\n"
}

Voice (MANDATORY — NON-NEGOTIABLE)

EVERY piece of content MUST go through the voice-master skill before publishing. This is a hard requirement, not a suggestion. The voice-master skill is TWO parts — both must be applied:

  1. Exemplar matching (tone, vocabulary, rhythm from real user writing)
  2. Anti-AI-slop pass (em dashes, hedge words, uniform structure, banned phrases)

If content was not drafted with voice-master, apply it NOW before publishing. Do NOT publish content that hasn't passed both checks. Invoke the voice-master skill explicitly — do not attempt to apply voice rules from memory or inline.


Overview

Single skill that covers the full publish pipeline: topic → research → draft → approval → publish. Uses voice-master for drafting, browser MCP tools for publishing, and Telegram for approval.

Medium is the only platform currently wired. The pattern extends to other platforms by swapping the publish step.

Prerequisites

  • Medium login active in Camoufox profile (~/.genesis/camoufox-profile/)
  • Medium username configured in ~/.genesis/config/distribution.yaml
  • Voice-master skill available (exemplars at ~/.claude/skills/voice-master/)
  • Narrative reference card at ~/.genesis/config/genesis-narrative.md
  • Stealth-browser skill (src/genesis/skills/stealth-browser/SKILL.md) — MUST load before any browser interaction. Covers anti-detection timing, honeypot avoidance, and the VNC trusted input technique for Cloudflare Turnstile.

Browser Rules

  • Always use Camoufox (default). Never pass stealth=False to browser_navigate. Chromium has SSL cert issues and no anti-detection.
  • Never give up at Turnstile. The browser tool handles it automatically (3-phase: auto-resolve → VNC click → human alert). If you see Turnstile in the response, the tool is ALREADY handling it. Wait and retry.
  • Camoufox works fine. Any memory claiming "glxtest issues" or "Camoufox broken" is stale/hallucinated (debunked May 2026). Ignore it.
  • Expect to succeed. The pipeline is wired and working. Your job is to persist through transient failures, not to declare failure after one attempt.

Workflow

Step 1 — Determine topic and platform

If the caller provides a topic, use it. If not, check these sources:

  1. Ego proposal (if dispatched via publish_content action)
  2. Recent recon findings (recon_findings MCP)
  3. Knowledge base for trending topics in the user's domain

Platform is Medium unless specified otherwise.

Output: One sentence describing the topic and angle.

Step 2 — Load context

Read these files (do NOT skip any):

  1. ~/.genesis/config/genesis-narrative.md — framing, key phrases
  2. Voice-master exemplar index (~/.claude/skills/voice-master/exemplars/index.md)
  3. Select 3-5 matching exemplars based on medium (long-form), tone, and formality 4 (public content)

Step 3 — Research (if needed)

For topics requiring facts or current data:

  • Use WebSearch for recent developments
  • Use knowledge_recall for existing Genesis knowledge
  • Use recon_findings for competitive intelligence

Skip for opinion/thought-leadership pieces where the user's perspective is the content.

Step 4 — Draft

Write the content following voice-master rules:

  • Evidence-first, not windup
  • Mix short punchy statements with longer reasoning
  • No AI-tell words (delve, leverage, robust, seamless, etc.)
  • Em-dashes: -- no spaces, prefer comma/period/colon first, max 1-2
  • Formality 4 for public Medium posts
  • Read each paragraph aloud mentally — if it sounds like AI, rewrite

Structure for Medium:

  • Title: short, specific, no clickbait
  • Body: 3-8 paragraphs. No headers for short posts. Headers for 1000+ words.
  • No hashtags, no "follow me", no CTAs unless genuinely relevant

Output: Complete draft with title on the first line, body below.

Step 5 — Quality check

First, run the deterministic anti-slop scrubber on the draft. The model's own em-dash audit is unreliable (it leaks spaced em dashes despite the rule), so this mechanical pass is mandatory and runs in code:

# write the draft to ~/tmp first, then:
python -m genesis.content.antislop ~/tmp/draft.md > ~/tmp/draft.clean.md
# stdout = cleaned text (spaced em dashes auto-fixed); stderr = fixes + flags

Use draft.clean.md as the canonical draft for both approval (Step 6) and publish (Step 7) — never paste the pre-scrub text. Then address the scrubber's stderr flags (banned words, contrast cadence — it flags but does not delete these) and verify by eye:

  • Resolved the scrubber's flagged banned words / cadence
  • No three-part lists with identical grammatical structure
  • No sycophantic openers or hedging
  • Reads like a person thinking, not a polished AI response
  • Title is specific and interesting, not generic
  • Content matches the narrative framing (genesis-narrative.md)

If any check fails, rewrite the failing section and re-run the scrubber.

Step 6 — Submit for approval

Send the draft to the user via Telegram (outreach_send MCP) with:

  • The full draft text (the cleaned draft from Step 5)
  • category="content" — routes to the Content Review topic and runs the egress anti-slop scrub on the review copy, so the version under review matches what publishes
  • Platform: Medium
  • Ask: "Approve to publish? Reply 'yes', 'no', or send edits."

Wait for user response. Do NOT publish without explicit approval.

If the user sends edits, apply them and re-submit. If the user says no, stop. Store the draft in memory for potential future use.

Step 7 — Publish to Medium

Follow the stored procedure (medium_browser_publish). The key steps:

  1. Navigate to https://medium.com/new-story (Camoufox, always)
  2. Verify editor loaded (snapshot should show "Title" heading)
  3. Click the h3 title element, type title via browser_fill
  4. Press Enter to move to body
  5. Build full article HTML in JS on window.__articleHTML
  6. Use clipboard API to write content:
    navigator.clipboard.write([new ClipboardItem({
      'text/html': new Blob([window.__articleHTML], {type: 'text/html'}),
      'text/plain': new Blob([plainText], {type: 'text/plain'})
    })])
    
  7. Focus body paragraph, paste via browser_press_key("Control+v")
  8. Verify content with snapshot before proceeding
  9. Click Publish button, add topics if desired, confirm publish
  10. Verify via URL change to ?postPublishedType=initial

CRITICAL: What does NOT work (do not attempt):

  • document.execCommand('insertText') — silently fails in Medium editor
  • document.execCommand('insertHTML') — stripped by Medium's sanitizer
  • Synthetic ClipboardEvent dispatch — Medium ignores synthetic events
  • Only real clipboard paste via navigator.clipboard.write() + Ctrl+V works

If any step fails: Take a screenshot, report the error, do NOT retry blindly. The editor selectors may have changed.

Step 8 — Report result

Send the published URL to the user via Telegram.

Store the outcome in memory:

  • memory_store with tags: ["content", "published", "medium"]
  • Content: topic, URL, date, any engagement data later

If running under a campaign, append to that campaign's showcase pool so the next campaign tick can reference this article (skip this step otherwise):

  • File: ~/.genesis/campaigns/<your-campaign-slug>/showcase-pool.md (substitute the running campaign's own slug)
  • Append under ## Published Medium Articles with today's date, title, and a 2-3 line summary of the article's argument/angle
  • The campaign session uses this as safe public content to share

Error Handling

Error Action
Not logged in to Medium Return error. User must VNC login (one-time).
Cloudflare Turnstile Handled automatically by browser_navigate. The solver cascade (auto-resolve → widget click → VNC fallback) runs without intervention. Do NOT switch browsers, try TinyFish, or give up — Camoufox resolves it.
Editor selectors changed Screenshot + report. Do NOT guess new selectors.
Draft quality check fails Rewrite, max 2 attempts, then submit for manual review.
Telegram approval timeout Store draft as pending. Do not publish.

What This Skill Does NOT Do

  • Auto-publish without approval (every post needs explicit "yes")
  • Schedule posts (use ego cadence for timing decisions)
  • Cross-post to other platforms (separate skill per platform)
  • Generate images or media (text-only for now)
  • Analytics tracking (future: content-analytics skill)

Examples

Direct invocation

User: "Publish a Medium post about why most AI agent benchmarks are useless"

Action: Skip research (opinion piece) → load voice-master + narrative → draft at formality 4 → quality check → Telegram approval → publish → report URL.

Ego-dispatched

Ego proposal: {"action": "publish_content", "topic": "earned autonomy", "platform": "medium", "angle": "why trust frameworks matter more than capability frameworks"}

Action: Load narrative → light research (knowledge_recall for autonomy subsystem details) → draft → quality check → Telegram approval → publish → store outcome for ego learning.

版本历史

  • f9015bb 当前 2026-07-05 18:16

同 Skill 集合

.claude/skills/code-intelligence/SKILL.md
.claude/skills/genesis-development/SKILL.md
.claude/skills/genesis-voice/SKILL.md
.claude/skills/gitnexus/gitnexus-cli/SKILL.md
.claude/skills/gitnexus/gitnexus-debugging/SKILL.md
.claude/skills/gitnexus/gitnexus-exploring/SKILL.md
.claude/skills/gitnexus/gitnexus-guide/SKILL.md
.claude/skills/gitnexus/gitnexus-impact-analysis/SKILL.md
.claude/skills/gitnexus/gitnexus-refactoring/SKILL.md
.claude/skills/shelve/SKILL.md
.claude/skills/unshelve/SKILL.md
.claude/skills/youtube-fetch/SKILL.md
config/gstack-patches/codex-SKILL.md
src/genesis/skills/browser-automation/SKILL.md
src/genesis/skills/debugging/SKILL.md
src/genesis/skills/evaluate/SKILL.md
src/genesis/skills/forecasting/SKILL.md
src/genesis/skills/integrate-module/SKILL.md
src/genesis/skills/lead-generation/SKILL.md
src/genesis/skills/linkedin-comment-strategy/SKILL.md
src/genesis/skills/linkedin-content-calendar/SKILL.md
src/genesis/skills/linkedin-dm-outreach/SKILL.md
src/genesis/skills/linkedin-hook-writer/SKILL.md
src/genesis/skills/linkedin-post-writer/SKILL.md
src/genesis/skills/linkedin-profile-optimizer/SKILL.md
src/genesis/skills/obstacle-resolution/SKILL.md
src/genesis/skills/onboarding/SKILL.md
src/genesis/skills/osint/SKILL.md
src/genesis/skills/prospect-researcher/SKILL.md
src/genesis/skills/research/SKILL.md
src/genesis/skills/retrospective/SKILL.md
src/genesis/skills/stealth-browser/SKILL.md
src/genesis/skills/triage-calibration/SKILL.md
src/genesis/skills/user_evaluate/SKILL.md
src/genesis/skills/video-processing/SKILL.md
.claude/skills/deliverable-builder/SKILL.md
.claude/skills/voice-master/SKILL.md
src/genesis/skills/voice-master/SKILL.md

元信息

文件数
0
版本
f9015bb
Hash
13de663f
收录时间
2026-07-05 18:16

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-13 23:59
浙ICP备14020137号-1 $访客地图$