Quickstart
Build your first AI workflow with Compozy in 5 minutes
Transform your ideas into powerful AI workflows in minutes! In this guide, we’ll build a workflow that combines web content fetching with AI analysis - perfect for content curation, research, or monitoring applications.
Prerequisites
Install the Compozy CLI using one of these methods:
Your First Workflow
You’ll learn how to use webhooks to create HTTP endpoints, integrate with tools for web scraping, and leverage AI agents for intelligent text analysis. This workflow showcases the building blocks you need to create sophisticated AI-powered applications.
Want to take it further? Explore our workflow examples to learn how to:
- Process content at scale with parallel execution
- Extract structured data with custom AI agents
- Connect to your favorite tools and databases
- Build complex automation pipelines
Let’s get started! 🚀
Initialize a new project
Add your dependencies
Set up basic workflow information
Create a new file workflows/analyze.yaml
and start adding the basic workflow information:
Configure the webhook trigger
Define how your workflow will be invoked:
There are many different triggers available, you can learn more about them here.
Add your workflows tasks
Now is when you define the flow of your workflow and which tasks, tools and agents will be used.
We break this is parts, but the final result is an one single YAML file. You can check the final workflow file here.
Test your workflow
- Start the development server:
This will start your service and create an endpoint at http://localhost:3000/analyze-content
- Test the workflow using the CLI:
Optional: Deploy to Production
You can deploy your workflow to Compozy Cloud or to your own infrastructure:
Your workflow will be available at: https://<your-project>.compozy.dev/analyze-content
Your workflow will be available at: https://<your-project>.compozy.dev/analyze-content
For self-hosted deployments, check our deployment guides: