Python SDK for building autonomous AI teammates

Published: (February 23, 2026 at 05:55 PM EST)
1 min read
Source: Dev.to

Source: Dev.to

Overview

  • Supports actions and knowledge in 150+ of the most popular SaaS apps
  • Scheduled runs for automation
  • Send emails to agents to delegate tasks
  • Trigger tasks with webhook events
  • Agent has memory of previous runs
  • Human‑in‑the‑loop with permissions, planning and asking questions
  • File handling for sharing outputs

Deploy an agent in a couple of lines

# 1. Create a task
task = client.tasks.create(
    teammate_id=bot.id,
    instructions="Send weekly ticket summary to team@acme.com"
)

# 2. Attach a schedule — every Monday at 9 am Eastern
trigger = client.tasks.triggers.create(
    task.id,
    type="schedule",
    cron="0 9 * * 1",
    timezone="America/New_York"
)

Let me know what you think—open for any feedback or ideas!

https://www.m8tes.ai/developers

0 views
Back to Blog

Related posts

Read more »

A Discord Bot that Teaches ASL

This is a submission for the Built with Google Gemini: Writing Challengehttps://dev.to/challenges/mlh/built-with-google-gemini-02-25-26 What I Built with Google...

AWS who? Meet AAS

Introduction Predicting the downfall of SaaS and its providers is a popular theme, but this isn’t an AWS doomsday prophecy. AWS still commands roughly 30 % of...