setup-deploy

Configure the Puzzmo CLI for uploading game builds

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "setup-deploy" with this command: npx skills add puzzmo-com/oss/puzzmo-com-oss-setup-deploy

Setup Deploy

Configure the project to deploy game builds to Puzzmo using the CLI.

Steps

  1. Install the Puzzmo CLI as a dev dependency:

    npm install --save-dev @puzzmo/cli
    
  2. Add deploy scripts to package.json:

    {
      "scripts": {
        "deploy": "npm run build && puzzmo upload GAMESLUG dist",
        "deploy:only": "puzzmo upload GAMESLUG dist"
      }
    }
    
  3. Replace GAMESLUG with the actual game slug.

  4. Create a .gitignore if it doesn't exist, including:

    node_modules/
    dist/
    .env
    
  5. Initialize a git repository if not already initialized:

    git init
    
  6. Add a README.md with basic instructions:

    # Game Name
    
    ## Development
    npm run dev
    
    ## Build
    npm run build
    
    ## Deploy
    puzzmo login <your-token>
    npm run deploy
    

Success Criteria

  • npm run build completes without errors
  • puzzmo upload command is configured in package.json
  • .gitignore excludes node_modules and dist
  • Game slug matches across all config files

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

create-app-bundle

No summary provided by upstream source.

Repository SourceNeeds Review
General

puzzmo-theme

No summary provided by upstream source.

Repository SourceNeeds Review
General

convert-to-vite

No summary provided by upstream source.

Repository SourceNeeds Review
General

add-deeds

No summary provided by upstream source.

Repository SourceNeeds Review