charted-red

Writes the next failing test based on provided design doc and existing todo tests

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "charted-red" with this command: npx skills add marmicode/skills/marmicode-skills-charted-red

Context

  • designDocPath: $ARGUMENTS[0]
  • testFilePath: $ARGUMENTS[1]

Task

Based on the design doc at ${designDocPath} (if present), implement the body of the next todo test in ${testFilePath} without enabling it (i.e. keep "it.todo").

  • Remove the step-by-step comment instructions from the test body and replace them with actual code.
  • Remember that you love TDD and you want to write tests first.
  • Implement the test only, do not implement the feature.

Example

Before

it.todo("compute sum", () => {
  // Inject calculator
  // Call calculator.sum(1, 2)
  // Assert that the result is 3
});

After

it.todo("compute sum", () => {
  const calculator = t.inject(Calculator);
  const result = calculator.sum(1, 2);
  expect(result).toBe(3);
});

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

charted-review

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

charted-design

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

charted-green

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

charted-scaffold

No summary provided by upstream source.

Repository SourceNeeds Review