with one click
setup
First-time development environment setup for Federal Website Index
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
First-time development environment setup for Federal Website Index
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | setup |
| description | First-time development environment setup for Federal Website Index |
| trigger | Use when user wants to set up the project for the first time, install dependencies, or verify their development environment |
Guide user through initial development setup of the Federal Website Index.
First verify prerequisites are installed:
If not already installed:
curl -fsSL https://bun.sh/install | bash
Then follow the instructions to add Bun to your shell profile and restart your terminal.
cd builder
bun install
This installs:
dataframe-js - DataFrame library for data manipulationobjects-to-csv - CSV export utilityOnly needed if you plan to run the DAP data processor:
cd dapDataCollapse
pip install -r requirements.txt
This installs:
pandas - DataFrame library for PythonRun the builder to ensure everything works:
cd builder
bun src/main.ts
This will:
data/ directorydata/site-scanning-target-url-list.csvNote: Full run takes 5-10 minutes depending on network speed.
After running the builder, you'll see:
data/source-list-snapshots/ - Individual source list snapshotsdata/process-snapshots/ - Intermediate processing stepsdata/site-scanning-target-url-list.csv - Final outputdata/site-scanning-target-url-list-analysis.csv - Summary statisticsCheck that the final CSV was created:
wc -l data/site-scanning-target-url-list.csv
Should show ~20,000-30,000 lines (varies based on current federal website count).
bun --versionbun install to ensure dependencies are currentAfter setup:
data/site-scanning-target-url-list.csvdata/site-scanning-target-url-list-analysis.csv/dev-workflow skill for common development commands