AI workflows

A library of loops Aidely runs for you.

Every workflow is a small, observable agent. Start with what we ship. Customize with natural language. Build your own with the MCP API.

Inbox

Drafted replies

Aidely composes in your voice; you approve in one click.

Calendar

Multi-party scheduling

Negotiates across time zones, preferences, and recurring rituals.

Briefs

Pre-meeting prep

A one-page brief 12 minutes before every meeting.

Follow-ups

Commitment chaser

Every promise tracked until it's closed — or you say drop it.

Reporting

Weekly digest

A Friday summary of meetings, asks, and what's slipping.

CRM

Pipeline hygiene

Auto-updates stages, contacts, and notes from your meetings.

Travel

Trip planner

Books flights and hotels within policy, surfaces conflicts.

Hiring

Candidate coordinator

Schedules panels, sends prep, collects scorecards.

Custom

Build your own

Write in plain English. Or YAML. Or MCP.

Anatomy of a workflow

Trigger. Reason. Act. Verify.

Every workflow is a tight loop. A trigger fires, an agent reasons over the right context, takes an action (or asks for permission), and a verifier checks the result.

workflow: pre_meeting_brief
trigger: calendar.event.created
when: event.attendees.length > 1
do:
  - retrieve(memory="per_person", ids=event.attendees)
  - retrieve(memory="per_project", topic=event.title)
  - draft_brief(format="one_page")
  - verify(min_confidence=0.82, on_low="ask_user")
  - deliver(channel="email", at="event_start - 12m")

Ready to hand the small stuff to Aidely?