Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:1
forks:0
updated:May 6, 2026 at 12:30
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | setup-deploy |
| description | Configure the Puzzmo CLI for uploading game builds |
Configure the project to deploy game builds to Puzzmo using the CLI.
Install the Puzzmo CLI as a dev dependency:
Install @puzzmo/cli as a dev dependency using the project's package manager (e.g. npm, yarn, pnpm).
Add deploy scripts to package.json:
{
"scripts": {
"deploy": "npm run build && puzzmo upload",
"deploy:only": "puzzmo upload"
}
}
The CLI discovers the game slug from puzzmo.json automatically.
Create a .gitignore if it doesn't exist, including:
node_modules/
dist/
.env
Initialize a git repository if not already initialized:
git init
Add a README.md with basic instructions:
# Game Name
## Development
Run the `dev` script to start development.
## Build
Run the `build` script to create a production build.
## Deploy
puzzmo login <your-token>
Run the `deploy` script to upload to Puzzmo.
build script completes without errorspuzzmo upload command is configured in package.json.gitignore excludes node_modules and dist