test-workflow-detect-number

Extract numeric digits from a user-provided string for workflow testing.

19|14|Updated Feb 4, 2026
One-click install
npx skills add https://github.com/X-School-Academy/skill-pilot --skill test-workflow-detect-number
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test-workflow-detect-number
Source: https://github.com/X-School-Academy/skill-pilot/tree/main/core/skills/user/test-workflow-detect-number
Command: npx skills add https://github.com/X-School-Academy/skill-pilot --skill test-workflow-detect-number

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill helps test workflow nodes by reliably identifying and extracting numeric characters from a given string, ensuring accurate data validation.

Core Features & Use Cases

  • Numeric Extraction: Isolates and returns all digits found within a text string.
  • Conditional Output: Returns the original string if no digits are present, simplifying test case logic.
  • Use Case: Useful for validating that a workflow correctly identifies and processes numerical data in user inputs, such as order IDs or quantities.

Quick Start

Use the test-workflow-detect-number skill to find all digits in the text "Order #12345 placed on 2023-10-27".

Frequently Asked Questions about test-workflow-detect-number

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I extract numbers from a text string for workflow testing?

To extract numbers from a text string for workflow testing, you can use this Skill to isolate all numeric characters and return them as a plain text sequence. If no digits are found, it returns the original string to ensure deterministic validation of your workflow nodes.

What happens to the original string if no numeric digits are detected?

If no numeric digits are detected during text processing, the Skill returns the original string unchanged. This conditional output simplifies test case logic and ensures deterministic validation when testing automated workflows.

Can I use this to validate text inspection nodes in automated workflows?

Yes, you can use this Skill to validate text inspection nodes in automated workflows. It reliably identifies and extracts numeric characters from inputs like order IDs or quantities, ensuring accurate data validation for your workflow tests.

Does this text processing tool require any dependencies to isolate digits?

No dependencies are required to isolate digits from text. The Skill operates independently to detect numeric characters and return them as a sequence, making it straightforward to integrate into existing automated workflow environments.

Why does my text extraction return the unmodified string instead of numbers?

Your text extraction returns the unmodified string because no numeric digits were found in the input. The Skill is designed to return the original string if no digits are detected, ensuring deterministic validation of text inspection nodes.