This tutorial guides you through the process of creating, configuring, and publishing a custom application on Prisme.ai. You’ll learn how to extend the platform’s capabilities by building a reusable app that can be shared across workspaces and used by other team members.Documentation Index
Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt
Use this file to discover all available pages before exploring further.
Understanding Apps on Prisme.ai
Before diving into development, it’s important to understand what an “App” represents in the Prisme.ai ecosystem:Custom Components
Components built with ReactJS to provide specialized UI or functionality
Imports
Connectors to external services like CRMs, APIs, or other software systems
Code to No-Code Interface
Transform complex code into user-friendly no-code interfaces
Legacy to Modern API
Convert legacy systems into modern APIs for better integration
Benefits of Custom Apps
Creating custom apps on Prisme.ai offers several advantages:- Accelerated Roadmap Execution: Deploy new features and integrations quickly
- Enhanced Quality and Security: Test and secure components in a controlled environment
- Governance and Control: Restrict app development to authorized users
- Increased Productivity: Automate routine tasks and integrate various data sources
- Reusable Components: Build once, use everywhere across your organization
What You’ll Build
In this tutorial, you’ll create a Mailjet integration app that allows users to send emails directly from their automations. This practical example demonstrates the full app development lifecycle from creation to publication in the App Store.While we’re using Mailjet as an example, the principles and steps apply to building any type of custom app on Prisme.ai.
Prerequisites
Before starting this tutorial, make sure you have:- An active Prisme.ai account with appropriate permissions
- Basic knowledge of YAML for configuration
- API credentials from the service you’re integrating (Mailjet in this example)
Step 1: Creating Your App Workspace
First, let’s create a dedicated workspace for your app:Create a New Workspace
Click + Create new workspace, then in step 1 choose From Scratch. In step 2, configure it as follows:
- Name: “Mailjet” (or the name of your integration)
- Description: Brief explanation of what the app does
- Icon: Choose an appropriate icon that represents the service

Step 2: Building the Core Automation
Now, let’s create the main functionality of your app:Configure the Automation
- Name your automation (e.g., “SendEmail”)
- Set an appropriate slug (e.g., “send-email”)
Keep the automation public
Do not set
private: true on this automation. Public automations are the surface your app exposes to consumer workspaces — once the workspace is published as an app and installed, consumer automations call this one as Mailjet.send-email. Marking it private would hide it from the published app and break the integration.private: true is only appropriate for internal helpers that should never be reachable from outside the workspace.Understanding the Automation Configuration
The YAML configuration above defines a workflow that:- Makes an HTTP POST request to the Mailjet API
- Uses basic authentication with encoded credentials
- Formats the request body according to Mailjet’s requirements
- Defines input arguments with user-friendly labels and placeholders
- Supports HTML content for the email body
The
arguments section defines the inputs that will be exposed to users when they use your app in their own automations. Make sure these are clearly named and documented.Step 3: Configuring Advanced Settings
Let’s add configuration capabilities to make your app more flexible:Define Configuration Fields
Add the following YAML to create a configuration field for API credentials:
Step 4: Adding Documentation to the App
In v27, a Builder workspace exposes a single editable page calledindex, which is a React (Vite + Tailwind + Radix) single-page application. There is no separate _doc page and no block-based YAML. The index page is what app users see when they preview the workspace or open the published app’s documentation, so that’s where the documentation lives.
Open the index page
Navigate to Pages in the Builder sidebar and open the
index page. If the workspace has no source yet, initialize the React template from Code mode.Edit src/App.tsx
Switch to Code and replace the contents of For longer docs, you can split the content into a dedicated
src/App.tsx with a documentation component built from plain JSX and Tailwind. The example below renders a header and a simple Tabs UI for Documentation and Changelog, mirroring the legacy content:src/components/Documentation.tsx and even add light routing (for example with react-router-dom) so / shows the documentation and /changelog shows release notes.Render rich content (optional)
If you’d rather author the docs in Markdown or HTML, drop the converted HTML into a static container —
<div className="prose" dangerouslySetInnerHTML={{ __html: html }} /> works well with Tailwind Typography — or import any React Markdown library your project already uses (e.g. react-markdown, marked).Preview and save
Switch back to Preview to verify the rendered documentation, then click Save to synchronize the source files to the workspace.

src/App.tsx is in place, the Mailjet documentation tabs appear on the right.
Step 5: Versioning and Publishing
Now that your app is built and documented, let’s publish it to the App Store:Push a Workspace Version
Click Push to create a new workspace version in the platform-wide repository. See Versioning for details on how versions are managed.
Publish to App Store
Click Publish to make your workspace available as an installable app in the Prisme.ai App Store. See Deployment for more on the publishing flow.
Configure Publication Settings
Set visibility, categorization, and other publication settings for your app.
Step 6: Installing and Using Your App
Now let’s see how users can install and use your app:Open the Apps Marketplace
In any workspace, navigate to the Imports section and click the + button to browse the Apps marketplace.
Use the App in Automations
Create or edit an automation, add a new instruction, and select your app’s action (e.g., “SendEmail”).
Monitoring and Maintenance
After publishing your app, it’s important to monitor its usage and make improvements:Advanced App Development
As you become more familiar with app development on Prisme.ai, consider these advanced capabilities:Custom React Components
Build rich interactive UI components using ReactJS
Multi-Service Integration
Connect multiple external services in a single app
Advanced Authentication
Implement OAuth and other complex authentication flows
AI-Enhanced Processing
Combine your app with Knowledges for intelligent data processing, or plug in Agent Creator agents to add reasoning on top of your integration.
Best Practices for App Development
To ensure your apps are high-quality and maintainable:- Comprehensive Testing: Test all aspects of your app thoroughly before publishing
- Clear Documentation: Provide detailed instructions and examples
- Version Control: Maintain consistent versioning practices
- Security First: Handle credentials and sensitive data securely
- User Experience: Focus on making your app intuitive and easy to use
- Feedback Loop: Establish a mechanism for collecting and acting on user feedback
Next Steps
Create a RAG Agent
Build an agent that uses AI to answer questions from your documents
Implement Webhook Integration
Learn how to create advanced API and webhook integrations
Document Classification System
Build an AI system that automatically categorizes documents
Website to RAG Agent
Convert a website into an interactive knowledge base