run-skill-script

Execute a specified script file within a skill with optional command-line arguments.

2.0k|267|Updated Jan 30, 2026
One-click install
npx skills add https://github.com/openakita/openakita --skill run-skill-script
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: run-skill-script
Source: https://github.com/openakita/openakita/tree/main/skills/system/run-skill-script
Command: npx skills add https://github.com/openakita/openakita --skill run-skill-script

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill allows for the direct execution of script files within other skills, enabling programmatic control and data processing.

Core Features & Use Cases

  • Script Execution: Run specific script files associated with a skill.
  • Parameter Passing: Pass command-line arguments to the executed scripts.
  • Use Case: You need to update a configuration file using a Python script within the 'config-manager' skill. You can use run-skill-script to execute 'update_config.py' with the necessary parameters.

Quick Start

Execute the 'get_time.py' script within the 'utils' skill, passing 'utc' as an argument.

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 specific script file from another skill programmatically?

To execute a script file from another skill, you can use a script execution tool that requires the skill name, script name, and optional command-line arguments to run specific functionalities programmatically.

Can I pass command-line arguments to a script within a skill during execution?

Yes, you can pass command-line arguments to a script within a skill during execution, enabling parameterized data manipulation and deterministic task execution for specific skill functionalities.

What is the best way to automate data manipulation using existing skill scripts?

The best way to automate data manipulation with existing skill scripts is to invoke them programmatically by specifying the target skill name and script file, passing necessary arguments for precise operation.

Do I need to specify the skill name and script name to run a script file?

Yes, you need to specify both the skill name and the script name to run a script file, along with any optional command-line arguments, ensuring deterministic task execution and accurate data processing.

Why does my script execution fail when passing arguments to a skill script?

Script execution fails when passing arguments if the required skill name or script name is missing, as both are mandatory for invoking specific skill functionalities programmatically and ensuring precise operation.

When do I need to use command-line script execution for skill functionalities?

You need command-line script execution for skill functionalities when performing deterministic task execution, data manipulation, or programmatically invoking specific skill scripts with precise operational parameters.