test-workflow-detect-number-string

Inspect a string and output numeric characters or the word "string".

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-string
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test-workflow-detect-number-string
Source: https://github.com/X-School-Academy/skill-pilot/tree/main/core/skills/user/test-workflow-detect-number-string
Command: npx skills add https://github.com/X-School-Academy/skill-pilot --skill test-workflow-detect-number-string

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a simple, deterministic way to inspect text within a workflow, enabling conditional logic based on the presence of numeric characters.

Core Features & Use Cases

  • String Inspection: Analyzes input strings to identify numeric characters.
  • Conditional Logic: Outputs 'string' if no numbers are found, or the extracted digits otherwise, facilitating downstream decision-making.
  • Use Case: In a workflow processing user feedback, this Skill can quickly determine if a user's comment contains any numerical data, allowing for different processing paths.

Quick Start

Inspect the provided text and output any numeric characters found.

Frequently Asked Questions about test-workflow-detect-number-string

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

FAQPage Schema
How do I detect numbers in a string for workflow validation?

To detect numbers in a string for workflow validation, you need a tool that inspects input text and extracts any numeric characters present. This allows your workflow to trigger conditional logic based on whether digits exist in the text.

What happens if no numeric characters are found during text inspection?

If no numeric characters are found during text inspection, the process outputs the literal word "string". This deterministic output enables straightforward conditional branching for downstream workflow processing paths.

How do I extract digits from user feedback for conditional workflow processing?

To extract digits from user feedback for conditional workflow processing, apply a string inspection mechanism that isolates numeric characters. This enables your workflow to route feedback containing numerical data into separate processing paths.

Do I need any external dependencies to identify numeric characters in plain text?

You do not need any external dependencies to identify numeric characters in plain text. The functionality relies solely on simple string manipulation to find digits within the input without requiring additional components or libraries.

Can I use this string validation approach to check for numerical data in user comments?

Yes, you can use this string validation approach to check for numerical data in user comments. It analyzes the provided text and outputs the extracted digits, allowing you to quickly determine if a comment contains numbers.

Why does my workflow text inspection output the word "string" instead of numbers?

Your workflow text inspection outputs the word "string" instead of numbers because the provided input text contains no numeric characters. This output serves as a validation indicator that no digits were detected during the inspection.