원클릭으로
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