Skip to content

VifuHub CLI Skill

The VifuHub CLI Skill teaches coding agents how to use the VifuHub CLI from an existing game directory: check vf --help, detect project setup, publish a playable release, upload source when requested, and report only the identifiers, status, and URL that vf prints.

Install the CLI separately first:

bash
curl -fsSL https://vifu.ai/cli | bash
vf --help

The skill does not log you in. For deploys, create an account at vifu.ai, then run:

bash
vf login

Install The Skill

MethodCommandBest for
Skills CLInpx skills add vifudotdev/skills --skill "vifuhub-cli"Standard cross-agent install.
Cursor Plugin/add-plugin vifuCursor users after plugin indexing is available.
Manual Symlinkgit clone https://github.com/vifudotdev/skills.git /path/to/vifu-skills && ln -s /path/to/vifu-skills/skills/vifuhub-cli <agent-skills-dir>/vifuhub-cliManual or private skill directories.
Agent PromptInstall the vifuhub-cli skill from https://github.com/vifudotdev/skillsAgents that can install skills from GitHub.

Use npx skills add, not npx skill add.

Use With A Coding Agent

From the game directory, prompt the agent:

text
Use the VifuHub CLI skill. Publish this game directory and report the Game ID, status, and Playable URL if the CLI prints one.

The skill instructs the agent to prefer:

bash
vf deploy --yes

That command creates missing setup from detected defaults, builds, validates, and publishes a playable release. A private release may not print a public URL; use vf games share <gameId> only when a shareable link was requested.

Repository

The canonical skill source is github.com/vifudotdev/skills. CLI installation remains at VifuHub CLI.