How are people using Claude as a personal assistant (Slack + Outlook + To-Do)? ADHD-friendly setup help 🙏
TL;DR Highlight
This post shares various working setups, shared in the comments, in response to a question about a user with ADHD wanting to create a 'second brain' integrating Slack, Outlook, Calendar, and to-do lists centered around Claude.
Who Should Read
Developers or office workers who have ADHD or difficulty concentrating and managing work context. People who want to use AI as a productivity tool in a Microsoft 365 (Outlook, Teams) environment.
Core Mechanics
- The original poster's goal is to build a system that integrates Slack messages, Outlook emails, and calendars around Claude, updates to-do lists in natural language, receives daily briefings, and proactively alerts the user to potential follow-up omissions.
- Direct integration with Outlook/Calendar is difficult with Claude Pro alone, and a realistic workaround is to build an M365 MCP server (based on Graph API) yourself or connect one found on GitHub. This is possible even without a Claude Teams subscription.
- The most frequently mentioned architecture is a combination of 'CLAUDE.md + markdown state files (state.md, current.md, todos.md, etc.).' Claude reads these files at the start of a session to restore previous context and updates them at the end of the session, implementing persistent memory.
- Using an MCP server allows Claude Desktop to query external services such as Slack, Google Calendar, Gmail, and Notion in natural language. There is also a case of connecting Outlook by creating an M365 Graph API-based MCP server.
- The open-source template called MARVIN was mentioned in several comments. It consists of CLAUDE.md + state files + custom slash commands (/morning-plan, /today, etc.) + MCP server, and even includes a structure to run Claude headless on Cloud Run with a cron job to send notifications via Telegram.
- Using Obsidian as a 'second brain' and connecting it to Claude Code is also popular. Using the Tasks plugin, Day Planner, and full-screen notification plugin together can forcibly draw attention when a time block is missed, which is particularly useful for ADHD.
Evidence
- A PM user who has used it daily for over 25 days shared 371.6M tokens, a 92% cache hit rate, and actual costs of $259. They stated that in 38 out of 72 sessions, Claude's tool calls were 7 times more frequent than their own messages, emphasizing that 'context beats prompts' as a key insight.
- One user with ADHD pointed out that 'trying to design a perfect system from scratch is an ADHD trap,' and that lowering activation energy is key. If you have to open three apps and connect to an MCP server to see your to-do list, you'll never use it.
- One user shared that separating Notion as the actual storage for to-dos, Zapier/Make as the connection hub for Slack/Outlook, and Claude as the thought/summary layer was the most stable approach. They argued that trying to entrust everything to Claude can actually make things more complex.
- Some people used a method of keeping Claude and Outlook open simultaneously without an MCP server to manage Outlook emails. They created a workflow with Claude to classify emails every morning as 'Respond Now / Can Wait / Awareness / SPAM'.
- There were comments that Claude's built-in memory is unstable when implementing persistent memory. One case involved building an MCP server that stores data in SQLite to solve this, allowing natural language queries of past content without copying context between sessions.
- A person who has been using the MARVIN template for several months strongly recommends 'start with just CLAUDE.md and one state file instead of trying to build everything from the beginning.' They said that adding features one by one was the only way they had maintained it for a long time.
How to Apply
- Open your project folder in the Claude Code terminal and write your role, current work, work style, and key stakeholders in the CLAUDE.md file. Then, create only three files: current.md (this week's priorities), todos.md (to-do list), and state.md (what to focus on today, what's blocked). Start a routine of reading these files and receiving a briefing using your own slash command like '/today' every day.
- If you need Outlook integration, register an app in Azure to get Microsoft Graph API access rights and connect an M365 MCP server found on GitHub to Claude Desktop. Once completed, you can query it in natural language, such as 'Show me emails I haven't replied to today.' If direct construction is difficult, you can start by creating an Outlook → Notion automation with Zapier and asking Claude to read the Notion content.
- If you need an automatic briefing once a day, configure a structure to run Claude headless (`claude -p`) on Cloud Run or a local cron job and receive the results via Telegram. You can start by cloning the MARVIN template (https://github.com/SterlingChin/marvin-template) to immediately reference the basic structure of this pattern.
Code Example
# CLAUDE.md example structure
## My Role
- [Company Name]'s [Job Title], main responsibilities: [Content]
## Current Work
- [Project A]: [Status]
- [Project B]: [Status]
## Key Stakeholders
- [Name]: [Relationship and current situation]
## Working Style
- Prefer short answers, present only 2 options when a decision is needed
- Important things in the morning, processing tasks in the afternoon
## Do Not Do
- Get straight to the point without long introductions
- Don't ask about things that have already been decided
---
# /today slash command example (registered in CLAUDE.md)
Command: /today
Action:
1. Read current.md, todos.md, and state.md
2. Select 3 things to do today
3. Check what was not completed yesterday
4. Summarize one line of risks to be aware ofTerminology
Related Papers
Show HN: adamsreview – better multi-agent PR reviews for Claude Code
Claude Code에서 최대 7개의 병렬 서브 에이전트가 각각 다른 관점으로 PR을 리뷰하고, 자동 수정까지 해주는 오픈소스 플러그인이다. 기존 /review나 CodeRabbit보다 실제 버그를 더 많이 잡는다고 주장하지만 커뮤니티에서는 복잡도와 실효성에 대한 회의론도 나왔다.
How Fast Does Claude, Acting as a User Space IP Stack, Respond to Pings?
Claude Code에게 IP 패킷을 직접 파싱하고 ICMP echo reply를 구성하도록 시켜서 실제로 ping에 응답하게 만든 실험으로, 'Markdown이 곧 코드이고 LLM이 프로세서'라는 아이디어를 네트워크 스택 수준까지 밀어붙인 재미있는 사례다.
Show HN: Git for AI Agents
AI 코딩 에이전트(Claude Code 등)가 수행한 모든 툴 호출을 자동으로 추적하고, 어떤 프롬프트가 어느 코드 줄을 작성했는지 blame까지 가능한 버전 관리 도구다.
Principles for agent-native CLIs
AI 에이전트가 CLI 도구를 더 잘 사용할 수 있도록 설계하는 원칙들을 정리한 글로, 에이전트가 CLI를 도구로 활용하는 빈도가 높아지면서 이 설계 방식이 실용적으로 중요해지고 있다.
Agent-harness-kit scaffolding for multi-agent workflows (MCP, provider-agnostic)
여러 AI 에이전트가 서로 역할을 나눠 협업할 수 있도록 조율하는 scaffolding 도구로, Vite처럼 설정 없이 빠르게 멀티 에이전트 파이프라인을 구성할 수 있다.
Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem
AI 에이전트가 실제 프로덕션 데이터를 건드려도 롤백할 수 있는 격리된 샌드박스 환경을 제공하는 도구로, GitHub/S3/Google Drive를 하나의 버전 관리 파일시스템으로 묶어준다.