Skip to content

CRM Tools

Atlas includes a lightweight CRM built right into your vault. People, organizations, and the relationships between them are stored as markdown files in atlas/network/. The CRM tools let Atlas look up contacts and organizations during a conversation — so you can ask about someone and get the full context Atlas has on them.

Lists all the people stored in your CRM, optionally filtered by a tag.

Key parameters:

  • filter — filter by tag (e.g., colleague, client, investor). Leave empty to list everyone.

Try saying:

  • “Who are my contacts?”
  • “Show me everyone in my network”
  • “List all my clients”
  • “Who do I have tagged as an investor?”
  • “Show me all my colleagues”

The result includes each person’s name, their primary organization, and any tags you’ve assigned them.


Lists all the organizations in your CRM.

Try saying:

  • “What companies are in my network?”
  • “Show me my organizations”
  • “List all the companies I’ve added”

Retrieves the full details for a specific person — their contact info, notes, related organizations, relationships, and any topics you’ve linked them to.

Key parameters:

  • id — the person’s ID (Atlas looks this up from your CRM index)

Atlas will usually call list_people first to find the right person, then call get_person to pull up their details.

Try saying:

  • “Tell me about Sarah Chen”
  • “What do I know about Marcus Rivera?”
  • “What’s Jennifer Walsh’s background and how do I know her?”
  • “Pull up my notes on David Park”
  • “Who is Tom Bradley and what projects are we working on together?”

A person record might include:

  • Name, role, and organization
  • Contact details (email, phone, LinkedIn)
  • Relationship notes (how you know them, last contacted)
  • Topics they’re connected to
  • Your notes about them

Retrieves the full details for a specific organization — its description, members you’ve linked to it, and any notes you’ve added.

Key parameters:

  • id — the organization’s ID

Try saying:

  • “Tell me about Vertex Labs”
  • “What do I know about CloudScale Inc?”
  • “Who at Sequoia Capital have I met?”
  • “What’s my relationship with that healthcare company?”

The more context you add to your contact records in the Network tab, the richer Atlas’s answers will be. A few tips:

  • Add relationship notes — “Met at ProductCon 2024, introduced by Emily” gives Atlas useful context for conversations
  • Use tags consistently — tags like client, advisor, colleague, friend make filtering much more useful
  • Link people to topics — connecting a contact to a topic like “AI Research” or “Fundraising” helps Atlas surface them in relevant conversations
  • Keep organizations up to date — when someone changes companies, update their record so Atlas doesn’t reference outdated info

CRM data lives in your vault under atlas/network/:

atlas/network/
├── people/
│ ├── index.json # Contact index for fast lookups
│ └── {id}.md # Individual person records
├── organizations/
│ └── {id}.md # Individual organization records
└── topics/
└── {id}.md # Topic records

You can open and read these files directly. Person records are markdown with YAML frontmatter for structured fields and free-form notes in the body.


Next: Calendar and Weather Tools