twitter-explorelisted
Install: claude install-skill korbinjoe/TeemAI
# twitter-explore
**Only allowed CLI commands:**
| Command | Purpose |
|---------|---------|
| `cli.py ping-server` | Bridge health |
| `cli.py list-feeds --platform twitter` | Home timeline |
| `cli.py list-feeds --platform twitter --username HANDLE` | User timeline |
| `cli.py search-feeds --platform twitter --keyword QUERY` | Search tweets |
| `cli.py get-feed-detail --platform twitter --url TWEET_URL` | Tweet detail + replies |
| `cli.py user-profile --platform twitter --username HANDLE` | Profile info |
## Search options
| Flag | Values |
|------|--------|
| `--sort-by` | `top` (default), `latest` / `live` |
| `--limit` | Max tweets (default 10) |
## Browse pacing (social-operator — mandatory)
Enforced by agent `SOUL.md`. Summary:
- ≤3 browse commands per invocation (`list-feeds`, `search-feeds`, `get-feed-detail`, `user-profile`)
- ≤2 `get-feed-detail` per run; prefer search/list summaries over opening every tweet
- `sleep $((45 + RANDOM % 45))` between browse commands
- ≤8 Twitter browse commands per day (tracked in `memory/browse-<date>.md`)
- Stop after 2 consecutive CLI exit 2 or 4
## Constraints
- Run `ping-server` first; exit 1 → extension not connected
- Run Twitter CLI commands **sequentially** (shared bridge tab)
- User must be logged into X in Chrome before browsing/search
- Present results as structured summaries: author, text preview, likes, replies, URL
## Workflows
### Home timeline
```bash
python cli.py list-feeds --platform twitter --limit 15