drip-agent
v0.1.0
Published
DRIP — autonomous research intelligence from the command line. Company lookups, people enrichment, and web research powered by AgentCash micropayments.
Downloads
95
Maintainers
Readme
drip-agent
Autonomous research intelligence from the command line. Company lookups, people enrichment, and web research — powered by AgentCash micropayments.
Quick Start
# Set up wallet (one-time)
npx drip-agent setup
# Research a company
npx drip-agent research anthropic.com
# Enrich a person
npx drip-agent enrich [email protected]
# Check balance
npx drip-agent balanceInstall
# Use directly with npx (no install needed)
npx drip-agent research coinbase.com
# Or install globally
npm install -g drip-agent
drip-agent research stripe.comCommands
research <query>
Look up company intelligence by domain or name.
drip-agent research anthropic.com
drip-agent research "Coinbase" # auto-resolves to coinbase.com
drip-agent research stripe.com -f json # JSON outputReturns: name, industry, funding, headcount, HQ, tech stack, key links.
Cost: ~$0.05 per lookup
enrich <email|linkedin>
Enrich a person's profile by email or LinkedIn URL.
drip-agent enrich [email protected]
drip-agent enrich https://linkedin.com/in/johndoe
drip-agent enrich [email protected] -f jsonReturns: name, title, company, location, contact info, employment history.
Cost: ~$0.05 per lookup
setup [invite-code]
Set up your AgentCash wallet for paid API access.
drip-agent setup # basic setup
drip-agent setup AC-XXXX-XXXX # with invite code for free creditsbalance
Check your AgentCash wallet balance and deposit link.
drip-agent balanceHow It Works
- You run a command
- DRIP calls StableEnrich via AgentCash
- Payment is automatic — USDC micropayment on Solana
- Results appear in your terminal
No API keys. No subscriptions. Pay per query.
Pricing
| Command | Cost |
|---------|------|
| research | ~$0.05 |
| enrich | ~$0.05 |
Payments settle on success only — failed requests don't cost anything.
Programmatic Usage
import { companyResearch, personEnrich } from "drip-agent";
const company = await companyResearch("anthropic.com");
const person = await personEnrich({ email: "[email protected]" });Requires AgentCash wallet set up locally (npx drip-agent setup).
Links
- Website: drip.surf
- Agent: agent.drip.surf
- Token: $DRIP on PumpFun
Built by DRIP × AgentCash
