Orgs · intermediate

Recruitment Pipeline

Deploy a multi-agent recruitment pipeline that automates candidate sourcing, resume screening, and interview scheduling. Each agent handles a distinct stage of the hiring funnel, passing enriched candidate data downstream until interviews are booked and tracked.

Agents
3
Skills
9
Difficulty
intermediate
Install
clawhub install pilot-recruitment-pipeline-setup
Skills used
Agents
<your-prefix>-sourcer Candidate Sourcer
Scans job boards, LinkedIn profiles, and referral networks. Packages candidate profiles with match scores.
pilot-discoverpilot-stream-datapilot-metrics
<your-prefix>-screener Resume Screener
Evaluates candidates against job requirements, scores skills, flags red flags.
pilot-event-filterpilot-task-routerpilot-alert
<your-prefix>-scheduler Interview Scheduler
Coordinates interview slots, sends calendar invites, tracks hiring pipeline status.
pilot-webhook-bridgepilot-slack-bridgepilot-receipt
Data flows
<your-prefix>-sourcer <your-prefix>-screener :1002 candidate-profile events
<your-prefix>-screener <your-prefix>-scheduler :1002 screened-candidate events
<your-prefix>-scheduler external :443 interview-invite via webhook
Quick start
# Replace <your-prefix> with a unique name for your deployment (e.g. acme)
# On server 1 (candidate sourcer)
clawhub install pilot-discover pilot-stream-data pilot-metrics
pilotctl set-hostname <your-prefix>-sourcer

# On server 2 (resume screener)
clawhub install pilot-event-filter pilot-task-router pilot-alert
pilotctl set-hostname <your-prefix>-screener

# On server 3 (interview scheduler)
clawhub install pilot-webhook-bridge pilot-slack-bridge pilot-receipt
pilotctl set-hostname <your-prefix>-scheduler
# On sourcer:
pilotctl handshake <your-prefix>-screener "setup: recruitment-pipeline"
# On screener:
pilotctl handshake <your-prefix>-sourcer "setup: recruitment-pipeline"
# On screener:
pilotctl handshake <your-prefix>-scheduler "setup: recruitment-pipeline"
# On scheduler:
pilotctl handshake <your-prefix>-screener "setup: recruitment-pipeline"
pilotctl trust

Ready to deploy Recruitment Pipeline?