The video walks through a real Clay table with email waterfalls, Claygent research, and ICP scoring — the full flow from table → phase 1 doc → scripts → output CSV.
What you need
A Clay table
The table you want to migrate.
Claude Code
Install from claude.ai/code and log in.
Deepline CLI
Runs the enrichment scripts Claude Code generates. Install below.
Install Deepline
Deepline is what runs the enrichment. It wraps providers like LeadMagic, Exa, Instantly, and Claude into a single command.The workflow
Four steps. The first two are in Claude Code. The last two are in your terminal.Step 1 — Capture your Clay table’s network logs
- Open app.clay.com in Chrome and log in
- Open DevTools:
Cmd+Option+Ion Mac, orF12on Windows - Click the Network tab
- Reload the page (or click around in your Clay table to trigger requests)
- In the filter box, type
api.clay.comto show only Clay API calls - Click any request in the list
- Right-click → Copy → Copy as cURL
On Mac it’s “Copy as cURL (bash)”. On Windows it’s “Copy as cURL (cmd)” — either works, the skill strips what it needs.
-b '...' quotes — that’s your session cookie.
Step 2 — Run /clay-to-deepline in Claude Code
Open Claude Code and type:- A Clay table URL (e.g.
app.clay.com/workbooks/xxx/tables/yyy) - A JSON export from the table
- Network logs or HAR file captured from Chrome DevTools
- Table summary — every column, what Clay action it runs, what model, what the output looks like
- Dependency graph — which columns feed into which (execution order at a glance)
- Pass plan — the ordered list of Deepline tool calls that replicate each Clay action
- Prompt templates are recovered verbatim (approximated ones are flagged with ⚠️)
- The pass plan matches what your table actually does
- ICP scoring criteria are correct (the skill can’t invent these)
Step 3 — Run the scripts
Claude Code generates two scripts in ascripts/ folder:
Step 4 — Get your output
Run the normalizer to produce clean CSVs:output/contacts.csv— every person with enriched fields (email, job function, AI-generated research, ICP score)output/accounts.csv— every company with verified name, domain, social links, HQ address, CEO
What you get
The migration produces a self-contained project folder:How Clay actions map to Deepline
The skill handles these automatically — this is just so you know what’s happening:| Clay Action | Deepline Equivalent |
|---|---|
| Claygent web research | 3 parallel Exa searches + Claude Sonnet synthesis |
| chat-gpt-schema-mapper | call_ai haiku — same output, much cheaper |
| octave-qualify-person | call_ai sonnet + json_mode ICP scorer |
| add-lead-to-campaign (Instantly) | instantly_add_to_campaign |
| add-lead-to-campaign (Smartlead) | smartlead_api_request |
Accuracy
From a 26-row production test against Clay ground truth (March 2026):| Metric | Match Rate |
|---|---|
| ≥95% match vs Clay | |
| Job function classification | ≥95% exact match |
| Claygent research (strategy, initiatives) | ~85% specific, actionable content |
onit.com → NASDAQ:ONIT instead of the legal-ops software company).
The skill’s “confidence” label on research rows doesn’t mean what you’d expect. “Low” confidence often has great content — it just means the LLM found blog posts instead of 10-K filings. Judge by whether the content is specific to the company, not by the confidence score.
Cost comparison
From the same 26-row test:| Clay | Deepline | |
|---|---|---|
| Cost per row | $0.13 | ~$0.03 |
| Method | Claygent research, 10 search steps | 3 parallel Exa searches + Claude Sonnet synthesis |
| Time per row | ~134 seconds | ~15 seconds |
Documentation-only path (ClayMate Lite)
If you just want to document a Clay table — understand what it does, map its dependencies, build a reference for the team — you don’t need to run anything.- Install ClayMate Lite from GitHub
- Open your Clay table in Chrome
- Click the extension icon → “Export JSON”
- Drag the downloaded
*.jsonfile into Claude Code - Run
/clay-to-deeplineand ask for Phase 1 docs only
Feedback or issues?
- Email: team@deepline.com
- Slack: Join Terminal Velocity GTM — this is where most of the live migration discussion happens
- Book time to chat or debug