Advanced mode uses a custom condition script for applicability evaluation.
OptionalconditionServer-side JavaScript condition script evaluated at runtime to determine if the skill is applicable for a given context.
Must follow the pattern:
(function executeCondition(/* glide record */ current) {
// customize condition logic here, return true or false
return false;
})(current);
If omitted, a default template script is used that returns false
(i.e., the skill will not pass the condition check until customized).
Enable NAP deployment
OptionalrolesRoles that can access this skill in the Now Assist Panel. Optional in both modes.
'now_assist_panel_user' (the universal
panel-access role). Provide additional roles to broaden access.conditionScript alone
governs access. No default role is injected.In simple mode, omitting 'now_assist_panel_user' from provided roles raises a warning; advanced mode does not warn.
NAP config with advanced condition mode — requires a custom condition script.
Example