Build the unity-mcp-cli TypeScript CLI tool and link it globally for terminal use.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill build-cli --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Build Cli?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-build-cli)More formats (shields.io, HTML) on the badges page.
---
name: build-cli
description: "Build the unity-mcp-cli TypeScript CLI tool and link it globally for terminal use."
disable-model-invocation: true
argument-hint: "[optional: --link to also run npm link]"
---
# 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.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...