Edit the component, then preview updates on the right.
Add your OpenAI API key to chat. Conversations use the current source as context.
Your key stays on this device and is only used for your ChatGPT requests.
Enter your key in the OpenAI API key field above, then ask about this source, props, layout, or how to reshape the example. Your key stays on this device.
Live render of your edited component.
Ordered policies evaluated from top to bottom.
#1 IF priority >= 4 AND status = open THEN notify → #2 IF updatedAt < -30d THEN route
[
{
"priority": 1,
"name": "Escalate urgent",
"conditions": "priority >= 4 AND status = open",
"effect": "notify",
"enabled": true
},
{
"priority": 2,
"name": "Auto-close stale",
"conditions": "updatedAt < -30d",
"effect": "route",
"enabled": true
},
{
"priority": 3,
"name": "Block archived edits",
"conditions": "status = archived",
"effect": "deny",
"enabled": false
}
]