Example skill
An example skill demonstrating the framework capabilities. Use when testing skill execution with JavaScript, Python, or Shell scripts.From its SKILL.md
npx -y skills add kazhuki7/agentskills-proxy --skill example-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.9 KB, 315 tokens by cl100k_base, as published. Nobody here has run it
Example Skill
This is an example skill that demonstrates the capabilities of the Skill Aggregation Framework.
Overview
This skill includes example scripts in three languages:
- JavaScript (executed in VM2 sandbox)
- Python (executed as subprocess)
- Shell (executed as subprocess with command validation)
Usage
Trigger this skill to test the execution engine. You can specify parameters to customize the output.
Workflow
- Call the desired script with parameters
- The script will process the input
- Output will be streamed back to the caller
- Any generated files will be available as artifacts
Scripts
JavaScript (scripts/hello.js)
A simple JavaScript script that demonstrates sandbox execution and artifact creation.
Python (scripts/analyze.py)
A Python script that performs text analysis and generates a JSON report.
Shell (scripts/process.sh)
A shell script that demonstrates basic text processing.
Examples
JavaScript execution:
{
"skill_id": "example-skill",
"script_path": "scripts/hello.js",
"script_type": "JAVASCRIPT",
"parameters": {
"message": "Hello World",
"count": "5"
}
}
Python execution:
{
"skill_id": "example-skill",
"script_path": "scripts/analyze.py",
"script_type": "PYTHON",
"parameters": {
"text": "This is sample text for analysis"
}
}
What ships with it: 3 files
3.8 KB alongside SKILL.md, 3 of them executable
scripts/
- analyze.pyruns2.0 KB
- hello.jsruns956 B
- process.shruns904 B