Learn-skills.dev testing-workflow

Comprehensive testing workflow orchestrating functional testing, example validation, integration testing, and usability assessment. Sequential workflow for complete skill testing from examples through scenarios to integration validation. Use when conducting thorough testing, pre-deployment validation, ensuring skill functionality, or comprehensive quality checks.

install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/adaptationio/skrillz/testing-workflow" ~/.claude/skills/neversight-learn-skills-dev-testing-workflow && rm -rf "$T"
manifest: data/skills-md/adaptationio/skrillz/testing-workflow/SKILL.md
source content

Testing Workflow

Overview

testing-workflow provides comprehensive skill testing by orchestrating skill-tester operations with validation checks.

Component Skills:

  • skill-tester (all 4 operations)
  • skill-validator (validation checks)

Workflow (4 steps):

  1. Example Validation - All examples execute correctly
  2. Scenario Testing - Test in real-world use cases
  3. Integration Testing - Test with other skills
  4. Validation Check - Ensure tests didn't reveal structural issues

Result: Complete functional validation ensuring skill works correctly

When to Use

  • Pre-deployment functional testing
  • After implementing new features
  • Validating examples and documentation
  • Integration validation for workflow skills

Testing Workflow

Step 1: Example Validation

Extract and execute all examples from skill, verify they work correctly.

Time: 15-30 minutes


Step 2: Scenario Testing

Test skill in 2-3 realistic scenarios from "When to Use" section.

Time: 30-90 minutes


Step 3: Integration Testing

Test skill works with other skills it depends on or composes.

Time: 20-45 minutes (if applicable)


Step 4: Validation Check

Run skill-validator to ensure tests didn't reveal structure issues.

Time: 10-15 minutes


Quick Reference

StepFocusTimePass Criteria
1Examples15-30mAll examples execute correctly
2Scenarios30-90mScenarios complete successfully
3Integration20-45mIntegration smooth (if applicable)
4Validation10-15mStructure still passes

Total Time: 1.5-3 hours

Result: ✅ TESTS PASS or ❌ TESTS FAIL (with issues to fix)


testing-workflow ensures skills function correctly through comprehensive hands-on testing.