I built Aether — an open-source agentic AI task orchestrator

Hey everyone! 👋

I’ve been working on Aether, an agentic AI task orchestrator designed to pull in your tasks and calendar events, figure out what actually matters, and use Claude to plan and act on your behalf.

I just hit Week 3 of development, and the core loop is fully functional. Thought I’d share the architecture and tech stack for anyone building similar full-stack AI apps!

🛠️ The Stack

🧠 What’s Working Right Now

  • Multi-Platform Support: Web and mobile CRUD clients are fully live sharing a unified tRPC backend.

  • Agentic Loop: A tool-calling Daily Review agent prioritizes tasks and retains user memory/preferences across runs.

  • Google Calendar Sync: Automatically ingests calendar events as actionable tasks using incremental OAuth scopes.

📂 Project Structure

Plaintext

apps/
  web/       Next.js 15 app (landing page, dashboard, tRPC routes)
  mobile/    Expo mobile app
packages/
  api/       tRPC router definitions
  auth/      Better Auth setup with Google & incremental scopes
  db/        Drizzle schema & Postgres client
  agents/    Claude tool-calling agents & ingestion jobs

The repo is set up with a clean separation of concerns, making it easy to plug in new agent capabilities (Gmail triage and smart scheduling are up next on the roadmap for Week 4).

If you're building with a similar stack or have thoughts on structuring agent memory alongside relational databases, I’d love to hear your feedback or answer any questions!

Link :

12 views

Add a comment

Replies

Be the first to comment