Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ Data flow: `scraper/vars.json → scraper/tweet_scraper.py → tweets.csv → Tw
(tweet → CSV row), `main` (CLI orchestration).
- `scraper/tests/` — pytest, fully mocked (no network, no API key).
`scraper/conftest.py` puts the scraper dir on `sys.path`.
- `studio/src/App.jsx` — the entire Studio UI (lexicons, tone patterns, CSV upload).
- `studio/src/` — the Studio UI. `App.jsx` is a thin shell; logic lives in
`lib/` (lexicons, analysis, csv, stats, display) and UI in `components/`
(one file per tab + shared primitives). Pure `lib/` modules have Vitest tests.
- Config/secrets: API key comes from the `TWITTERAPI_IO_KEY` env var.
`scraper/vars.json` is run config and is git-ignored; `scraper/vars.example.json`
is the committed template.
Expand Down Expand Up @@ -50,6 +52,9 @@ Run the full loop from `scraper/` and make sure every step passes:

(CI runs the same four steps from `scraper/` — see `.github/workflows/ci.yml`.)

For setup & run instructions (deps, `TWITTERAPI_IO_KEY`, `vars.json`, Studio
`npm` commands), see [README.md](README.md) — not duplicated here to avoid drift.

## Commands (trigger keywords)

- When I say **"validate"** or **"ship it"** → run all four Validation steps and
Expand Down
Loading