build-cli
FeaturedBuild the unity-mcp-cli TypeScript CLI tool and link it globally for terminal use.
AI & Automation 3,698 stars
333 forks Updated today Apache-2.0
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Build CLI
Build the `unity-mcp-cli` TypeScript project and optionally link it globally.
## Step 1 — Install Dependencies
```bash
cd cli && npm install
```
Only needed if `node_modules/` is missing or `package.json` changed.
## Step 2 — Build TypeScript
```bash
cd cli && npm run build
```
This compiles `src/**/*.ts` → `dist/**/*.js` via `tsc`.
## Step 3 — Link Globally (if `$ARGUMENTS` contains `--link` or first time)
```bash
cd cli && npm link
```
This creates a global symlink so `unity-mcp-cli` is available from any terminal. Only needed once — after that, `npm run build` alone is sufficient.
## Step 4 — Verify
```bash
unity-mcp-cli --version
```
Confirm the CLI is accessible and shows the expected version.
## Report
Print the version and confirm success. If any step failed, show the error output.
Details
- Author
- IvanMurzak
- Repository
- IvanMurzak/Unity-MCP
- Created
- 1 years ago
- Last Updated
- today
- Language
- C#
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
build
Builds project with auto-detected toolchain (npm, poetry, cargo, go, flutter, Docker). Triggers: build, compile, bundle, produce artifacts.
161 Updated yesterday
softspark AI & Automation Solid
unity-run
Use when running Unity from CLI for any purpose — builds, tests, method execution, asset imports. Handles Unity installation detection, batchmode execution, and log monitoring. Other unity-dev skills depend on this for CLI execution.
6 Updated 5 days ago
DmitriyYukhanov AI & Automation Listed
build-and-test
Install dependencies, run type checking, lint, tests, and build the project. Use after making code changes to verify nothing is broken.
1 Updated yesterday
morganmuli