
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@zapier/ai-actions-react
Advanced tools
These components can be used to interface with AI Actions by Zapier.
To make API requests directly to AI Actions, see the @zapier/ai-actions package.
ActionListShows a list of all of the AI Actions that are available to the current user.
onActionCreated (Optional): Called when a new action is createdonActionUpdated (Optional): Called when an existing action is updatedonActionDeleted (Optional): Called when an action is deletedimport { ActionList } from "@zapier/ai-actions-react";
const ActionListExample = () => {
return (
<ActionList
onActionCreated={({ action }) => console.log(action)}
onActionUpdated={({ action }) => console.log(action)}
onActionDeleted={({ actionId }) => console.log(actionId)}
/>
);
};
CreateActionCreate a new action.
onActionCreated (Optional): Called when the action is actually createdapp (Optional): App to pre-select, can be found using the app search APIaction (Optional): Action to pre-select, can be found using the action search API
action is provided, it must be a valid action for the given appimport { CreateAction } from "@zapier/ai-actions-react";
const CreateActionExample = () => {
return (
<CreateAction
onActionCreated={({ action }) => console.log(action)}
app="SlackAPI"
action="channel_message"
/>
);
};
EditActionEdit an existing action by its ID.
actionId: ID of the action to editonActionUpdated (Optional): Called when the action is updatedonActionDeleted (Optional): Called when the is deletedimport { EditAction } from "@zapier/ai-actions-react";
const EditActionExample = () => {
return (
<EditAction
actionId="01HEXAMPLEID"
onActionUpdated={({ action }) => console.log(action)}
onActionDeleted={({ actionId }) => console.log(actionId)}
/>
);
};
FAQs
Zapier AI Actions React Components
The npm package @zapier/ai-actions-react receives a total of 151 weekly downloads. As such, @zapier/ai-actions-react popularity was classified as not popular.
We found that @zapier/ai-actions-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 296 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.