unity-sample

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

2|Updated May 18, 2026
One-click install
npx skills add https://github.com/pcone-mm/NewFPG --skill unity-sample-pcone-mm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-sample
Source: https://github.com/pcone-mm/NewFPG/tree/main/.agents/skills/unity-skills/skills/sample
Command: npx skills add https://github.com/pcone-mm/NewFPG --skill unity-sample-pcone-mm

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 scene operations. This Skill provides minimal echo/ping-style calls for smoke-testing API connectivity. ## Core Features & Use Cases - Connectivity Smoke Tests: Run sample_hello / sample_ping-style calls to confirm the REST server responds. - Basic Demo Operations: Create cubes and spheres, move/rotate/scale objects, find objects by name, and read scene info as simple API exercises. - Use Case: After starting the UnitySkills REST server, ask the assistant to test the connection — it issues a minimal call and reports whether the server is reachable before you attempt real GameObject work. ## Quick Start Test whether the UnitySkills REST server is reachable by running a sample ping call.

Frequently Asked Questions about unity-sample

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

FAQPage Schema
What are Unity sample skills used for?

Sample skills are minimal demo and connectivity-test calls for the UnitySkills REST API. They cover basic operations like creating cubes and spheres, but they are intended for testing only, not production scene work.

Should I use sample_create or gameobject_create in Unity?

Use the gameobject module for real GameObject operations. The sample_create call is a simplified demonstration version, and the full gameobject module provides the complete feature set for production work.

Why does delete_object fail in the sample module?

delete_object is auto-forbidden in this module under the three-tier operating mode. It only runs under Bypass mode or through a user-managed Allowlist entry; otherwise the grant flow returns MODE_FORBIDDEN.

Where are the exact parameters for Unity sample skills defined?

Exact names, parameters, defaults, and return values come from GET /skills/schema or unity_skills.get_skill_schema(), not from the SKILL.md documentation. Always query the schema for authoritative signatures.