用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/0xranx/agentbrief --skill twitter-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Learn from corrections, mistakes, and discoveries during conversations. When the user corrects you, when something fails unexpectedly, or when you discover a project-specific pattern worth remembering — record it as a learning so future sessions benefit automatically.
When reviewing UI/UX for quality, consistency, and polish. Use when the user says 'review the design,' 'check the UI,' 'does this look good,' 'design audit,' 'UX review,' or 'polish the frontend.' Also use after implementing any user-facing feature to catch visual and interaction issues before shipping.
Red-green-refactor cycle for test-driven development
基于 SOC 职业分类
正在显示 SKILL.md
| name | twitter-workflow |
| description | When the user wants to draft tweets, plan threads, post to Twitter/X, or manage their Twitter presence |
Ensure twitter-cli is installed and authenticated:
# Install
uv tool install twitter-cli
# Auth via browser cookies (no API key needed)
# twitter-cli auto-extracts from Chrome/Arc/Firefox/Edge/Brave
twitter-cli timeline
If auth fails, the user needs to set TWITTER_AUTH_TOKEN and TWITTER_CT0 environment variables from their browser cookies.
Before posting anything, always draft and present to the user for approval:
twitter-cli tweet <id>), then add genuine value.Present the draft clearly:
📝 Draft tweet:
---
[tweet content here]
---
Post this? (y/n)
Never post without explicit user confirmation.
# Single tweet
twitter-cli post "Your tweet content here"
# Tweet with images (up to 4)
twitter-cli post "Check out these results" --image chart.png
# Quote tweet
twitter-cli post "My take on this:" --quote-url https://x.com/user/status/123
# Reply
twitter-cli post "Great point! Here's what I'd add..." --reply-to 123456789
After posting, check engagement:
# Check your recent tweets and their metrics
twitter-cli me --yaml
# Search for mentions or relevant conversations
twitter-cli search "keyword" --tab latest
# Check replies to your tweet
twitter-cli tweet <tweet-id>
Track what works:
Use twitter-cli me --yaml output to analyze patterns and inform the next content batch.