Run3 environment setup and file generation
[COLM'26] SkillLearnBench is the first benchmark for evaluating continual learning methods that automatically generate agent skills.
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.
What its author says it does
Copied from the file, not written here
Creates the directory structure, copies data, and writes the specific JS/CSS/HTML files required for the web application.
SKILL.md
0.8 KB, 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.