Enhancements and examples for custom field actions
Published: June 24, 2025
v4.4.0
AI Assist
More goodies for building custom field actions
In the versions released since 4.3.0, 4.4.0 includes:
useFieldActionsnow receivesparentSchemaTypeas a prop, making it easier to conditionally include actions for sub-fields in images or other object types.isTypehelper function for checking if aschemaTypeis of a certain type. Useful for conditionally including actions based on some parent type, for instance:isType(schemaType, 'image')orisType(schemaType, 'string')useFieldActionsis allowed to includeundefinedvalues in the returned array. This makes it easier to conditionally exclude actions as needed.
How-to-use
The repository now contains multiple copy/paste-able examples of integrating AI Assist with Agent Actions:
- Just getting started with AI Assist's custom actions? Check out the guide.
- Explore the how-to-use examples in the repo.