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

x-postingx 发帖

Agent Skill

x-posting 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

264

周安装

11

GitHub Stars

4

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cdeistopened/opened-vault --skill x-posting

简介

x-posting 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索梳理等研究检索场景。
  • 通过关键词、任务描述或来源仓库提供上下文,由 Agent 执行信息聚合与过滤。
  • 安装前需确认权限范围、维护状态,注意是否触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库路径进一步核验具体用法和功能边界。

SKILL.md

X Posting Workflow

End-to-end workflow for creating, approving, and scheduling X/Twitter posts from OpenEd content.

When to Use

  • Batch processing X posts from recent content
  • Promoting podcast episodes or blog posts
  • Scheduling a week of social content
  • Any X posting that involves guest tagging

Prerequisites

  • GETLATE_API_KEY in .env
  • Connected Twitter account in getlate.dev (@OpenEdHQ)

The Workflow

Step 1: Find Content

Search the Master Content Database for recent/relevant content:

# Find recent podcasts
ls "Content/Master Content Database/Podcasts/" | head -20

# Find recent blog posts
ls "Content/Master Content Database/Blog Posts/" | head -20

Read source files to extract:

  • Key insights and quotes
  • Guest names
  • Actual URLs (from frontmatter url: field)

CRITICAL: Never hallucinate URLs. Always pull from the source file's frontmatter.


Step 2: Find Guest X Handles

Before writing any post featuring a guest:

  1. Web search: "[Guest Name] [Company] Twitter X account"
  2. Verify it's the correct person (check bio)
  3. Note both personal handle AND company handle if applicable

Common OpenEd guest handles:

  • See Studio/Social_Scheduling.md for previously found handles
  • Add new handles to the reference table when found

Step 3: Framework Fitting via Sub-Agents

CRITICAL: Spawn a sub-agent for EACH piece of content.

This is token-heavy but ensures quality. Each sub-agent does deep framework fitting rather than surface-level template matching.

Sub-Agent Prompt Template:

You are writing X/Twitter posts for OpenEd. Your job is DEEP FRAMEWORK FITTING - matching this concept to proven templates that amplify it.

## Source Content
[Paste the full content or key excerpts]

## Guest Info
- Name: [Guest Name]
- X Handle: @[handle]
- Company: [Company] (@[company_handle] if applicable)

## URL (use exactly)
[URL from frontmatter]

## Your Task

### Phase 1: Concept Extraction
Extract from this content:
1. Core insight (one sentence)
2. Emotional hook (what feeling does this evoke?)
3. Most quotable moment
4. Surprising fact or statistic
5. Contrarian angle (what does this challenge?)

### Phase 2: Template Review
Read the FULL post-structures.md file. Do not skim.

For this concept, evaluate AT LEAST these template categories:
- Commentary (quote + translation + explanation)
- Contrast Evaluation (X overrated, Y underrated)
- Paradox Hook (present contradiction)
- Comparison with percentages (numbers + question)
- Personal Story (setup → conflict → resolution)
- One Sentence Comparison
- Behavior Dichotomy
- Binary Framing Hook
- Counterintuitive Statement Hook

For each potentially fitting template:
1. Name the template
2. Explain WHY it might work for this concept
3. Rate fit: Strong / Moderate / Weak
4. Draft a quick test version

### Phase 3: Select and Write
Choose 2-3 BEST fitting templates. Write full post variations using the EXACT template structure.

### Phase 4: Voice Validation
For each draft, check against AI-tells:

HARD BLOCKS (reject and rewrite if present):
- Correlative constructions ("X isn't just Y - it's Z")
- Split correlatives ("It wasn't about X. It was about Y.")
- Staccato fragments ("No X. No Y. Just Z.")
- Setup phrases ("Here's the thing:", "The best part?")
- Triple adjective patterns
- Thesaurus words (utilize, leverage, comprehensive, crucial)

VOICE CHECK:
- Does this sound like a person talking or performing "good writing"?
- Is this something you'd actually text to a friend?
- Does it follow the template structure or drift into generic copy?

### Output Format
For each post option:
1. Template used: [Name]
2. Why this template: [1-2 sentences]
3. Post:
> [The actual post text]
>
> [link]
4. Voice validation: [Pass/Fail with notes]

Launch sub-agents in parallel - one per content piece. They will return structured options ready for the scheduling file.


Step 4: Compile Scheduling File

Collect sub-agent outputs into Studio/Social_Scheduling.md:

# X Post Scheduling Queue

**Created:** [date]
**Status:** Awaiting approval

---

### 1. [Content Title] - @[guest_handle]

**URL:** [actual URL from source]

**Option A - [Template Name]:**
> [Post content]
>
> [link]

Template reasoning: [Why this template fits]

- [ ] Approve Option A

**Option B - [Template Name]:**
> [Post content]
>
> [link]

Template reasoning: [Why this template fits]

- [ ] Approve Option B

User marks approvals with [X] and adds notes in {NOTES:...}.


Step 5: Voice Validation (Final Check)

Before posting/scheduling, run final validation:

Hard Blocks:

  • No correlative constructions ("X isn't just Y - it's Z")
  • No split correlatives ("X wasn't about Y. It was about Z.")
  • No staccato fragments ("No X. No Y. Just Z.")
  • No setup phrases ("Here's the thing:", "The best part?")

Soft Checks:

  • Sounds like a person, not a copywriter
  • Uses actual template structure (can identify which one)
  • Guest tagged correctly
  • URL is real (from source file)

Step 6: Post and Schedule via getlate.dev

Post immediately:

python3 agents/post_tweet.py '[tweet content]'

Schedule for future:

import os
import requests
from pathlib import Path
from dotenv import load_dotenv

load_dotenv(Path(__file__).parent.parent / ".env")

api_key = os.getenv("GETLATE_API_KEY")
base_url = "https://getlate.dev/api/v1"
headers = {"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}

# Get account ID
response = requests.get(f"{base_url}/accounts", headers=headers)
accounts = response.json().get("accounts", [])
twitter_account = next((a for a in accounts if a.get("platform") == "twitter"), None)
account_id = twitter_account.get("_id")

# Schedule post (9am ET = 14:00 UTC in winter)
post_data = {
    "platforms": [{"platform": "twitter", "accountId": account_id}],
    "content": "Your tweet content here",
    "scheduledFor": "2026-01-15T14:00:00Z"  # ISO 8601 format
}

response = requests.post(f"{base_url}/posts", headers=headers, json=post_data)

Time conversion:

  • 9am ET (winter) = 14:00 UTC
  • 9am ET (summer/DST) = 13:00 UTC

Quick Reference

getlate.dev API

EndpointMethodPurpose
/accountsGETList connected accounts
/postsPOSTCreate/schedule post

Post payload:

{
  "platforms": [{"platform": "twitter", "accountId": "..."}],
  "content": "Tweet text",
  "publishNow": true,           // OR
  "scheduledFor": "ISO-8601"    // for scheduling
}

Best Posting Times (ET)

  • 8-9am - Morning commute
  • 12-1pm - Lunch break
  • 7-8pm - Evening wind-down

Character Limits

  • Optimal: 70-100 characters
  • Max: 280 characters
  • With link: ~250 characters of text

Sub-Agent Required Reading

Each sub-agent MUST read these files before writing posts:

FilePurposeTokens
.claude/skills/text-content/references/templates/post-structures.md100+ template structures~4000
.claude/skills/ai-tells/SKILL.mdVoice constraints~200
.claude/skills/ai-tells/references/pirate-wires-examples.mdVoice examples~1500
Source content fileThe actual content to promotevaries

Why this matters: The quality difference between skimming templates and deeply reading them is the difference between generic AI copy and posts that actually follow proven structures.


Related Skills

  • text-content - Template library and framework fitting
  • ai-tells - Voice validation
  • ghostwriter - Deeper voice guidance

Files

  • agents/post_tweet.py - Single tweet posting
  • agents/test_tweet.py - API testing
  • Studio/Social_Scheduling.md - Current queue

*Last updated: 2026-01-14 (v2 - added sub-agent framework fitting)*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.12%
按下载量换算31

Claude

29.53%
按下载量换算26

Cursor

20.35%
按下载量换算18

Gemini CLI

10.46%
按下载量换算9

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/cdeistopened/opened-vault --skill x-posting 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills