unity-sample

Tests UnitySkills REST server connectivity with minimal echo and ping-style calls.

Updated Jan 29, 2026
One-click install
npx skills add https://github.com/Dylan8865/FinalYearProject --skill unity-sample-dylan8865
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: unity-sample
Source: https://github.com/Dylan8865/FinalYearProject/tree/main/GameDev/Tester/.agents/skills/unity-skills/skills/sample
Command: npx skills add https://github.com/Dylan8865/FinalYearProject --skill unity-sample-dylan8865

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When setting up or debugging the UnitySkills REST server, you need a quick way to verify the server is reachable and responding before running real GameObject operations. This Skill provides minimal smoke-test calls to confirm API connectivity. ## Core Features & Use Cases - Connectivity Testing: Run ping-style sample calls to verify the UnitySkills REST server responds. - Basic Scene Queries: Use get_scene_info and find_objects_by_name to confirm query skills work end-to-end. - Primitive Creation Demos: Create cubes and spheres or set transforms as simple first calls to validate the request pipeline. - Use Case: After deploying the REST server, ask the assistant to run a sample ping to confirm the endpoint is live before invoking the full gameobject module. ## Quick Start Ask the assistant to test whether the UnitySkills REST server is reachable by running a sample connectivity check.

Frequently Asked Questions about unity-sample

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

FAQPage Schema
How do I test if the UnitySkills REST server is running?▼

Run a sample connectivity skill such as a ping-style call or get_scene_info to verify the server responds. For a dedicated health check, use the Python helper's unity_skills.health() function instead.

What is the difference between sample_create and gameobject_create?▼

sample_create is a simplified demo version intended only for testing, while gameobject_create in the gameobject module is the full-featured operation. For any real GameObject work, use the gameobject module.

Can I use sample skills for production Unity scene work?▼

No. Sample skills are basic test and demo skills for connectivity verification only. Production GameObject operations should go through the gameobject module, which provides the complete functionality.

Why does delete_object fail in the sample module?▼

delete_object is auto-forbidden in this module and returns MODE_FORBIDDEN under the grant flow. It is reachable only under Bypass mode or through a user-managed Allowlist entry.

How do I find the exact parameters for sample skills?▼

Query GET /skills/schema or call unity_skills.get_skill_schema() to get exact names, parameters, defaults, and return types. The SKILL.md file is not the authoritative signature source.