agentsclimarketplace

Coding task verifier sample

Skill misalazeem/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

Install
npx -y skills add misalazeem/coding-task-verifier-sample

Assembled 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 json to read the input file.
  • Use csv to write the output file. Use csv.writer or csv.DictWriter.
  • Use datetime for 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

verifier/

Keep looking

Skills are one crate of 326,367. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.