Template Gallery
Cloudflare AutoRAG Doc Search
An AI-powered documentation search bot that uses Cloudflare AutoRAG for semantic search and Anthropic Claude for response generation. Mention the bot in Slack with a search query to get AI-generated answers grounded in your knowledge base. Very simple with only a single search, no agentic loop.
Low-Level Protocols
Demonstrates direct protocol operations including SSH commands, file uploads, and PostgreSQL queries. Shows how to work with infrastructure at the protocol level for tasks like remote host management and database operations.
PagerDuty MCP
Exposes PagerDuty incident management operations as MCP tools that can be called by AI assistants. Includes listing incidents, adding notes, and resolving incidents through the Model Context Protocol.
Explode Pattern
Uses the Explode block to fan out work across multiple items in parallel. Lists S3 objects, processes each one individually, then collects all results back together. It's important to use the Collect block at the end to wait for all parallel work to finish before proceeding.
PagerDuty Slackbot
A comprehensive incident management bot that integrates PagerDuty with Slack. Automatically creates dedicated incident channels, generates AI-powered summaries using Anthropic Claude, and provides interactive Slack messages for incident response actions. Great example of an advanced ai-flavoured Slack Bot.
Parallel Fetching
Demonstrates how to run multiple HTTP requests in parallel using Group Keys and Collect blocks. Sends concurrent requests and aggregates the results once all responses arrive. It's important to use the Collect block at the end to merge all parallel branches back together.
S3 Webhook Archiver
Archives incoming webhook payloads to Amazon S3. Receives HTTP requests, stores them in a self-provisioned S3 bucket, and provides retrieval endpoints. A simple demonstration of using the S3 API, including resource management (bucket creation).
ServiceNow Provisioning
A self-service provisioning flow triggered by ServiceNow catalog requests. When a user submits a request, an S3 bucket is automatically created and the request is updated with completion status. The ServiceNow catalog entry is fully managed by the Flows block.
Simple Webhook Handler
A minimal webhook handler that receives HTTP GET requests and responds with a personalized greeting. Great for learning how HTTP Endpoint blocks produce request events and expect response events back.
Simple Slackbot
A basic Slack bot that responds to @mentions with commands. It reacts to "@mention hello" by greeting the user, and "@mention info" by fetching and displaying the user's Slack profile information.