{"id":51215831,"url":"https://github.com/claude-access/github-tech-scanner","last_synced_at":"2026-07-16T14:01:11.592Z","repository":{"id":352743862,"uuid":"1209853535","full_name":"claude-access/github-tech-scanner","owner":"claude-access","description":"Scans GitHub repos for languages and frameworks — Claude Code skill","archived":false,"fork":false,"pushed_at":"2026-04-13T21:30:40.000Z","size":18,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-21T00:44:32.216Z","etag":null,"topics":["claude-code","claude-skill","developer-tools","framework-detection","github","skill-md","skill-md-skillsmp","skillsmp","tech-stack"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/claude-access.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-13T21:06:24.000Z","updated_at":"2026-04-13T21:59:32.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/claude-access/github-tech-scanner","commit_stats":null,"previous_names":["claude-access/github-tech-scanner"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/claude-access/github-tech-scanner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-access%2Fgithub-tech-scanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-access%2Fgithub-tech-scanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-access%2Fgithub-tech-scanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-access%2Fgithub-tech-scanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/claude-access","download_url":"https://codeload.github.com/claude-access/github-tech-scanner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-access%2Fgithub-tech-scanner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35546267,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-16T02:00:06.687Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude-code","claude-skill","developer-tools","framework-detection","github","skill-md","skill-md-skillsmp","skillsmp","tech-stack"],"created_at":"2026-06-28T04:01:00.195Z","updated_at":"2026-07-16T14:01:11.586Z","avatar_url":"https://github.com/claude-access.png","language":"Python","funding_links":[],"categories":["⭐ 精选第三方技能"],"sub_categories":["💻 开发效率"],"readme":"# github-tech-scanner\n\nScans all active GitHub repositories accessible via a Personal Access Token (PAT) and produces a full inventory of every **language** and **framework** in use — with repo counts, byte-share percentages, and version info where available.\n\nWorks as both a **standalone CLI script** and a **Claude Code skill**.\n\n---\n\n## Usage\n\n### Standalone\n\n```bash\npip install -r requirements.txt\n\npython scripts/scan_repos.py --token \u003cYOUR_PAT\u003e --verbose\n```\n\n### Flags\n\n| Flag | Default | Description |\n|---|---|---|\n| `--token`, `-t` | `$GITHUB_TOKEN` | GitHub Personal Access Token |\n| `--org`, `-o` | _(all accessible)_ | Limit scan to a specific org (e.g. `my-company`) |\n| `--active-days`, `-d` | `365` | Only include repos pushed within this many days |\n| `--show-repos` | off | List which repos use each language/framework |\n| `--json` | off | Emit raw JSON instead of the formatted report |\n| `--verbose`, `-v` | off | Print progress to stderr while scanning |\n\n### Examples\n\n```bash\n# Scan everything the token can access\npython scripts/scan_repos.py --token ghp_xxx --verbose\n\n# Scan a single org only\npython scripts/scan_repos.py --token ghp_xxx --org my-company\n\n# Last 6 months, show which repos use each technology\npython scripts/scan_repos.py --token ghp_xxx --active-days 180 --show-repos\n\n# JSON output for further processing\npython scripts/scan_repos.py --token ghp_xxx --json | jq '.language_bytes'\n```\n\n---\n\n## What it detects\n\n### Languages\nUses GitHub's native `/repos/{owner}/{repo}/languages` endpoint — returns byte counts per language, which are aggregated into percentages across all active repos.\n\n### Frameworks (via manifest files)\n\n| File | Ecosystems detected |\n|---|---|\n| `package.json` | React, Vue, Angular, Next.js, Express, NestJS, Vite, Prisma, … |\n| `requirements.txt` | Django, Flask, FastAPI, PyTorch, LangChain, Anthropic SDK, … |\n| `pyproject.toml` | Same as above (PEP 621 and Poetry formats) |\n| `Gemfile` | Rails, Sinatra, Sidekiq, Devise, … |\n| `go.mod` | Gin, Echo, Fiber, GORM, Chi, … |\n| `pom.xml` | Spring Boot, Quarkus, Hibernate, Kafka, … |\n| `build.gradle` | Spring Boot, Ktor, Micronaut, … |\n| `composer.json` | Laravel, Symfony, Doctrine, … |\n| `Cargo.toml` | Actix Web, Axum, Tokio, Tauri, Leptos, … |\n| `pubspec.yaml` | Flutter, Riverpod, Firebase, … |\n\n---\n\n## Sample output\n\n```\n============================================================\n  GitHub Tech Stack Report — @username\n============================================================\n  Repos scanned: 42 active (of 87 total, active = pushed within 365 days)\n\n── Languages ────────────────────────────────────────────\n  TypeScript             41.2%  ████████              (18 repos)\n  Python                 28.5%  █████                 (12 repos)\n  JavaScript             15.3%  ███                   (9 repos)\n\n── Frameworks \u0026 Libraries ───────────────────────────────\n  React                              (11 repos)  [18.1.0, 18.2.0]\n  Django                             (6 repos)   [4.2.0]\n  Express                            (5 repos)\n============================================================\n```\n\n---\n\n## Token requirements\n\n| Goal | Required scopes |\n|---|---|\n| Public repos only | No scopes needed |\n| Private repos | `repo` (classic PAT) or `Contents: read` + `Metadata: read` (fine-grained PAT) |\n| Org repos | Same as above; token must be authorized for the org (SSO if applicable) |\n| Create repos in an org | `repo` + `write:org` (classic PAT) |\n\nGenerate a token at: **GitHub → Settings → Developer settings → Personal access tokens**\n\n---\n\n## As a Claude Code skill\n\nThis repo is structured as a Claude Code skill. To install it, place the directory under `~/.claude/skills/` and Claude Code will pick it up automatically.\n\n---\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaude-access%2Fgithub-tech-scanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclaude-access%2Fgithub-tech-scanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaude-access%2Fgithub-tech-scanner/lists"}