CLI

Find anyone with agents.

Right from your terminal.

Same commands, any environment.

Plug Ploid into your shell, your scripts, and your stack anywhere.

ploid — search
$ploid agent chat --query "DevTools founders in SF" --json
{"type":"subagent","angleId":"funding","status":"running"}
{"type":"subagent","angleId":"oss","status":"running"}
{"type":"final","text":"Found 38 strong matches."}
$ ploid people enrich --fields work_email,phone,linkedin --json
› enriching 142 records…
✓ 138 verified · 4 partial · streaming JSON
{
  "name": "Maya Reyes",
  "title": "VP of Sales",
  "work_email": "maya@arclight.io",
  "confidence": 0.98
}

Pipe results into anything.

Typed JSON in, typed JSON out. Compose with jq, cron, and your tools.

ploid — pipe
$ploid searches create --query "AI founders in SF" --count 100 --json --wait
✓ 64 people · peopleset_abc123
# enrich the set, pipe through jq
$ ploid searches export peopleset_abc123 --format json \
  | jq '.[] | select(.confidence > 0.9)' \
  | ploid batch create --file - --fields work_email
✓ enriched 61 profiles
# schedule a daily refresh
$ ploid monitors create --people-set-id peopleset_abc123 --interval-days 7
✓ monitor registered · next run in 7d

Try Ploid CLI.