Install
openclaw skills install @tonywangcn/developer-oss-researchResearches GitHub repos/users/orgs and Chrome Web Store extensions via the Crawlora API — search, profiles, contributors, releases, trending, and extension detail/reviews/permissions — returning clean JSON. Use when the user wants a repo or developer's GitHub profile/stats, what's trending on GitHub, or a Chrome extension's details, permissions, or reviews.
openclaw skills install @tonywangcn/developer-oss-researchLook up GitHub repos, users, and orgs, plus Chrome Web Store extensions, as normalized JSON from the Crawlora API — no scraping github.com or the Chrome Web Store.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401./github/search/repositories (q, GitHub search
syntax works) to find one; /github/repo/{owner}/{repo} for detail, plus
/contributors, /languages, /releases, /forks./github/search/users (q); /github/user/{username}
(+ /followers, /following, /repos, /events, /pinned) or
/github/org/{org} (+ /repos). /github/trending and
/github/trending/developers (filter by language, since) cover
what's hot right now./chromewebstore/search (term) to find an
extension id; /chromewebstore/item for detail, /permissions,
/privacy, /reviews, /similar. /chromewebstore/charts and
/chromewebstore/category cover browsing/trending; /chromewebstore/developer
lists everything one publisher ships.Full endpoint list, methods, and params: reference/endpoints.md.
# GitHub:
scripts/crawlora.sh /github/search/repositories q="language:go stars:>1000" | jq '.'
scripts/crawlora.sh /github/repo/anthropics/claude-code | jq '.'
scripts/crawlora.sh /github/trending language=python | jq '.'
# Chrome Web Store:
scripts/crawlora.sh /chromewebstore/search term="ad blocker" | jq '.'
scripts/crawlora.sh /chromewebstore/item id=<extension-id> | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/github/user/torvalds" | jq '.'
See reference/endpoints.md for every GitHub and
Chrome Web Store endpoint this skill uses.
/github/repo/{owner}/{repo} + /contributors +
/releases to gauge activity and maintenance health before depending on it./github/trending (by language) + /github/trending/developers
for a daily/weekly pulse on what's gaining traction./chromewebstore/item + /permissions +
/privacy before recommending or installing a browser extension.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.language:,
stars:>N, org:, …) inside q — same syntax as github.com's search bar.page/per_page) — walk pages for full coverage.