CoolFace
Apppublic

pranavjrat/top-github-actions

sourceHugging Facegpl-3.0updated 3mo agoView on Hugging Face
0likes
AGENTS.md29 linesDownload Raw Back to root
1# Agent Instructions2 3When starting a new dataset analysis project using this template, do the following:4 5## 1. Set the Dataset URL6 7Paste the Hugging Face dataset CSV URL into **both** locations:8 9- **`src/App.tsx`** — the `csvUrl` variable (line ~14)10- **`scratch/analyze.mjs`** — the `csvUrl` constant (line ~7)11 12## 2. Load the Questions13 14Paste the project-specific analytical questions into **`questions.md`**, then work through them **one by one** following the Phase 1–5 workflow defined in `.cursorrules`:15 161. **Phase 1** — Profile the dataset using `scratch/analyze.mjs` (columns, types, distributions).172. **Phase 2** — Generate strong analytical questions.183. **Phase 3** — Refine, remove trivial ones.194. **Phase 4** — Select 3–5, run scratch scripts, present findings textually.205. **Phase 5** — Build charts only to communicate findings.21 22## 3. Build & Commit23 24After any `src/` change:25```bash26npm run build:space27```28Commit both source (`src/`) and built assets (`index.html`, `assets/`) together. Never `git push` unless explicitly told.29