Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
proffesor-for-testing avatar

Qe Test Idea Rewriting

  • 64 installs
  • 433 repo stars
  • Updated August 4, 2026
  • proffesor-for-testing/agentic-qe

qe-test-idea-rewriting is a Claude Code skill for testing & qa.

About

qe-test-idea-rewriting is a Claude Code skill for testing & qa. It helps solo builders move faster with AI-assisted development.

  • qe-test-idea-rewriting
  • Testing & QA
  • AI-coding skill

Qe Test Idea Rewriting by the numbers

  • 64 all-time installs (skills.sh)
  • +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #1,138 of 2,153 Testing & QA skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/proffesor-for-testing/agentic-qe --skill qe-test-idea-rewriting

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs64
repo stars433
Last updatedAugust 4, 2026
Repositoryproffesor-for-testing/agentic-qe

How do I helps with testing & qa tasks.?

Helps with testing & qa tasks.

Who is it for?

Best when you're working on testing & qa and need structured help with qe test idea rewriting.

Skip if: Teams with no testing & qa needs, or anyone wanting a generic chat assistant without this specific workflow.

When should I use this skill?

When you need to helps with testing & qa tasks., or when qe-test-idea-rewriting is a claude code skill for testing & qa.

What you get

Structured output aligned to qe-test-idea-rewriting: qe-test-idea-rewriting, Testing & QA.

Files

SKILL.mdMarkdownGitHub ↗

Test Idea Rewriting

<default_to_action> When transforming test ideas: 1. DETECT all "Verify X" patterns via regex 2. IDENTIFY appropriate action verb category 3. TRANSFORM to "[ACTION] [trigger]; [OBSERVE] [result]" pattern 4. PRESERVE all metadata (IDs, priorities, automation types) 5. VALIDATE zero "Verify" patterns remain 6. OUTPUT in same format as input

Success Criteria: /<td>Verify\s/gi returns 0 matches </default_to_action>

Quick Reference Card

Transformation Pattern

[ACTION VERB] [specific trigger]; [OUTCOME VERB] [observable result]

Action Verb Quick Reference

CategoryVerbsUse When
InteractionClick, Type, Submit, Navigate, ScrollUI actions
TriggerSend, Inject, Force, Simulate, LoadAPI/system actions
MeasurementMeasure, Time, Count, ProfilePerformance checks
StateSet, Configure, Enable, Disable, ToggleSetup actions
ObservationConfirm, Assert, Check, ObserveOutcome verification

Common Transformations

BeforeAfter
Verify login worksSubmit valid credentials; confirm session created
Verify API returns 200Send GET request; assert 200 response within 500ms
Verify error displaysTrigger validation error; observe error message
Verify data savesInsert record; query database; confirm fields match
Verify performanceExecute 100 requests; measure p99 < 200ms

---

Transformation Rules

Pattern Detection

/<td>Verify\s/gi     // HTML table cells
/^Verify\s/gim       // Line starts
/"Verify\s[^"]+"/gi  // Quoted strings

Transformation Categories

API/Network Tests
Input PatternOutput Pattern
Verify API returns XSend [METHOD] request; assert [STATUS] response
Verify endpoint accepts YPost [PAYLOAD] to endpoint; confirm [RESPONSE]
Verify webhook firesTrigger [EVENT]; observe webhook received
UI/UX Tests
Input PatternOutput Pattern
Verify button worksClick [BUTTON]; observe [EFFECT]
Verify form submitsFill [FIELDS]; submit form; confirm [RESULT]
Verify navigation worksClick [LINK]; observe [PAGE] loads
Data Tests
Input PatternOutput Pattern
Verify data savesInsert [RECORD]; query; confirm [MATCH]
Verify validation worksEnter [INVALID]; observe [ERROR]
Verify format acceptedSubmit [FORMAT]; confirm [PROCESSED]
Performance Tests
Input PatternOutput Pattern
Verify performance is goodExecute [LOAD]; measure [METRIC] < [THRESHOLD]
Verify scalabilityIncrease [USERS] to [N]; monitor [RESOURCE]
Verify timeout worksInject [DELAY]; confirm timeout after [TIME]

---

Action Verb Reference

Interaction Verbs

VerbWhen to UseExample
ClickUI element interactionClick "Submit" button
TypeText entryType "user@example.com"
SubmitForm completionSubmit registration form
NavigatePage changesNavigate to /settings
ScrollViewport movementScroll to page bottom
DragDrag-and-dropDrag file to upload zone
HoverMouse positioningHover over tooltip trigger
SelectDropdown/checkboxSelect "Admin" from role dropdown

Trigger Verbs

VerbWhen to UseExample
SendHTTP requestsSend POST to /api/orders
InjectFault injectionInject 500ms latency
ForceState manipulationForce offline mode
SimulateEvent generationSimulate device rotation
LoadResource loadingLoad 50MB test file
ExecuteScript/commandExecute database migration
InvokeFunction/webhookInvoke payment callback
TriggerEvent firingTrigger scheduled job

Measurement Verbs

VerbWhen to UseExample
MeasureQuantitative checkMeasure response time
TimeDuration trackingTime page render
CountQuantity checkCount search results
ProfileResource analysisProfile CPU usage
BenchmarkComparisonBenchmark against v1.0
CaptureState recordingCapture network traffic
MonitorOngoing observationMonitor memory for 5 minutes

Observation Verbs

VerbWhen to UseExample
ConfirmBoolean checkConfirm user is logged in
AssertValue comparisonAssert total equals $99.99
CheckState verificationCheck cart has 3 items
ObserveBehavior watchingObserve spinner appears
ValidateRule complianceValidate email format
ExpectPredicted outcomeExpect redirect to /home
Verify (avoid)Use alternativesUse confirm/assert instead

---

Quality Validation

Pre-Transform Checks

1. Count "Verify" patterns in input 2. Identify context for each pattern 3. Map to appropriate action verb category

Post-Transform Checks

1. Regex validation: zero "Verify" matches 2. Every test idea starts with action verb 3. Each test includes observable outcome 4. All metadata preserved unchanged

Validation Regex

// Must return 0 matches for success
const verifyPattern = /<td>Verify\s/gi;
const matches = content.match(verifyPattern);
if (matches && matches.length > 0) {
  throw new Error(`${matches.length} "Verify" patterns remain`);
}

---

Agent Integration

// Single file transformation
await Task("Rewrite Test Ideas", {
  inputFile: "assessment.html",
  outputFile: "assessment-rewritten.html",
  preserveFormatting: true
}, "qe-test-idea-rewriter");

// Batch transformation
await Task("Batch Rewrite", {
  inputDir: "./assessments/",
  outputDir: "./assessments-clean/",
  pattern: "*.html"
}, "qe-test-idea-rewriter");

---

Memory Namespace

aqe/rewriting/
├── transformations/*  - Transformation logs
├── patterns/*         - Learned patterns
└── vocabulary/*       - Custom verb mappings

---

Related Skills

  • sfdipot-product-factors - Assessment generation
  • test-design-techniques - Proper test structuring
  • brutal-honesty-review - Quality validation

---

Remember

Every test idea should be actionable. "Verify X works" tells you nothing about HOW to test. "[Action] X; [Observe] Y" gives clear steps and expected outcomes. Transform passive descriptions into active, observable tests.

Related skills

FAQ

What does qe-test-idea-rewriting do?

qe-test-idea-rewriting is a Claude Code skill for testing & qa.

When should I use qe-test-idea-rewriting?

When you need to helps with testing & qa tasks., or when qe-test-idea-rewriting is a claude code skill for testing & qa.

What are the main capabilities?

qe-test-idea-rewriting; Testing & QA; AI-coding skill.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.