Files
jackwener__opencli/docs/adapters/browser/lobsters.md
sline 4391ccfcb8 feat(tiktok): add TikTok adapter with 15 commands (#202)
* feat(tiktok): add TikTok adapter with 15 commands

TikTok (15 commands, browser mode):

Read commands:
- profile: user profile info via rehydration script parsing
- search: search videos via internal search API
- explore: trending videos from explore page (DOM scraping)
- user: recent videos from a user page (DOM scraping)
- following: list accounts you follow
- friends: friend suggestions
- live: browse live streams with viewer counts
- notifications: activity notifications

Write commands (verified with real interactions):
- like/unlike: like or unlike a video by URL
- save/unsave: add or remove video from Favorites
- follow/unfollow: follow or unfollow a user
- comment: comment on a video

All write operations verified with live TikTok interactions.

* docs: add missing adapter documentation for doc-coverage CI
2026-03-21 22:57:56 +08:00

636 B

Lobsters

Mode: 🌐 Public · Domain: lobste.rs

Commands

Command Description
opencli lobsters hot Hottest stories
opencli lobsters newest Latest stories
opencli lobsters active Most active discussions
opencli lobsters tag Stories by tag

Usage Examples

# Quick start
opencli lobsters hot --limit 10

# Filter by tag
opencli lobsters tag --tag rust --limit 5

# JSON output
opencli lobsters hot -f json

# Verbose mode
opencli lobsters hot -v

Prerequisites

None — all commands use the public JSON API, no browser or login required.