feat(actions): add scrape URL action

This commit is contained in:
ItzCrazyKns
2025-12-06 18:54:37 +05:30
parent a14f3e9464
commit d0124b9f06
4 changed files with 78 additions and 36 deletions

View File

@@ -1,10 +1,12 @@
import doneAction from './done';
import planAction from './plan';
import ActionRegistry from './registry';
import scrapeURLAction from './scrapeURL';
import webSearchAction from './webSearch';
ActionRegistry.register(webSearchAction);
ActionRegistry.register(doneAction);
ActionRegistry.register(planAction);
ActionRegistry.register(scrapeURLAction);
export { ActionRegistry };