Canonical public PlayDrop plugin source for Codex, Claude Code, and Cursor.
This repository is the source of truth for the public playdrop plugin. It contains the plugin manifests, public creator-facing skills, shared references, and shared assets used to support PlayDrop creator workflows.
- Home page: playdrop.ai
- Getting Started: playdrop.ai/getting-started
- Plugin docs: playdrop.ai/docs/plugin
- Full documentation: playdrop.ai/docs
.codex-plugin/: Codex manifest.claude-plugin/: Claude manifest.cursor-plugin/: Cursor manifestskills/: specialist public PlayDrop skillsreferences/: shared public workflow referencesassets/: plugin icons and branding assets
Use this exact local Codex setup:
- Copy the plugin repo into:
~/.codex/plugins/playdrop
- Create or update:
~/.agents/plugins/marketplace.json
with:
{
"name": "local-plugins",
"interface": {
"displayName": "Local Plugins"
},
"plugins": [
{
"name": "playdrop",
"source": {
"source": "local",
"path": "./.codex/plugins/playdrop"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Coding"
}
]
}- Restart Codex so it reloads the personal marketplace.
- Open
Plugins > Local Plugins, then installplaydropfromlocal-plugins. - Start a new thread and ask Codex to use
playdropor one of its bundled skills.
Optional advanced shortcut for personal setups:
[plugins."playdrop@local-plugins"]
enabled = trueAdd that entry to ~/.codex/config.toml if you want Codex to keep the plugin enabled after it has been installed. Treat it as a local shortcut for your own machine, not the primary install path. If PlayDrop does not appear, use the restart plus Plugins > Local Plugins flow above.
Either run these commands in Claude CLI directly, or tell the Claude app to run them with Claude CLI.
/plugin marketplace add playdrop-ai/playdrop-plugin
/plugin install playdrop@playdrop/plugin is not available inside the Claude Code app at the moment.
Copy this prompt into Cursor to register the plugin:
Install the PlayDrop Cursor Plugin from https://github.com/playdrop-ai/playdrop-plugin in ~/.cursor/plugins/local/
Source: https://cursor.com/docs/plugins#creating-plugins
Use short representative checks instead of treating discovery alone as sufficient.
- Codex: verify
playdrop:task-routing,playdrop:game-planning,playdrop:scope-control, andplaydrop:store-listing - Claude Code: verify
/playdrop,/playdrop:game-planning,/playdrop:scope-control, and/playdrop:store-listing - Cursor: verify
playdrop:task-routing,playdrop:game-planning,playdrop:scope-control, andplaydrop:store-listing - Workflow smoke tests:
game-planning->scope-control->gameplay-mockupsdev-testing->gameplay-review->store-listingproject-updates->service-integrationengine-porting->dev-testing
Plugin manifests in this repository are on the same release train as the PlayDrop platform and must match the platform version. Version alignment and legacy sync are maintained from the private PlayDrop monorepo.
playdrop-skills is a generated compatibility, skills.sh, and SEO surface. It is not the source of truth.
Run the sync from the private PlayDrop monorepo root:
node scripts/sync-legacy-skills-repo.mjsCheck for drift with:
node scripts/sync-legacy-skills-repo.mjs --checkAlign the public plugin manifests with the platform release version from the monorepo:
node scripts/set-public-plugin-version.mjs 0.6.2