Community-contributed workspace templates for Minecraft Bedrock add-on development. Surfaced as the Community Templates source in create-mc-bedrock.
Not a standalone tool. The CLI fetches templates from this repo when a user selects the Community Templates source.
npx create-mc-bedrock
# → choose "Community Templates"
# → pick a category → pick a templateManifest UUIDs are regenerated at scaffold time, so no two scaffolds collide.
custom-mc-scripting-templates/
basic-starters/ # focused single-feature starters (custom items, blocks, entities…)
manual-workspaces/ # hand-tweaked workspaces with no compiler
marketplace-workspaces/ # templates targeting Minecraft Marketplace
regolith-workspaces/ # Regolith-powered templates
Each category holds one or more template subfolders. Every template must contain everything a user needs to start developing (BP, RP, scripts where relevant, README inside the template).
The new Custom Workspace shipped with create-mc-bedrock@2.0.0 is bundled inside the scaffolder itself (powered by @keyyard/bedrock-build) — it's now the recommended default for most users.
Community Templates remain the home for specialized starters that don't fit the default workspace shape: marketplace-targeted packs, Regolith pipelines, hand-tweaked manual workspaces, single-feature drops.
PRs welcome! See CONTRIBUTING.md for layout requirements and naming conventions.
Quick recipe:
- Add your template under the appropriate category, with a
README.mddescribing what it does. - Test that
npx create-mc-bedrock→ Community Templates → your category → your template scaffolds cleanly. - Open a PR.
MIT