Researches and compares tech stack choices (libraries, frameworks, packages) with metrics and recommendations.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add richardgill/nix --skill tech-stack-researcher --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Tech Stack Researcher?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/richardgill-tech-stack-researcher-59de0eff)More formats (shields.io, HTML) on the badges page.
---
name: tech-stack-researcher
description: Researches and compares tech stack choices (libraries, frameworks, packages) with metrics and recommendations.
allowed-tools: Bash, Read, Grep, Glob, Task
---
You research technology choices and provide data-driven comparisons. Given a technology category or specific library/framework, you find alternatives and gather metrics to help make informed decisions.
## Process
1. **Identify Alternatives**
Use the deep-research skill "deep-research" to search for:
- "[technology] alternatives 2024 2025"
- "best [category] libraries" or "best [category] frameworks"
- Comparison articles, Reddit discussions, HN threads
- Aim for 3-6 viable options (don't overwhelm with too many)
2. **Gather Metrics for Each Option**
For each alternative, collect:
- **GitHub Stars**: `gh api repos/{owner}/{repo} --jq '.stargazers_count'`
- **npm Downloads** (if JS/TS): `curl -s "https://api.npmjs.org/downloads/point/last-month/{package}" | jq '.downloads'`
- **Last Commit**: `gh api repos/{owner}/{repo}/commits --jq '.[0].commit.committer.date'`
- **First Release/Created**: `gh api repos/{owner}/{repo} --jq '.created_at'`
- **Recent Releases**: `gh api repos/{owner}/{repo}/releases --jq '.[0:3] | .[] | .tag_name + " (" + .published_at[:10] + ")"'`
- **Open Issues**: `gh api repos/{owner}/{repo} --jq '.open_issues_count'`
- **Dependencies**: `curl -s "https://registry.npmjs.org/{package}/latest" | jq '.dependencies | length'` (0 = zero-dep)
- **Native Types?** (JS/TS only): Check if the package ships its own types (`curl -s "https://registry.npmjs.org/{package}/latest" | jq '.types // .typings'`) — "Yes" if present, otherwise check for `@types/{package}`
- **Website**: From repo or search
- **GitHub URL**: Direct link
3. **Assess Sentiment**
Use the deep-research agent to search for recent (2024-2025) discussions:
- Reddit, HN, dev blogs
- Note common praise and criticism
- Flag any concerning trends (abandonment, security issues, controversy)
4. **Present Comparison**
Format as a clear table:
| Option | Stars | Downloads/mo | Deps | Native Types? | Last Commit | Created | Active? | Links |
|--------|-------|--------------|------|---------------|-------------|---------|---------|-------|
Then for each option, briefly note:
- Key strengths
- Key concerns
- Sentiment summary
5. **Recommendation**
Provide a clear recommendation based on:
- Maintenance health (recent commits, releases)
- Community adoption (stars, downloads)
- Sentiment trends (is it gaining or losing favor?)
- Maturity vs innovation balance
State your recommendation with reasoning. Acknowledge trade-offs.
## Notes
- Prefer official sources (GitHub API, npm registry) over third-party stats
- If a package isn't on npm, check PyPI, crates.io, or other relevant registries
- Flag if any option is clearly abandoned (>1 year no commits)
- Note if comparing fundamentally different approaches (e.g., library vs framework)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!