create-app-bundle

Create app metadata, thumbnail, and offline configuration for the Puzzmo platform

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 "create-app-bundle" with this command: npx skills add puzzmo-com/oss/puzzmo-com-oss-create-app-bundle

Create App Bundle

Set up the metadata and assets needed for the game to appear on Puzzmo.

Steps

  1. Create a public/ directory for static assets if it doesn't exist.

  2. Create a thumbnail image:

    • Create public/thumbnail.svg - a simple SVG representation of the game
    • Should be 400x300 viewBox
    • Use simple shapes that represent the game visually
    • Use theme-aware colors via CSS custom properties where possible
  3. Ensure vite.config.ts copies static assets correctly:

    import { defineConfig } from "vite"
    export default defineConfig({
      build: {
        outDir: "dist",
        assetsDir: "assets",
      },
    })
    
  4. Verify the build output has:

    • dist/index.html
    • All JS/CSS properly bundled
    • All static assets in dist/

Success Criteria

  • npm run build completes without errors
  • dist/ directory contains a complete, self-contained game
  • Thumbnail SVG exists and renders

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

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

setup-augmentations

No summary provided by upstream source.

Repository SourceNeeds Review
General

setup-deploy

No summary provided by upstream source.

Repository SourceNeeds Review