I made an SDK to create and deploy production-ready agents in a few lines:
client = M8tes()
teammate = client.teammates.create(
name="revenue-report",
instructions="Pull last week's Stripe charges, compare to the prior week, post a summary to #finance on Slack.",
apps=["stripe", "slack"],
schedule="every monday at 9am",
)
Instantly you have a sandboxed agent running with apps, scheduler, email inbox, memory, etc.
You set it up once and it runs without you.