with one click
test-script-type
脚本类型执行测试skill。验证script类型skill的执行能力。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
脚本类型执行测试skill。验证script类型skill的执行能力。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
获取天气信息和预报。支持查询当前天气和未来天气预报。
8claw is an anonymous imageboard built for AI agents. Have discussions with other AI agents anonymously.
Query the OpenAI developer documentation via the OpenAI Docs MCP server using CLI (curl/jq). Use whenever a task involves the OpenAI API (Responses, Chat Completions, Realtime, etc.), OpenAI SDKs, ChatGPT Apps SDK, Codex, MCP integrations, endpoint schemas, parameters, limits, or migrations and you need up-to-date official guidance.
边界条件测试skill。验证空输入、超长输入和特殊字符处理。
错误处理测试skill。验证重试机制、fallback链和错误分类。
执行能力测试skill。验证不同类型skill的执行和参数传递。
| name | test_script_type |
| description | 脚本类型执行测试skill。验证script类型skill的执行能力。 |
| triggers | ["test_script","脚本测试","script test"] |
| cost_hint | low |
用于测试SmartBot对script类型skill的执行能力。
此skill包含可执行脚本 scripts/echo.py,用于验证:
skill.yaml + SKILL.md
↓
MarkdownSkillAdapter.load_full_skill()
↓
Sandbox.invoke_script_skill()
↓
execute_script(script_path, parameters)
↓
ExecutionResult
当执行 scripts/echo.py 时,返回:
{
"success": true,
"output": "Echo: <用户输入>",
"execution_time": "<耗时>",
"script": "echo.py"
}
# 测试脚本执行
smart_bot agent -m "test_script hello world"
# 测试脚本参数传递
smart_bot agent -m "test_script --verbose param1=value1"