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:
useFieldActions
now receivesparentSchemaType
as a prop, making it easier to conditionally include actions for sub-fields in images or other object types.isType
helper function for checking if aschemaType
is of a certain type. Useful for conditionally including actions based on some parent type, for instance:isType(schemaType, 'image')
orisType(schemaType, 'string')
useFieldActions
is allowed to includeundefined
values 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.