Skip to content

Commit ed0b2ac

Browse files
authored
docs(stackoverflow): clarify read fetches answers up to --answers-limit (not 'all') (#1295)
Follow-up from PR #1293 review: 'all answers' was misleading because the implementation is limit-bounded (default 10, max 100) rather than unbounded pagination. Spell out the actual contract — including the accepted-answer-outside-page fallback path — so users don't expect infinite-scroll behaviour. Non-blocking docs-only change flagged by codex-mini1 + First-principles-1 during #1293 review.
1 parent c1a4bd3 commit ed0b2ac

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

docs/adapters/browser/stackoverflow.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,11 @@
3434

3535
## `read` columns
3636

37-
`stackoverflow read <id>` fetches the question, all answers (accepted first,
38-
then by votes), question comments, and answer comments. It mirrors the
37+
`stackoverflow read <id>` fetches the question, answers up to
38+
`--answers-limit` (accepted first, then by votes — if the accepted
39+
answer is outside the votes-sorted page it is fetched separately and
40+
prepended), question comments up to `--comments-limit`, and answer
41+
comments up to `--comments-limit` per answer. It mirrors the
3942
`hackernews read` and `lobsters read` thread shape.
4043

4144
| Column | Description |

0 commit comments

Comments
 (0)