https://github.com/robertzaufall/anthropic-repos
https://github.com/robertzaufall/anthropic-repos
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/robertzaufall/anthropic-repos
- Owner: robertZaufall
- Created: 2026-05-24T00:54:56.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-05-24T09:52:20.000Z (about 1 month ago)
- Last Synced: 2026-05-24T11:30:07.689Z (about 1 month ago)
- Language: HTML
- Size: 47.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# anthropic-repos
`anthropic-repos` is a small static catalog of active Anthropic GitHub
repositories. It groups public Anthropic repositories into purpose clusters and
keeps GitHub metadata fresh with a scheduled update script.
Included repositories match this filter:
- GitHub org: `anthropics`
- More than 200 stars
- Non-fork and non-archived
- At least one commit within the previous three calendar months
The page is tuned to surface repositories with both recent traction and broad
audience: the lead table blends recent commits, freshness, stars, and forks,
while each purpose cluster is sorted by stars.
## Open locally
Open `index.html` directly in a browser, or run a local preview server:
```bash
python3 -m http.server 8000
```
Then visit `http://localhost:8000`.
## Update repository metadata
```bash
python3 update_stats.py
```
The script fetches stars, forks, total commits, recent commits, last commit
dates, primary language, topics, and descriptions from GitHub. It rewrites the
fresh-traction table, the purpose cluster tables, and `stats_history.json`.
For local runs, authenticate with the GitHub CLI or set `GITHUB_TOKEN`:
```bash
gh auth login
python3 update_stats.py
```
## Main files
- `index.html` - generated static catalog page.
- `update_stats.py` - GitHub metadata fetcher and HTML generator.
- `stats_history.json` - stored snapshots used for 30-day star and fork deltas.
- `favicon.svg` - Anthropic-themed favicon.
- `.github/workflows/static.yml` - deploys the static site to GitHub Pages.
- `.github/workflows/update-stats.yml` - scheduled catalog refresh.
- `cloudflare/worker.js` - hidden `glaubi.net/anthropic` proxy worker.