What's New
🔥 AI Mode For Extraction (Beta)
Now build Extract Robots without recording! Simply describe what you want in plain language.
Example: Extract Names, Rating & Duration of Top 50 Movies from IMDb
maxun_ai_mode_extraction.mp4
Choose your approach
- Recorder Mode: Click through websites to record actions step-by-step.
- AI Mode: Describe what you want - the AI handles the extraction logic.
Supports local LLMs via Ollama for privacy and cloud models (OpenAI, Anthropic) for maximum accuracy.
Get Started with AI Mode: https://docs.maxun.dev/robot/extract/llm-extraction
📦 Maxun SDK v0.0.1
The official Node.js SDK for Maxun.
Works with both Maxun Cloud and Maxun Open Source - automatically handles the differences for you.
Get Started: https://github.com/getmaxun/node-sdk
Core Features
1. LLM Extraction (Beta) – Extract data using natural language prompts
Example: Extract the first 15 Company Names, Descriptions and Batch Information from YC
maxun_sdk_llm_extract.mp4
2. Non-LLM Extraction – Use precise selectors for reliability
a. Auto Pagination
Pagination is completely optional. When you don't specify the pagination field, Maxun automatically detects and handles pagination for you.
.captureList({
selector: '.product-card',
maxItems: 100
})b. Auto List Capture
When using captureList, you only need to provide the list item selector. Maxun automatically:
Detects all meaningful fields within each list item
Extracts clean, structured data from those fields
.captureList({
selector: '.product-card' // That's it! Maxun finds all fields inside
})Complete Robot Management
- Scheduling – Set up recurring runs with cron syntax
- Webhooks – Receive notifications on job completion
- Runs & Execution – Monitor status, results, and history
- Robot CRUD – Create, update, and manage robots programmatically
View all examples here: https://docs.maxun.dev/category/sdk
What's Changed
- feat: support for sdk by @RohitR311 in #920
- feat: AI powered robot generation by @RohitR311 in #921
- fix: set showCancelButton to false for schedule settings by @amhsirak in #922
- fix: misc ui & theme changes by @amhsirak in #923
- chore: pre-release v0.0.30 by @amhsirak in #924
Full Changelog: v0.0.29...v0.0.30