git clone https://github.com/ComeOnOliver/skillshub
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/libukai/awesome-agent-skills/obsidian-to-x" ~/.claude/skills/comeonoliver-skillshub-obsidian-to-x && rm -rf "$T"
skills/libukai/awesome-agent-skills/obsidian-to-x/SKILL.mdPost to X (Twitter)
Posts text, images, videos, and long-form articles to X via real Chrome browser (bypasses anti-bot detection).
Default Behavior (No Additional Instructions)
When user invokes this skill without specifying what to publish (e.g., just says "发到 X" or uses slash command):
-
Clean Chrome CDP processes first (REQUIRED - prevents port conflicts):
pkill -f "Chrome.*remote-debugging-port" 2>/dev/null; pkill -f "Chromium.*remote-debugging-port" 2>/dev/null; sleep 2 -
Get current active file from Obsidian workspace:
jq -r '.lastOpenFiles[0]' .obsidian/workspace.json -
Read the file content using Read tool
-
Auto-detect publishing type:
- Check if file has frontmatter with
,title:
, or标题:
fieldTitle: - Has title in frontmatter → Publish as X Article (long-form)
- No frontmatter or no title → Publish as Regular Post (short-form)
- Check if file has frontmatter with
-
Inform user of detected type and proceed with publishing
-
Execute appropriate workflow:
- For X Article: Convert with
→ Publish withobsidian-to-article.tsx-article.ts - For Regular Post: Convert with
→ Publish withobsidian-to-post.tsx-post.ts
- For X Article: Convert with
-
Success Detection: When running publishing scripts in background, check output for success markers:
- Best method: Count
occurrences matching expected image countImage upload verified - Alternative: Look for
orPost composed (preview mode)Browser remains open - For X Articles: Look for
orArticle composedBrowser remains open - Use short timeout (10-15s) with
, then check output contentblock=false - Report success immediately when markers detected, don't wait for task completion
- Example: 3 images → wait for 3x
+ text typing completionImage upload verified
- Best method: Count
Example:
User: "发到 X" AI: ✓ Detected current file: Articles/news/my-article.md ✓ Found frontmatter with title → Publishing as X Article [proceeds with article publishing workflow]
Content Types
X Articles vs Regular Posts:
| Feature | X Articles | Regular Posts |
|---|---|---|
| Content | Rich text (Markdown) | Plain text only |
| Formatting | ✅ Bold, italic, headers, lists | ❌ All stripped |
| Code blocks | ✅ Syntax highlighting | ❌ Not supported |
| Images | ✅ Multiple images | ✅ Max 4 images |
| Length | Long-form (unlimited) | Short (280 chars) |
| Requirements | X Premium | Free |
| Script | | |
| Conversion | | |
When to use:
- X Articles: Blog posts, tutorials, technical articles with code
- Regular Posts: Quick updates, announcements, simple text + images
AI Auto-Detection (for Obsidian files):
When user requests to publish the currently active Obsidian file without specifying the type:
- Read the file content using Read tool
- Check for frontmatter (YAML block between
markers at the start)--- - Auto-select publishing type:
- Has frontmatter with title field (
,title:
, or标题:
) → Publish as X ArticleTitle: - No frontmatter or no title field → Publish as Regular Post
- Has frontmatter with title field (
- Inform the user of the detected type before publishing
IMPORTANT:
- ONLY use frontmatter presence to determine publishing type
- DO NOT consider content length, word count, or any other factors
- Even if content is very long (800+ words), if there's no frontmatter with title → publish as Regular Post
- Even if content is very short, if there's frontmatter with title → publish as X Article
- Strictly follow the frontmatter rule without exceptions
Example decision logic:
File with frontmatter: --- title: My Technical Article --- Content here... → Detected: X Article (has title in frontmatter) File without frontmatter: Just some quick thoughts to share... → Detected: Regular Post (no frontmatter)
Quick Start
For Obsidian users who want to publish the currently active article:
bash ${SKILL_DIR}/scripts/publish-active.sh
This automatically:
- Detects the active file (via workspace.json or Obsidian CLI)
- Converts Obsidian syntax to X format
- Opens X Articles editor with content filled in
Script Directory
Important: All scripts are located in the
scripts/ subdirectory of this skill.
Agent Execution Instructions:
- Determine this SKILL.md file's directory path as
SKILL_DIR - Script path =
${SKILL_DIR}/scripts/<script-name>.ts - Replace all
in this document with the actual path${SKILL_DIR} - Resolve
runtime: if${BUN_X}
installed →bun
; ifbun
available →npx
; else suggest installing bunnpx -y bun
Script Reference:
| Script | Purpose |
|---|---|
| Publishing Scripts | |
| Publish regular posts (text + images, max 4) |
| Publish video posts (text + video) |
| Publish quote tweet with comment |
| Publish X Articles (rich text + images + code) |
| Conversion Scripts | |
| Convert Obsidian Markdown → plain text + images (for Posts) |
| Convert Obsidian Markdown → X Articles format (for Articles) |
| Utilities | |
| One-command publish for active Obsidian file |
Prerequisites
- Google Chrome or Chromium
runtimebun- First run: log in to X manually (session saved)
- For Obsidian integration:
tool (jq
on macOS)brew install jq
Pre-flight Check (Optional)
Before first use, suggest running the environment check:
${BUN_X} ${SKILL_DIR}/scripts/check-paste-permissions.ts
Checks: Chrome, Bun, Accessibility permissions, clipboard, paste keystroke.
If any check fails, provide fix guidance per item:
| Check | Fix |
|---|---|
| Chrome | Install Chrome or set env var |
| Bun runtime | (macOS) or |
| Accessibility (macOS) | System Settings → Privacy & Security → Accessibility → enable terminal app |
| Paste keystroke (Linux) | Install (X11) or (Wayland) |
Obsidian Integration
For Obsidian users, this skill can automatically detect the currently active file and convert Obsidian-specific syntax.
Quick workflow:
# One-command publish bash ${SKILL_DIR}/scripts/publish-active.sh
Manual workflow:
# Step 1: Get active file (workspace.json method, 39x faster) ACTIVE_FILE=$(jq -r '.lastOpenFiles[0]' .obsidian/workspace.json) # Step 2: Convert Obsidian syntax bun ${SKILL_DIR}/scripts/obsidian-to-article.ts "$ACTIVE_FILE" "Temp/converted.md" # Step 3: Publish bun ${SKILL_DIR}/scripts/x-article.ts "Temp/converted.md"
For detailed Obsidian integration, see
references/obsidian-integration.md:
- How to detect active file (workspace.json vs CLI)
- Performance comparison (0.007s vs 0.274s)
- Error handling and fallback strategies
For Obsidian syntax conversion, see
references/obsidian-conversion.md:
- Converting
image syntax![[]] - Handling Chinese frontmatter fields
- Manual conversion commands
Regular Posts
Text + up to 4 images. Plain text only (all Markdown formatting stripped).
From Obsidian Markdown
Step 1: Clean Chrome CDP processes first (REQUIRED - prevents port conflicts)
pkill -f "Chrome.*remote-debugging-port" 2>/dev/null; pkill -f "Chromium.*remote-debugging-port" 2>/dev/null; sleep 2
Step 2: Convert Markdown to plain text + images
# Extract content from Markdown file # Supports both standard Markdown  and Obsidian ![[path]] image syntax bun ${SKILL_DIR}/scripts/obsidian-to-post.ts "Articles/my-post.md" > /tmp/post-content.json TEXT=$(jq -r '.text' /tmp/post-content.json) IMAGES=$(jq -r '.images[]' /tmp/post-content.json)
Image Syntax Support:
- ✅ Standard Markdown:
 - ✅ Obsidian syntax:
![[path/to/image.png]] - ✅ Network URLs:
or![[https://example.com/image.jpg]] - Local paths are converted to absolute paths
- Network images are automatically downloaded in parallel (3-4x faster than sequential)
Step 3: Publish post
${BUN_X} ${SKILL_DIR}/scripts/x-post.ts "$TEXT" --image "$IMAGES"
Direct Usage
${BUN_X} ${SKILL_DIR}/scripts/x-post.ts "Hello!" --image ./photo.png
Parameters:
| Parameter | Description |
|---|---|
| Post content (plain text, positional) |
| Image file (repeatable, max 4) |
| Custom Chrome profile |
Content Processing:
- ✅ Plain text (all formatting stripped)
- ✅ Images (max 4)
- ❌ No rich text formatting
- ❌ No code blocks
- ❌ No HTML
Browser Behavior:
- Script opens browser with content filled in
- Browser remains open for manual review
- User can review, edit, and publish at their own pace
- User manually closes browser when done
- Add
flag to auto-publish (closes after 2 seconds)--submit
AI Success Detection (for background execution):
- Don't wait for task completion (browser stays open indefinitely)
- Best method: Count
in output matching expected image countImage upload verified - Alternative: Check for
orPost composed (preview mode)Browser remains open - Use short timeout (10-15s) then check output content
- Report success immediately when markers detected
- Example workflow:
1. Know you're uploading 3 images 2. Wait 10-15s for uploads 3. Check output: grep "Image upload verified" | wc -l 4. If count == 3 → Report success immediately
Video Posts
Text + video file.
Step 1: Clean Chrome CDP processes (REQUIRED)
pkill -f "Chrome.*remote-debugging-port" 2>/dev/null; pkill -f "Chromium.*remote-debugging-port" 2>/dev/null; sleep 2
Step 2: Publish video post
${BUN_X} ${SKILL_DIR}/scripts/x-video.ts "Check this out!" --video ./clip.mp4
Parameters:
| Parameter | Description |
|---|---|
| Post content (positional) |
| Video file (MP4, MOV, WebM) |
| Custom Chrome profile |
Limits: Regular 140s max, Premium 60min. Processing: 30-60s.
Quote Tweets
Quote an existing tweet with comment.
Step 1: Clean Chrome CDP processes (REQUIRED)
pkill -f "Chrome.*remote-debugging-port" 2>/dev/null; pkill -f "Chromium.*remote-debugging-port" 2>/dev/null; sleep 2
Step 2: Publish quote tweet
${BUN_X} ${SKILL_DIR}/scripts/x-quote.ts https://x.com/user/status/123 "Great insight!"
Parameters:
| Parameter | Description |
|---|---|
| URL to quote (positional) |
| Comment text (positional, optional) |
| Custom Chrome profile |
X Articles
Long-form Markdown articles (requires X Premium).
Step 1: Clean Chrome CDP processes (REQUIRED)
pkill -f "Chrome.*remote-debugging-port" 2>/dev/null; pkill -f "Chromium.*remote-debugging-port" 2>/dev/null; sleep 2
This prevents "Chrome debug port not ready" errors. Always run this first, automatically, without asking the user.
Step 2: Publish article
${BUN_X} ${SKILL_DIR}/scripts/x-article.ts article.md ${BUN_X} ${SKILL_DIR}/scripts/x-article.ts article.md --cover ./cover.jpg
Parameters:
| Parameter | Description |
|---|---|
| Markdown file (positional) |
| Cover image |
| Override title |
Frontmatter:
title, cover_image supported in YAML front matter.
Note: Script opens browser with article filled in. User reviews and publishes manually.
Code Blocks Support
Code blocks are automatically extracted from Markdown and inserted into X Articles editor. Supports all languages (JavaScript, Python, TypeScript, Rust, Go, Shell, etc.). No manual action required.
Troubleshooting
Common issues:
- Chrome debug port not ready → Always clean CDP processes first (see above)
- macOS Accessibility Permission Error → Enable in System Settings
- Code blocks not inserting → Automatic, check console for errors
For detailed troubleshooting, see
references/troubleshooting.md.
References
- Obsidian file detection and integrationreferences/obsidian-integration.md
- Converting Obsidian syntax to standard Markdownreferences/obsidian-conversion.md
- Regular posts workflow and troubleshootingreferences/regular-posts.md
- X Articles detailed guidereferences/articles.md
- Common issues and solutionsreferences/troubleshooting.md
Extension Support
Custom configurations via EXTEND.md. Check these paths (priority order):
(project directory).libukai-skills/obsidian-to-x/EXTEND.md
(user home)$HOME/.libukai-skills/obsidian-to-x/EXTEND.md
EXTEND.md Supports: Default Chrome profile
Notes
- First run: manual login required (session persists)
- All scripts fill content into the browser and keep it open for manual review
- Browser remains open until user manually closes it (except when using
flag)--submit - Cross-platform: macOS, Linux, Windows