← ClaudeAtlas

twitter-interactlisted

Twitter/X reply, like, and retweet via skill-cli. Trigger for engagement actions.
korbinjoe/TeemAI · ★ 2 · Code & Development · score 76
Install: claude install-skill korbinjoe/TeemAI
# twitter-interact **Only allowed CLI commands:** | Command | Purpose | |---------|---------| | `cli.py ping-server` | Bridge health | | `cli.py post-comment --platform twitter --url URL --content "..."` | Reply to tweet | | `cli.py post-comment --platform twitter --url URL --content-file PATH` | Reply from file | | `cli.py like-tweet --url URL` | Like tweet | | `cli.py retweet --url URL` | Retweet | ## Constraints - **Confirm reply text with user before posting** - Use absolute paths for `--content-file` - Run Twitter CLI commands **sequentially** - Do not engage in the same invocation immediately after `twitter-explore` browse — wait ≥5 min (`sleep 300`) or use a separate agent run - ≥15 min between multiple engage commands: `sleep $((900 + RANDOM % 300))` - Tweet URL format: `https://x.com/{user}/status/{id}` ## Workflows ### Reply to tweet ```bash python cli.py post-comment --platform twitter \ --url "https://x.com/user/status/1234567890" \ --content "Thanks for sharing!" ``` ### Like ```bash python cli.py like-tweet --url "https://x.com/user/status/1234567890" ``` ### Retweet ```bash python cli.py retweet --url "https://x.com/user/status/1234567890" ```