script-skill

Discover and execute sample scripts to validate script-based skills.

494|47|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/agentspan-ai/agentspan --skill script-skill-agentspan-ai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: script-skill
Source: https://github.com/agentspan-ai/agentspan/tree/main/sdk/python/tests/fixtures/skills/script-skill
Command: npx skills add https://github.com/agentspan-ai/agentspan --skill script-skill-agentspan-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Script discovery and validation for script-based skills by loading and executing a representative script to confirm registration and behavior.

Core Features & Use Cases

  • Script discovery: detects and lists available entry scripts under the scripts/ directory.
  • Deterministic execution: runs a known script to verify consistent outputs.
  • Quick validation: provides a minimal example that confirms the skill integrates with the execution environment.

Quick Start

Run the included hello script to see a friendly greeting.

Frequently Asked Questions about script-skill

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

FAQPage Schema
How do I validate script discovery in a CI pipeline?

You can validate script discovery by running a skill that detects and executes sample scripts under the scripts/ directory. This confirms registration and consistent outputs in your CI pipeline testing environments.

What is a script-based skill and how does execution work?

A script-based skill references optional deterministic scripts in a scripts/ folder for execution. It loads and runs a representative script to verify basic I/O behavior and confirm integration with the environment.

Do I need a SKILL.md file to run script validation?

Yes, script validation requires a SKILL.md file with YAML frontmatter defining the name and description. This fulfills the requirement that a valid skill contains proper metadata for registration.

Can I use this for automated testing of Python scripts?

Yes, you can use this for automated testing of Python scripts by executing known sample scripts to verify deterministic outputs. It provides quick validation that scripts integrate with the execution environment.

What are the limitations of using sample scripts for skill validation?

Sample script validation is limited to basic I/O behavior and deterministic execution checks. It does not perform deep integration testing or validate complex processing logic within the scripts directory.