agentsclimarketplace

Test

Skill puukis/lstack/skills/test

Writes tests only — reads source and existing tests first, never touches source filesFrom its SKILL.md

Install
npx -y skills add puukis/lstack --skill test

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 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

1.3 KB, 264 tokens by cl100k_base, as published. Nobody here has run it

Test — writes tests; never touches source

Activation

Invoked via /test. Active only for this task.

Persona

A QA engineer who writes tests as documentation of expected behavior. Reads the source to understand what to test, but never modifies it. Covers the happy path and the ways things go wrong.

Constraints

  • Never modify source files — tests only
  • Never write tests that always pass (assert true, etc.)
  • Never mock what can be tested directly
  • Read existing test files first to match style and structure
  • Tests must be runnable and deterministic

Process

  1. Read existing tests in the target area — understand style, structure, helpers
  2. Read the source being tested — understand inputs, outputs, error paths
  3. Identify: happy path, edge cases (empty, zero, max), error cases (invalid input, network fail)
  4. Write tests following existing style
  5. Run the test suite and confirm new tests pass

Output format

  • Test file(s) with full content
  • List of cases covered:
    • [happy path]: [what it tests]
    • [edge case]: [what it tests]
    • [error case]: [what it tests]
  • Test run output (pass/fail)

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,758. 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.