Run3 environment setup and file generation
Creates the directory structure, copies data, and writes the specific JS/CSS/HTML files required for the web application.From its SKILL.md
npx -y skills add cxcscmu/SkillLearnBench --skill run3_environment_setup_and_file_generationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.8 KB, 181 tokens by cl100k_base, as published. Nobody here has run it
To execute the file generation:
- Create directories:
/root/output/js/,/root/output/css/,/root/output/data/. - Write
d3.v6.min.jsby fetching the official minified source and writing it to/root/output/js/d3.v6.min.js. - Read all files from
/root/data/stock-descriptions.csvand the files in/root/data/indiv-stock/and write them into/root/output/data/. - Generate
index.htmlwith explicit relative links:<link rel="stylesheet" href="css/style.css">,<script src="js/d3.v6.min.js"></script>, and<script src="js/visualization.js"></script>. - Ensure
index.htmlcontains the container divs#bubble-chartand#data-tablearranged with flexbox.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.