diff --git a/.changeset/happy-lies-wink.md b/.changeset/happy-lies-wink.md
new file mode 100644
index 0000000000..709cd3862e
--- /dev/null
+++ b/.changeset/happy-lies-wink.md
@@ -0,0 +1,22 @@
+---
+'@backstage/plugin-scaffolder': patch
+---
+
+- Adds a new field `EntityNamePicker` that can be used in scaffolder templates to accept and validate an entity name. This field is registered by default, and can be used in templates by setting the `ui:field` property to `EntityNamePicker`. If you've customized your scaffolder field extensions, you can include this one by adding it when registering the scaffolder route:
+
+```diff
+import {
+ ScaffolderFieldExtensions,
++ EntityNamePickerFieldExtension,
+} from '@backstage/plugin-scaffolder';
+
+ }>
+
+ {/* ...custom field extensions... */}
+
++
+
+ ;
+```
+
+- Adds a new generic field `TextValuePicker` to be used when writing custom field extensions that use a standard UI with custom validation. An example of doing this can be found in `packages/app/src/components/scaffolder/customScaffolderExtensions.tsx`.