Syncflow uses AI to break your task into small, ordered steps called 'crumbs' -- each with a title, description, time estimate, and research notes.
Open your task
Click "Decompose with AI"
Review the generated crumbs
AI Providers
The free tier uses Groq (Llama models) by default -- no API key needed. If you prefer a different model, you can bring your own key for Claude, ChatGPT, or Grok. Configure this in Settings → AI Provider.
Usage Limits
On the Free plan, you get 5 AI decompositions per month. Each time you click "Decompose with AI" counts as one use, whether you keep the results or not.
The Basic plan (€2.99/month) gives you unlimited decompositions. Check your remaining usage in Settings → Plan.
Via the API
You can also trigger decomposition programmatically:
POST /api/tasks/:id/decompose
Authorization: Bearer YOUR_KEY
Content-Type: application/json
{
"instructions": "Break into 15-min chunks"
}See the API Reference for full details.