Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Look Up A Customer

ASecurity

Give me a customer name and pick what you need: a dossier with their plan, history, and open items; a full timeline of every interaction; a health score (green/yellow/red) with the three signals driving it; or a churn-risk check that tells you if they're slipping and what to do about it. One customer, four angles.

113 stars
0 votes
0 copies
0 views
Added 9/19/2026
businessrustgo

Works with

cli

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add gethouston/houston --skill look-up-a-customer --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Look Up A Customer?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Look Up A Customer
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/gethouston-look-up-a-customer/badge)](https://www.skillsdirectory.com/skills/gethouston-look-up-a-customer)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: look-up-a-customer
description: "Give me a customer name and pick what you need: a dossier with their plan, history, and open items; a full timeline of every interaction; a health score (green/yellow/red) with the three signals driving it; or a churn-risk check that tells you if they're slipping and what to do about it. One customer, four angles."
version: 1
category: Support
featured: no
image: headphone
integrations: [gmail, hubspot, salesforce, attio, stripe]
x_houston:
  created_by: houston
  skill_schema: 1
---


# Look Up a Customer

One skill for every "tell me about this customer" ask support motion need. Branch on `view`.

## When to use

- **dossier**  -  "who is this customer?" / "tell me about {account}" / implicit before `draft-a-reply` run.
- **timeline**  -  "show me the full timeline for {account}" / "history on {customer}" / implicit before `review-my-support scope=account-review` or `draft-a-lifecycle-message type=renewal`.
- **health**  -  "score health for {account}" / "how's {customer} doing" / "run health."
- **churn-risk**  -  "churn risk on {account}" / "scan for churn risk" / "is this customer at risk?"

## Connections I need

I run external work through Composio. Before this skill runs I check that the categories below are linked. Missing → I name the category, ask you to connect it from the Integrations tab, stop.

- **CRM** (HubSpot / Attio / Salesforce)  -  pull plan tier, owner, account record. Required.
- **Billing** (Stripe)  -  pull monthly revenue, plan, renewal date, downgrade signals. Required for `health` and `churn-risk`.
- **Inbox** (Gmail / Outlook)  -  fetch full conversation history for the timeline view. Optional if `conversations.json` already populated.

If none of the required categories are connected I stop and ask you to connect your CRM first.

## Information I need

I read your support context first. For every required field that's missing I ask ONE plain-language question (best modality: connected app > file drop > URL > paste) and wait.

- **Plan tiers + their weights**  -  Required. Why I need it: ranks signals correctly so a P1 customer's churn flag isn't buried. If missing I ask: "What plans do you sell, and which ones count as your top tier?"
- **Where conversation history lives**  -  Required. Why I need it: I need to pull the full account timeline. If missing I ask: "Which inbox or help-desk holds your customer threads  -  want me to pull from a connected one or should you drop a recent export?"
- **What 'at-risk' looks like for you**  -  Required for `health` / `churn-risk`. Why I need it: thresholds for GREEN / YELLOW / RED come from your operating definition, not mine. If missing I ask: "What signals tell you a customer's about to churn  -  drop in usage, support ticket spike, cancellation language, something else?"

## Parameter: `view`

- `dossier`  -  profile + plan + monthly revenue (via connected Stripe) + open bug-candidates + open followups + last 3 conversations. Writes to `dossiers/{slug}.md`.
- `timeline`  -  chronological rollup of every interaction (ticket, call, purchase, plan change, satisfaction score). Writes to `timelines/{slug}.md`.
- `health`  -  GREEN / YELLOW / RED with 3 driving signals, reasoning, ONE recommended action. Writes entry to `health-scores.json` (and prose version at `dossiers/{slug}-health.md` if I ask).
- `churn-risk`  -  open risk flag with signal (cancellation language, repeated friction, usage cliff), severity, recommended action. Writes entry to `churn-flags.json`.

## Steps
<!-- houston-workflow:v1 -->

1. **Resolve `{account}` or `{slug}`.** Gave customer name? Look up in `customers.json` by name / email / domain. No match? Ask for CRM identifier (HubSpot / Attio / Salesforce via Composio) or paste profile.
2. **Read `config/context-ledger.json`.** Fill gaps.
3. **Branch on `view`:**
   - `dossier`: read CRM record + `customers.json` + filter `conversations.json` to this customer + check `bug-candidates.json`, `followups.json`, `churn-flags.json`. Pull monthly revenue / plan from connected Stripe. Write `dossiers/{slug}.md`.
   - `timeline`: same reads as `dossier` but also pull every conversation, plan change, invoice, satisfaction score from connected Stripe + CRM. Sort chronologically. Write `timelines/{slug}.md`.
   - `health`: compute 3 signals (e.g. last-30-day ticket volume, recent product-usage trend via PostHog, sentiment of last 3 interactions). Apply thresholds from `domains.success.churnSignals` (ask me to define if unset). Output GREEN / YELLOW / RED + one action. Write to `health-scores.json` (read-merge-write).
   - `churn-risk`: scan last 60 days of conversations for cancellation language, 2+ frustration signals, or usage cliff. Found? Write new entry to `churn-flags.json` with signal + severity + recommended next move.
4. **Append to `outputs.json`** with appropriate `type`: `dossier` | `timeline` | `health-score` | `churn-risk`, `domain: "inbox"`, title, summary, path.
5. **Summarize to me** terse: headline (plan + status) + single most useful next move.

## Outputs

- `dossiers/{slug}.md` (for `view = dossier`)
- `timelines/{slug}.md` (for `view = timeline`)
- `health-scores.json` entry (for `view = health`)
- `churn-flags.json` entry (for `view = churn-risk`)
- Appends to `outputs.json` with `domain: "inbox"`.

## What I never do

- Surface health score or churn flag I can't ground in data from `conversations.json`, Stripe, or CRM  -  mark UNKNOWN and ask.
- Invent plan / monthly revenue / usage numbers when connection missing.

Attribution

gethoustongethouston
View sourceMore from gethouston →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Solution Architect

Designs system architecture, component specifications, and technical integration strategy. Use when: designing solutions, system architecture, technology stack, or integration approaches.

192 votes

Akorchak:Venture Assessment

Generate a comprehensive VC investment assessment report for a company

72 votes

Stock Analysis

Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management (create, add, remove assets), crypto analysis (Top 20 by market cap), and periodic performance reports (daily/weekly/monthly/quarterly/yearly). 8 analysis dimensions for stocks, 3 for crypto. Use for stock analysis, portfolio tracking, earnings reactions, or crypto monitoring.

6511 votes

Just Fucking Cancel

Find and cancel unwanted subscriptions by analyzing bank transactions. Detects recurring charges, calculates annual waste, and helps you cancel with direct URLs and browser automation. Use when: 'cancel subscriptions', 'audit subscriptions', 'find recurring charges', 'what am I paying for', 'save money', 'subscription cleanup', 'stop wasting money'. Supports CSV import (Apple Card, Chase, Amex, Citi, Bank of America, Capital One, Mint, Copilot) OR Plaid API for automatic transaction pull. Out...

6511 votes

Telegram Compose

Compose rich, readable Telegram messages using HTML formatting via direct Telegram API. Use when: (1) Sending any Telegram message beyond a simple one-line reply, (2) Creating structured messages with sections, lists, or status updates, (3) Need formatting unavailable via Clawdbot's Markdown conversion (underline, spoilers, expandable blockquotes, user mentions by ID), (4) Sending alerts, reports, summaries, or notifications to Telegram, (5) Want professional, scannable message formatting wit...

6511 votes
View all in business →