agentsclimarketplace

Readable stackoverflow

Skill yamadashy/agent-readable/skills/readable-stackoverflow

Fetches a Stack Overflow question body and its answers via the Stack Exchange API (api.stackexchange.com/2.3 with the withbody filter, gzip-compressed). Anonymous quota is 300 req/day per IP; honor the response backoff field. Surface the question URL when displaying content (CC BY-SA attribution). Use when the URL is in the form stackoverflow.com/questions/{id}/...From its SKILL.md

Install
npx -y skills add yamadashy/agent-readable --skill readable-stackoverflow

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 2 commands, including `curl -s --compressed "https://api.stackexchange.com/2.3/questions/{id}?site=stackoverflow&filter=withbody"` and 1 more.
  • fetches URLsInstructs the agent to fetch 2 URLs, including https://api.stackexchange.com/2.3/questions/{id}?site=stackoverflow&filter=withbody and 1 more.

SKILL.md

1.5 KB, 288 tokens by cl100k_base, as published. Nobody here has run it

Stack Overflow Question Reader

Uses the public Stack Exchange API. Anonymous usage is rate-limited to ~300 requests per IP per day.

Steps

1. Extract the question ID

From a URL like https://stackoverflow.com/questions/12345678/some-slug, the ID is 12345678.

2. Fetch the question body

curl -s --compressed \
  "https://api.stackexchange.com/2.3/questions/{id}?site=stackoverflow&filter=withbody"

3. Fetch the answers

curl -s --compressed \
  "https://api.stackexchange.com/2.3/questions/{id}/answers?site=stackoverflow&filter=withbody&sort=votes&order=desc"

The response uses gzip; the --compressed flag is required by the API.

4. Honor backoff

If a response includes a backoff field, do not call the API again for that many seconds.

Attribution

Stack Exchange content is licensed under CC BY-SA. When surfacing answers, include the question URL and note the source as Stack Overflow.

Reference

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.