▸ Read atomeve.dev/start.md and set up Standup Bot agent in my project.Reads a configured Slack channel and drafts a concise standup digest: a standup draft, priorities, active threads and blockers, wins and shipped work, gaps and follow-up questions, and the source window with caveats. Every item is grounded in observed messages, and a quiet channel gets a minimal digest rather than padding. It only drafts for review and never posts, replies, or reacts in Slack.
Create a Slack app whose bot token can read the channel you want summarized, then invite the bot to that channel.
The exact source npx atom-eve add installs — instructions, tools, and skills. Read it here, or copy any file straight into your project.
agent.tsimport { defineAgent } from "eve";
export default defineAgent({
model: process.env.AGENT_MODEL ?? "anthropic/claude-sonnet-4.6",
});