const actions = [
// CRUD operations
{ name: "create", description: "Create a new item" },
{ name: "update", description: "Update an existing item" },
{ name: "delete", description: "Delete an item", approvalRequired: true },
// Navigation
{ name: "navigateTo", description: "Navigate to a page" },
{ name: "openModal", description: "Open a modal dialog" },
{ name: "closeModal", description: "Close the current modal" },
// State changes
{ name: "toggleSetting", description: "Toggle a boolean setting" },
{ name: "setTheme", description: "Change the color theme" },
// Bulk actions
{ name: "selectAll", description: "Select all visible items" },
{ name: "clearSelection", description: "Clear all selections" },
// Utilities
{ name: "copyToClipboard", description: "Copy text to clipboard" },
{ name: "download", description: "Download a file" },
{ name: "refresh", description: "Refresh the current view" },
]