Personal CRM with Automatic Contact Discovery - 个人 CRM
自动构建和维护个人 CRM — 每天扫描邮件和日历发现新联系人,跟踪互动历史。
openclawai-agentscrmproductivitycontacts
Personal CRM with Automatic Contact Discovery
自动构建和维护个人 CRM — 每天扫描邮件和日历发现新联系人,跟踪互动历史。
解决什么问题
跟踪你见过谁、什么时候见的、讨论过什么 — 手动记录几乎不可能坚持。重要的跟进总是遗漏。
功能特点
- 每日 cron 扫描:扫描邮件和日历,发现新联系人和互动
- 结构化存储:联系人存储在带关系上下文的数据库中
- 自然语言查询:“关于 [人] 你知道什么?”、“谁需要跟进?”
- 每日会议准备简报:研究外部参会者,交付简报
如何设置
第一步:安装 gog CLI
brew install filip sosic/gog/gog # macOS
gog auth login # 授权 Google
第二步:创建 CRM 数据库
CREATE TABLE contacts (
name TEXT,
email TEXT,
company TEXT,
last_contact TEXT,
interaction_count INTEGER DEFAULT 0,
source TEXT
);
CREATE TABLE interactions (
contact_id INTEGER,
type TEXT, -- email, meeting, call
date TEXT,
summary TEXT
);
第三步:配置 Agent
Run a daily cron job at 6 AM to:
1. Scan my Gmail and Calendar for past 24 hours
2. Extract new contacts and log interactions
Every morning at 7 AM:
1. Check today's calendar for meetings
2. Deliver a briefing to Telegram with who they are, when we last spoke
成本估算
| 组件 | 成本 |
|---|---|
| gog CLI | 免费 |
| SQLite | 免费 |
| LLM 处理 | $2-5/月 |
相关链接
- [gog CLI](https://github.com/filip Sosic/gog)