
Account Research
OfficialFreeEfficiently gather insights on companies using Common Room data.
Free · Opens the source repo
What Account Research does
Account Research is a skill designed to assist users in retrieving and synthesizing company information using data from Common Room. It supports various interaction patterns, allowing for tailored responses based on user queries. Whether you need a comprehensive overview of a company or specific answers to targeted questions, this skill adapts to your needs. By default, it focuses on the user's segments, ensuring that the information is relevant to their specific context.
The skill operates in a structured manner, beginning with loading the user's profile and segments from Common Room. It then identifies the type of interaction pattern required—ranging from full overviews to concise answers for targeted questions. In cases where data is sparse, the skill acknowledges the limitations of available information without speculation, maintaining a high standard of accuracy. This ensures that users receive honest and clear insights about the accounts they are researching.
For users looking for a deeper analysis, the skill can combine structured data with LLM reasoning. This allows for a more nuanced understanding of how a company fits within the user's ideal customer profile (ICP). By layering in contextual insights, users can make informed decisions based on real data and trends. Additionally, the skill includes a web search feature for cases where Common Room data is insufficient, providing users with the most recent updates about the company from external sources.
Overall, Account Research is ideal for sales professionals, business analysts, and anyone needing to quickly gather and analyze company information. It streamlines the research process, equipping users with the necessary insights to engage effectively with potential clients or partners.
When to use it
Use this skill when you need quick, reliable insights about a company or when preparing for a sales pitch or business analysis.
When not to use it
This skill may not be suitable for in-depth market research or when extensive qualitative analysis beyond the provided data is required.
What you can build with it
Sales Preparation
Before a sales call, use this skill to gather a comprehensive overview of the target company, including key contacts and recent activities.
Market Analysis
When analyzing potential markets, retrieve specific data points about various companies to assess their fit within your ideal customer profile.
Competitive Research
Utilize the skill to quickly gather insights on competitors, including their employee count, industry positioning, and recent developments.
How to install Account Research
View source1. Install with the skills CLI
npx skills add anthropics/knowledge-work-plugins/account-research --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by anthropicsAccount Research
Retrieve and synthesize account information from Common Room. Handles four interaction patterns: full overviews, targeted field questions, sparse data situations, and combined MCP data + LLM reasoning.
Step 0: Load User Context (Me)
Before researching any account, fetch the Me object from Common Room. This provides:
- The user's profile, title, role, and Persona in CR
- The user's segments ("My Segments")
Default all queries to the user's own segments unless the user explicitly asks for a broader view. This keeps results scoped to their territory.
Step 1: Identify the Interaction Pattern
Determine what the user actually needs before deciding how much data to fetch:
Pattern 1 — Full Overview: "Tell me about Datadog" / "Summarize cloudflare.com" → Fetch the full field set and produce a structured briefing.
Pattern 2 — Targeted Question: "Who owns the Snowflake account?" / "Is acme.io showing buying signals?" / "What's the employee count for notion.so?" → Fetch only the relevant field(s). Return a direct, concise answer — do not produce a full brief for a simple question.
Pattern 3 — Sparse Data: "Tell me about tiny-startup.io" → If Common Room has limited data for an account, say so honestly: "There is limited information available for this account." Never speculate or fill gaps with generic statements.
Pattern 4 — Combined Reasoning: Fetch structured MCP data, then layer in LLM analysis — e.g., "Stripe has 8,000 employees and is hiring heavily for AI roles. Based on your ICP of 1k–10k fintech companies, this is a strong fit."
Step 2: Look Up the Account
Search Common Room for the account by domain or company name. Exact match first; if no result, try partial match and confirm with the user before proceeding.
Step 3: Fetch the Right Fields
Use the Common Room object catalog to see available field groups and their contents. For full overviews, request all field groups. For targeted questions, request only what's relevant.
Key field groups to know about:
- Scores — always return as raw values or percentiles, never labels
- Summary research — RoomieAI output; often the richest qualitative signal
- Top contacts — sorted by score desc; use communityMemberID for full lookups
Choosing what to fetch:
| User query type | Fields to request |
|---|---|
| Full account overview | All field groups |
| "Who owns this account?" | Company profiles & links, CRM fields |
| "Is this company a good fit?" | Key fields, scores, about |
| "What signals is this account showing?" | Scores, summary research, CRM fields |
| "Who are the top contacts?" | Top contacts |
| "What does RoomieAI say about them?" | Summary research, all research |
| "Find engineers at this account" | Prospects (with title filter) |
Step 4: Web Search (Sparse Data Only)
Common Room is the primary data source. Do not run web search when CR returns rich data.
When CR data is sparse (Pattern 3 — few fields returned, no activity, no scores), run a targeted web search to fill gaps:
"[company name]" news— scoped to the last 30 days- Look for: funding rounds, acquisitions, product launches, executive changes, press coverage
If the user explicitly asks for external context or recent news, run web search regardless of data richness.
Step 5: Apply Reasoning (Pattern 4)
When the user's question invites synthesis — not just data retrieval — layer in analysis:
- Compare account data to known ICP criteria from session context
- Identify fit signals (size, industry, tech stack, hiring patterns)
- Note timing signals (funding, trial status, recent activity spike)
- Frame insights as clearly derived from data, not assumed
When the user's company context is available (see references/my-company-context.md), position findings relative to the user's value proposition and ICP.
Step 6: Produce Output
Only include sections where Common Room returned actual data. Omit sections entirely rather than filling them with guesses.
Full overview (when data is rich):
## [Company Name] — Account Overview
**Snapshot**
[2–3 sentences: what they do, plan/stage, relationship status]
**Key Details**
[Employee count, industry, location, domain, funding — from key fields]
**CRM & Ownership** [If CRM fields returned]
[Owner, opp stage, ARR]
**Scores** [If scores returned]
[All available scores as raw values or percentiles]
**Signal Highlights** [If activity/signals exist]
[3–5 most important signals with dates]
**Top Contacts** [If contacts returned]
[Name | Title | Score — top 5 sorted by score desc]
**RoomieAI Research** [If summary research is non-null]
[Summary research output; list all available research topic names]
**Recommended Next Steps**
[2–3 specific, signal-backed actions]
Targeted question: 1–3 sentence direct answer. No full brief needed.
Sparse data (few fields returned, most sections would be empty):
## [Company Name] — Account Overview (Limited Data)
**Data available:** [List exactly what Common Room returned]
[Present only the returned fields]
**Web Search**
[Findings from web search — or "No significant recent news found"]
**Note:** Common Room has limited data on this account. The account may need enrichment in Common Room.
Quality Standards
- Scores must always be raw values or percentiles — never categorical labels
- For targeted questions, answer precisely and don't over-deliver
- Be explicit when data is missing or stale — don't speculate
- Keep full briefings readable in 2–3 minutes
- Every fact must trace to a tool call — don't include data not returned by Common Room
Reference Files
references/signals-guide.md— signal type taxonomy and interpretation guide
Frequently asked questions about Account Research
Similar skills
Eyeball
Analyze documents with visual proof.
Last 30 Days Research
Analyze recent community and social trends in 30 days.
Last 30 Days
Research trending discussions across platforms in the last month.
NotebookLM Research Assistant
Query Google NotebookLM for precise, citation-backed answers.
Customer Research
Streamline multi-source customer inquiries with confidence scoring.
Research Router
Streamline your research with a hybrid classification approach.
