run-skill-script

Execute skill script files with command-line arguments and capture output.

9|2|Updated Mar 18, 2026
One-click install
npx skills add https://github.com/AllBeingsFuture/AllBeingsFuture --skill run-skill-script-allbeingsfuture
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: run-skill-script
Source: https://github.com/AllBeingsFuture/AllBeingsFuture/tree/main/electron/embedded-assets/skills/system/run-skill-script
Command: npx skills add https://github.com/AllBeingsFuture/AllBeingsFuture --skill run-skill-script-allbeingsfuture

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a straightforward way to execute a script belonging to a named Skill so agents can trigger deterministic operations, process data, or run utility tasks without manual shell handling.

Core Features & Use Cases

  • Script execution: Run a specific script file from a Skill directory with command-line arguments and capture its output and exit status.
  • Integration with discovery: Use alongside get-skill-info to discover available scripts before invoking them for tasks such as data transformation, report generation, or tool invocation.
  • Use Case: An agent needs to run a conversion script bundled in a Skill to transform local data files and return the processed result to the user.

Quick Start

Execute the script get_time.py from the run-skill-script skill with arguments --format iso and return the script output.

Frequently Asked Questions about run-skill-script

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

FAQPage Schema
How do I execute a script with command-line arguments in an AI workbench?

To execute a script with command-line arguments in an AI workbench, you trigger a deterministic execution that passes the specified arguments to the script file and captures its stdout and exit codes.

What is the best way to run skill scripts for data transformation automatically?

The best way to run skill scripts for data transformation automatically is to invoke the specific script file directly, passing necessary command-line arguments to process utility tasks and return the deterministic output.

Do I need manual shell handling to run a skill script from a directory?

No, you do not need manual shell handling to run a skill script from a directory, because the execution process manages the invocation automatically and captures the script output and exit status directly.

Can I use this to execute a script that returns an exit code and stdout?

Yes, you can use this to execute a script that returns an exit code and stdout, as the execution mechanism specifically requires scripts to accept command-line arguments and return both output and exit status.

How do I discover available scripts before executing a skill script?

To discover available scripts before executing a skill script, you use a complementary discovery integration to list the scripts bundled in the skill directory, ensuring you pass the correct file name and arguments during execution.

What happens if a script file is not present in the skill directory?

If a script file is not present in the skill directory, execution will fail because the deterministic execution mechanism requires that the target script files are present and executable to process data or run utility tasks.