بنقرة واحدة
setup
First-time development environment setup for Federal Website Index
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
First-time development environment setup for Federal Website Index
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| 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