Welcome to PeopleOfPi

PeopleOfPi is a static, read-only community index for the pi.dev ecosystem. It surfaces the curated stars list of pi-related repositories, the people behind those repositories, a hand-written blog, and a keyword-filtered video feed.

What’s here

The site has four discovery surfaces:

  • Repos — every entry from the curated pi-coding-agent GitHub stars list.
  • People — every owner from those repos, with a link-in-bio page per person.
  • Videos — pi-related YouTube videos pulled from public RSS, filtered by keyword.
  • Blog — long-form posts authored as markdown and shipped via PR.

There are no accounts, no comments, and no submission forms. The site is read-only.

How it ships

The repo, people, and video JSON files are written by maintainer-run sync scripts. Astro reads them at build time, emits static HTML, and the result is deployed to a static host. There is no database and no backend.

// content collections wire the JSON into typed entries
const repos = await getCollection('repos');
console.log(repos.length); // 112

That’s it — a small, focused community index.