From 08590cccb20a3f12c86dac654cb36296d0593e55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoaquim=20Cintr=C3=B3n?= Date: Sun, 3 May 2026 08:09:57 -0400 Subject: [PATCH] Rename seed-people.py to seed_people.py Underscored filename makes it importable as a Python module without path hacks. Fixes the need for importlib workarounds in prompt_optim. --- CLAUDE.md | 2 +- README.md | 2 +- scripts/{seed-people.py => seed_people.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename scripts/{seed-people.py => seed_people.py} (100%) diff --git a/CLAUDE.md b/CLAUDE.md index 7675c6e..ad8ea46 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -18,7 +18,7 @@ Open-source Pocket AI companion — pulls recordings via API, analyzes with Clau - `scripts/pocket-run.sh` — orchestration: pull → analyze (5 parallel) → stage people → rebuild manifest - `scripts/build-manifest.py` — aggregates all recordings + analyses into `public/manifest.json` - `scripts/stage-people.py` — scans analyses for speaker names, stages for user review -- `scripts/seed-people.py` — seeds people.json from existing analyses (contributed via PR) +- `scripts/seed_people.py` — seeds people.json from existing analyses (contributed via PR) - `prompts/analyze.md` — prompt template for Claude analysis (includes speaker inference) - `server/index.ts` — Express API (sync, people, pending people, actions, speakers, settings) - `server/s3.ts` — S3 sync module (optional backup, used by server after mutations) diff --git a/README.md b/README.md index 5adc977..61ac254 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ seam/ │ ├── pocket-run.sh # Orchestration: pull → analyze (5 parallel) → stage people → rebuild │ ├── build-manifest.py # Aggregates data for the dashboard │ ├── stage-people.py # Stages inferred speakers for review -│ └── seed-people.py # Seeds people from existing analyses +│ └── seed_people.py # Seeds people from existing analyses ├── prompts/ │ └── analyze.md # Claude analysis prompt template ├── server/ diff --git a/scripts/seed-people.py b/scripts/seed_people.py similarity index 100% rename from scripts/seed-people.py rename to scripts/seed_people.py