Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Sample and demo skills for API connectivity testing — minimal echo/ping-style calls to verify the REST server is reachable. Use when testing whether the UnitySkills REST server responds, smoke-testing connectivity, or trying a first call, even if the user just says "测试连接" or "通不通". 用于 API 连通性测试的示例/演示 skill(最小的 echo/ping 式调用,验证 REST 服务可达);当用户要测试 UnitySkills REST 服务是否响应、冒烟测试连通性、或试发第一个调用时使用。
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | -20% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -57% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -20% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 93% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 80% | 0% |
Basic examples for testing the API.
Operating Mode (v1.9 three-tier):
get_scene_info, find_objects_by_name) run directly. Creators/mutators (create_cube, create_sphere, set_object_position, set_object_rotation, set_object_scale) are FullAuto — on MODE_RESTRICTED, run the grant protocol.delete_object (SkillOperation.Delete). It is reachable only under Bypass or via a user-managed Allowlist entry; the grant flow returns MODE_FORBIDDEN.DO NOT (common hallucinations):
sample_create is a simplified version of gameobject_create — prefer the full gameobject modulesample_hello / sample_ping are connectivity test skills onlyRouting:
gameobject moduleunity_skills.health()Create a cube primitive. Parameters: x, y, z, name
Create a sphere primitive. Parameters: x, y, z, name
Delete object by name. Parameters: objectName
find_objects_by_nameFind objects containing string. Parameters: nameContains (name is also accepted as a compatibility alias)
set_object_positionSet object position. Parameters: objectName, x, y, z
set_object_rotationSet object rotation. Parameters: objectName, x, y, z
set_object_scaleSet object scale. Parameters: objectName, x, y, z
get_scene_infoGet current scene information. Parameters: None.
Exact names, parameters, defaults, and returns are defined by GET /skills/schema or unity_skills.get_skill_schema(), not by this file.
Other measured skills in the registry, with their headline benchmark lift.