Install
$ agentstack add skill-yamadashy-agent-readable-readable-stackoverflow ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
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
- API docs: https://api.stackexchange.com/docs
- Throttle / backoff: https://api.stackexchange.com/docs/throttle
- Data licensing: https://stackoverflow.com/help/licensing
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: yamadashy
- Source: yamadashy/agent-readable
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.