Coding task verifier sample
Sample coding task with a skill spec, reference solution, pytest verifier, Dockerfile, and ten annotated attempt trajectories.From the repository description
npx -y skills add misalazeem/coding-task-verifier-sampleAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
0.8 KB, 182 tokens by cl100k_base, as published. Nobody here has run it
Skill: stdlib-only CSV transforms
When you are asked to read structured data and write a CSV in Python, use only the standard library. Specifically:
- Use
jsonto read the input file. - Use
csvto write the output file. Usecsv.writerorcsv.DictWriter. - Use
datetimefor any timestamp conversion.
Do not import pandas, polars, numpy, or any third-party library. Even if the user asks for "the easiest way", the easiest way for this skill is the standard library.
When writing the CSV:
- Match the column order the user specifies exactly.
- Write a header row.
- Do not include row indexes.
- Use the default comma delimiter.
When the user asks for a top-N or a sorted result, sort in Python before writing. Do not write all rows and call the trim done.
What ships with it: 18 files
19.6 KB alongside SKILL.md, 3 of them executable
trajectories/
- run_01_pass.md836 B
- run_02_fail_pandas.md1.0 KB
- run_03_fail_column_order.md1.1 KB
- run_04_fail_not_sorted.md1.0 KB
- run_05_fail_unix_timestamp.md932 B
- run_06_fail_no_limit.md1.0 KB
- run_07_pass.md914 B
- run_08_fail_json_not_csv.md1.1 KB
- run_09_fail_column_typo.md1.2 KB
- run_10_pass.md1.0 KB
verifier/
- conftest.pyruns1.1 KB
- test_skill.pyruns2.3 KB
- Dockerfile250 B
- .gitignore56 B
- prompt.md831 B
- README.md2.8 KB
- reference_solution.pyruns652 B
- stories.json1.6 KB