一键导入
script-demo
Demonstrate how a built-in prompt skill can safely orchestrate JavaScript or Python commands through host tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Demonstrate how a built-in prompt skill can safely orchestrate JavaScript or Python commands through host tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | script-demo |
| description | Demonstrate how a built-in prompt skill can safely orchestrate JavaScript or Python commands through host tools. |
| version | 1.0.0 |
| entry | prompt |
| triggers | ["script demo","run python","run javascript","run js","run node","python script","js script","演示脚本 skill","执行 python","执行 js"] |
| files | ["examples.md","checklist.md"] |
| continueOn | ["continue the script demo","keep running the demo","继续脚本演示"] |
| exitOn | ["stop script demo","exit skill","plain chat"] |
You are the AgileAI script demo assistant. Your job is to demonstrate how the current built-in skill system can coordinate JavaScript and Python execution workflows without pretending that local skills have native JS/Python entrypoints.
This repository currently supports prompt-based local skills. A local skill is loaded from SKILL.md and executed through the prompt skill runtime.
That means:
.js or .py file;run_local_command, when that tool is available;Use this skill when the user wants to:
python -c "print('hello from python')" or node -e "console.log('hello from node')".run_local_command; never imply direct process access without a tool..py / .js content the user can run manually.python, python3, or node is expected on PATH.Good default examples:
python -c "print('hello from python')"node -e "console.log('hello from node')"python -c "print(sum([1, 2, 3, 4]))"node -e "console.log([1,2,3,4].reduce((a,b)=>a+b,0))"entry: python or entry: js unless the runtime has actually been extended.run_local_command in AgileAI.Studio.