Reference documentation

Playdrop Workspace

Workspace created for {username} on {date} using Playdrop version {version} See all published creations at https://www.playdrop.ai/creators/{username}

Updated June 8, 2026

Workspace created for {username} on {date} using Playdrop version {version} See all published creations at https://www.playdrop.ai/creators/{username}

Start here

  • Install the Playdrop plugin first in Codex, Claude Code, or Cursor: playdrop-plugin
  • Install the CLI: npm install -g @playdrop/playdrop-cli
  • Log in: playdrop auth login
  • Read the canonical onboarding flow: playdrop getting-started
  • Browse the docs tree: playdrop documentation browse
  • Initialize the workspace: playdrop project init .

text example

.
├── catalogue.json
├── apps/
│   └── my-game/
│       ├── catalogue.json
│       ├── src/
│       ├── package.json
│       ├── tsconfig.json
│       ├── build.mjs
│       └── dist/index.html
└── tmp/

Good next steps

  • create from a template:
    • playdrop project create app my-app --template playdrop/template/typescript_template
  • or remix a published app:
    • playdrop project create app my-remix --remix app:playdrop/hangingout@<version>
  • preview locally:
    • playdrop project dev my-app
  • validate before publish:
    • playdrop project validate .
  • publish:
    • playdrop project publish .