{"id":50234322,"url":"https://github.com/ppowo/pi-config","last_synced_at":"2026-05-30T22:03:02.647Z","repository":{"id":338324668,"uuid":"1157447842","full_name":"ppowo/pi-config","owner":"ppowo","description":"Personal pi agent configuration — prompts, extensions, skills, themes, and settings managed in version control with  symlink-based bootstrap.","archived":false,"fork":false,"pushed_at":"2026-05-25T21:50:02.000Z","size":304,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-25T23:23:37.169Z","etag":null,"topics":["ai-coding-agent","configuration","developer-tools","dotfiles","nushell","pi-mono"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/ppowo.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-02-13T20:40:18.000Z","updated_at":"2026-05-25T21:50:05.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ppowo/pi-config","commit_stats":null,"previous_names":["ppowo/pi-config"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ppowo/pi-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppowo%2Fpi-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppowo%2Fpi-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppowo%2Fpi-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppowo%2Fpi-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ppowo","download_url":"https://codeload.github.com/ppowo/pi-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppowo%2Fpi-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33711018,"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-05-30T02:00:06.278Z","response_time":92,"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":["ai-coding-agent","configuration","developer-tools","dotfiles","nushell","pi-mono"],"created_at":"2026-05-26T19:00:32.275Z","updated_at":"2026-05-30T22:03:02.642Z","avatar_url":"https://github.com/ppowo.png","language":"TypeScript","funding_links":[],"categories":["Extensions"],"sub_categories":[],"readme":"# pi-config\n\nMy personal pi agent config repo.\nIt keeps prompts/extensions/skills/themes/reminders plus repo-managed pi config in version control and bootstraps them into `~/.pi/agent`.\n\n## Prerequisites\n\n- **Node.js** ≥ 22.19.0 — see [Installing Node.js](#installing-nodejs)\n- **pi** — see [Installing pi](#installing-pi)\n\n### Tooling\n\nThis config assumes a few CLI tools are available on `PATH` for the agent and its extensions to use:\n\n- `difft` (`difftastic`)\n- `fd`\n- `jq`\n- `rg` (`ripgrep`)\n- `scc`\n- `shellcheck`\n- `ctags` (`universal-ctags`)\n- `yq`\n\nYou can install these yourself, or use [`lum`](https://github.com/ppowo/lum) as a one-stop way to manage them:\n\n```bash\nlum tools sync\n```\n\n### Installing Node.js\n\n**macOS** (Homebrew):\n```bash\nbrew install node\n```\n\nOr install via [fnm](https://github.com/Schniz/fnm#installation) (recommended for managing multiple Node versions).\n\n**Linux** — install via your package manager (`apt`, `dnf`, etc.) or [fnm](https://github.com/Schniz/fnm#installation).\n\nVerify:\n```bash\nnode --version   # should be ≥ 22.19.0\n```\n\n### Installing pi\n\nInstall pi globally with npm:\n```bash\nnpm install -g @earendil-works/pi-coding-agent\n```\n\nVerify:\n```bash\npi --version\n```\n\n## Setup\nFrom this repo root:\n```bash\nnpm run setup\n```\n\nTheme defaults to light. You can also choose explicitly:\n\n```bash\nnpm run setup-light\nnpm run setup-dark\n```\n\nNo `npm install` needed — the bootstrap script uses only Node.js built-ins.\n\n## What setup does\n\n`npm run setup` runs `bootstrap.mjs`, which:\n\n- symlinks into `~/.pi/agent`:\n  - `prompts/`\n  - `extensions/`\n  - `skills/`\n  - `themes/`\n  - `reminders/`\n  - `APPEND_SYSTEM.md`\n  - `models.json`\n- merges overlay files into:\n  - `~/.pi/agent/settings.json` (from `settings.json`)\n  - `~/.pi/agent/verbosity.json` (from `verbosity.json`)\n  - `~/.pi/web-tools.json` (from `web-tools.json`)\n  - `~/.pi/agent/hashline-readmap/settings.json` (from `hashline-readmap-settings.json`)\n\n## Repo layout\n\n- `bootstrap.mjs` — setup/link/merge script\n- `prompts/` — prompt files\n- `extensions/` — pi extensions\n- `skills/` — pi skills\n- `themes/` — pi themes\n- `reminders/` — global reminder definitions for `pi-system-reminders`\n- `APPEND_SYSTEM.md` — extra system prompt text appended into pi\n- `settings.json` — repo-managed pi settings overlay, including installed packages/extensions\n- `verbosity.json` — repo-managed pi-verbosity-control overlay\n- `models.json` — custom provider/model definitions symlinked into pi (for example OpenRouter via `OPENROUTER_API_KEY`)\n\nThe bootstrap script is plain Node.js, but pi extensions in `extensions/` can still stay TypeScript.\nReminder files tracked in `reminders/` become global reminders via `~/.pi/agent/reminders`; project-specific reminders for some other repo should still live in that repo's `.pi/reminders/` directory.\n\n## Re-run / update\n\nRe-run `npm run setup` any time you change files in this repo or set up a new machine.\n\n`bootstrap.mjs` resolves the repo from the script location, so it works even if you invoke it outside the repo root.\n\n## Note\n\n`settings.json` and `verbosity.json` are applied as repo-managed overlays. Every leaf path present there is owned by this repo. Other local pi settings are preserved, and if a repo-managed key is later removed from either file, re-running setup removes it from the corresponding file in `~/.pi/agent/` too.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fppowo%2Fpi-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fppowo%2Fpi-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fppowo%2Fpi-config/lists"}