Apps
Create App
Create an app that will contain the actions and triggers available to your AI agents and workflow automations.
We are working on a CLI to make this easier
Create new folder
Locate the apps directory and add a new folder with your app name. E.g. your-new-app
.
Create app file
Create a new file within your new app folder. Call it something like your-new-app.app.ts
. Just make sure it ends with .app.ts
.
Add your own values. We provided mock data to help initialize the process.
export const yourNewApp = createApp
- Add an id in kebab-case, e.g.
your-new-app
- Add a name for the app:
Your New App
- Add brief one sentence description.
- Array of actions
- Array of triggers
- Array of connections
Export your new app from the app's index.ts file
index.ts
Export it as a named export and add it to the apps
export object.
Add Actions and Triggers
View the following guides to add actions and triggers