Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ npm install -g @jackwener/opencli@latest
| **producthunt** | `posts` `today` `hot` `browse` | 公开 / 浏览器 |
| **instagram** | `explore` `profile` `search` `user` `followers` `following` `follow` `unfollow` `like` `unlike` `comment` `save` `unsave` `saved` | 浏览器 |
| **lobsters** | `hot` `newest` `active` `tag` | 公开 |
| **qiita** | `search` `user` `articles` | 公开 |
| **note.com** | `search` `user` `articles` | 公开 / 浏览器 |
| **medium** | `feed` `search` `user` | 浏览器 |
| **sinablog** | `hot` `search` `article` `user` | 浏览器 |
| **substack** | `feed` `search` `publication` | 浏览器 |
Expand Down
2 changes: 2 additions & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ export default defineConfig({
{ text: 'Wikipedia', link: '/adapters/browser/wikipedia' },
{ text: 'Lobsters', link: '/adapters/browser/lobsters' },
{ text: 'Steam', link: '/adapters/browser/steam' },
{ text: 'Qiita', link: '/adapters/browser/qiita' },
{ text: 'note.com', link: '/adapters/browser/note' },
],
},
{
Expand Down
4 changes: 4 additions & 0 deletions docs/adapters/browser/bluesky.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
| `opencli bluesky user` | Recent posts from a user |
| `opencli bluesky trending` | Trending topics |
| `opencli bluesky search` | Search users |
| `opencli bluesky search-posts` | Search posts |
| `opencli bluesky feeds` | Popular feed generators |
| `opencli bluesky followers` | User's followers |
| `opencli bluesky following` | Accounts a user follows |
Expand Down Expand Up @@ -44,6 +45,9 @@ opencli bluesky thread --uri "at://did:.../app.bsky.feed.post/..."
# Starter packs
opencli bluesky starter-packs --handle bsky.app

# Search posts
opencli bluesky search-posts "AI agent" --limit 10

# JSON output
opencli bluesky profile --handle bsky.app -f json
```
Expand Down
32 changes: 32 additions & 0 deletions docs/adapters/browser/note.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# note.com

**Mode**: 🌐 / 🔐 · **Domain**: `note.com`

## Commands

| Command | Description | Mode |
|---------|-------------|------|
| `opencli note search <query>` | Search note.com articles | 🔐 Browser |
| `opencli note user <username>` | Get note.com user profile | 🌐 Public |
| `opencli note articles <username>` | List articles by a note.com user | 🌐 Public |

## Usage Examples

```bash
# Search articles (requires browser + login)
opencli note search "AI" --limit 5

# User profile
opencli note user masuyohasiri

# User's articles
opencli note articles masuyohasiri --limit 6

# JSON output
opencli note user masuyohasiri -f json
```

## Prerequisites

- `user` and `articles` commands use public API — no browser required
- `search` command requires the opencli Browser Bridge extension and a logged-in note.com session
31 changes: 31 additions & 0 deletions docs/adapters/browser/qiita.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Qiita

**Mode**: 🌐 Public · **Domain**: `qiita.com`

## Commands

| Command | Description |
|---------|-------------|
| `opencli qiita search <query>` | Search Qiita articles |
| `opencli qiita user <username>` | Get Qiita user profile |
| `opencli qiita articles <username>` | List articles by a Qiita user |

## Usage Examples

```bash
# Search articles
opencli qiita search "ChatGPT" --limit 5

# User profile
opencli qiita user jnchito

# User's articles
opencli qiita articles jnchito --limit 10

# JSON output
opencli qiita search "LLM" -f json
```

## Prerequisites

- No browser required — uses Qiita public API v2
2 changes: 2 additions & 0 deletions docs/adapters/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ Run `opencli list` for the live registry.
| **[wikipedia](/adapters/browser/wikipedia)** | `search` `summary` `random` `trending` | 🌐 Public |
| **[lobsters](/adapters/browser/lobsters)** | `hot` `newest` `active` `tag` | 🌐 Public |
| **[steam](/adapters/browser/steam)** | `top-sellers` | 🌐 Public |
| **[qiita](/adapters/browser/qiita)** | `search` `user` `articles` | 🌐 Public |
| **[note.com](/adapters/browser/note)** | `search` `user` `articles` | 🌐 / 🔐 |

## Desktop Adapters

Expand Down
Loading