"How I Assembled an HR Playbook": The AI Agent That Cut Candidate Search to 10 Minutes

Imagine typing a request into your computer and, ten minutes later, receiving a shortlist of qualified candidates who have already been pre-screened, scored, and contacted. That's exactly what one developer claims to have achieved after building a custom "HR Playbook" for an AI agent. According to a recent Habr article, this approach reduced candidate search in a talent reserve from two weeks to just ten minutes. Source

This story is turning heads in both HR and tech circles. It's not about replacing recruiters—it's about giving them the ultimate assistant. By encoding recruitment expertise into a structured playbook, the author shows how generative AI can transform a messy talent database into a responsive, always-on source of candidates. In this article, we'll break down the concept, the likely technical steps, and how you can apply the same logic to your own processes.

The Silent Crisis: Why Talent Pools Fail

Talent pools are a double-edged sword. On one hand, they hold the accumulated interest of past applicants, referrals, and event attendees—people who already know your company and may be willing to consider a future role. On the other hand, they are often neglected because manual searching through hundreds of stale resumes is brutally slow.

According to LinkedIn's Global Talent Trends report, 70% of the global workforce consists of passive talent—people who aren't actively applying but are open to new opportunities. This is a massive reservoir of potential hires that most recruiters only scratch the surface of. The problem isn't the candidates; it's the method. Traditional Boolean searches in an ATS require knowing exactly what to look for, and even then, you end up with results that are either too broad or too narrow. The manual effort—reading resumes, cross-checking skills, sending initial emails—takes weeks, especially when you're filling a niche role.

That's where an AI agent changes the game. But a generic chatbot isn't enough. It needs a playbook.

What Is an HR Playbook for an AI Agent?

A playbook, in this context, is a structured set of instructions, prompts, and decision rules that enable an AI agent to perform a complex task autonomously. It's a recipe that turns a general-purpose language model into a specialized recruiter. The AI knows what to look for, how to evaluate candidates, what to ask them, and when to escalate to a human.

The word "playbook" comes from sports—a collection of plays designed to achieve specific outcomes. In business, it's a codified strategy. In the HR world, it means translating your recruiter's expertise into a format the AI can execute at superhuman speed.

Here's the key insight: the AI agent's power doesn't come from the large language model alone; it comes from the structure you provide. Without a playbook, the AI gives generic answers. With a well-designed playbook, it acts like a senior recruiter who never sleeps.

The Anatomy of an Effective HR Playbook

While the original Habr article doesn't publish the full source code, we can reverse-engineer the typical components from best practices and the author's stated results. A successful HR Playbook for AI candidate search usually includes these modules:

Module Purpose Example
Candidate Persona Define the ideal profile 5+ years in Python, experience with FastAPI, remote-friendly, salary range $70-90k
Search Strategy List of queries and filters Boolean strings: ("python" OR "django") AND ("remote" OR "distributed") NOT ("junior")
Scoring Rubric Weighted evaluation criteria Skills 40%, Experience 30%, Soft Skills 20%, Education 10%
Outreach Templates Personalized first messages "Hi {name}, I noticed your profile on {platform}. We're looking for a {role} and your experience with {skill} stands out."
Follow-up Logic When and how to re-engage If no reply in 3 days, send a gentle reminder; after 7 days, mark as dormant
Escalation Rules When to involve a human A candidate with a score over 85% must be reviewed by a recruiter within 24 hours

This modular approach lets you constantly refine individual parts without restarting the whole system. For example, if you find the scoring rubric overemphasizes a skill, you can adjust the weights and re-run the search in minutes.

How to Build Your Own: A Step-by-Step Blueprint

If you want to replicate the author's success, you don't need a huge engineering team. Here's a practical pathway:

  1. Choose your AI engine. Most people start with a large language model API like GPT-4 or Claude. These are accessible and have enough reasoning ability to handle complex instructions.

  2. Centralize your candidate data. You need a structured database. If your ATS doesn't offer APIs, export the data to a CSV or use a tool like Airtable. The AI can then query it using SQL or natural language.

  3. Draft the playbook. Write out the candidate persona, scoring rubric, and outreach templates. Keep the language precise. For example, instead of "good communication skills," write "has published technical articles or speaks at meetups."

  4. Connect the AI to your communication channels. You can use Telegram or Slack for alerts and approval workflows. For instance, you can ask the AI to send a summary of top candidates to your Telegram every morning.

  5. Test on a small batch. Run the playbook on a sample of 20-30 candidates. Check if the scoring aligns with your intuition. Adjust the playbook based on the results.

  6. Automate the loop. Once the playbook is refined, let the AI run it autonomously. Monitor its actions and make tweaks as needed.

Integration Example: If you use Telegram to manage your hiring pipeline, the AI agent can send a candidate summary to your phone. ASI Biont supports connecting to Telegram via API — more at asibiont.com/courses.

Results: Two Weeks to Ten Minutes

The headline number—10 minutes versus 2 weeks—isn't just about speed. It's about consistency and coverage. The author likely achieved several improvements:

  • Speed: The AI can scan hundreds of profiles in minutes, whereas a human might struggle to get through 50 in a day.
  • Completeness: The playbook ensures no candidate is skipped. Even if someone has an unusual resume format, the AI can parse and evaluate it.
  • Consistency: Every candidate is scored using the same rubric, reducing unconscious bias.
  • Scalability: Once the playbook is built, it can be reused for every new opening, with minor adjustments to the persona.

Let's compare traditional versus AI-assisted search:

Aspect Traditional Search AI-Powered Playbook
Time to generate shortlist 1-2 weeks 5-10 minutes
Number of candidates screened 50-100 500-1000+
Scoring consistency Subjective, varies Objective, codified
Initial outreach Manual, time-consuming Automated, personalized
Human involvement Every step Only for final interviews

Of course, these numbers depend on the database size and the quality of the playbook. But the order of magnitude is realistic.

Challenges and Ethical Considerations

No tool is perfect, and the Habr author likely encountered several hurdles. It's important to know them before diving in.

Data quality is the #1 bottleneck. AI struggles with messy resumes. If your talent pool is full of PDFs with inconsistent formatting, you'll need a preprocessing step to convert them to plain text and extract key fields. The article probably mentions spending time on data cleaning.

Context fatigue. Large language models have a limited context window. If the playbook is too long or the candidate profiles are too verbose, the AI may lose track of earlier instructions. The solution is to modularize the playbook into smaller, focused prompts.

Legal and ethical risks. In many jurisdictions, automated hiring decisions are subject to regulations such as the EU AI Act or local anti-discrimination laws. The playbook must be designed to avoid biased outcomes. That means avoiding demographic proxies and ensuring human oversight for final decisions. The author likely emphasizes that the AI is a tool, not the final arbiter.

False positives and negatives. An AI might recommend a candidate who looks great on paper but lacks cultural fit, or it might miss a hidden gem because the resume doesn't match the exact keywords. This is why the scoring rubric needs soft skills and serendipity.

Is This Replicable? An Expert's Perspective

From a technical standpoint, the concept is absolutely replicable. Many HR teams already use AI for resume screening, but they often treat it as a black box. The playbook approach brings transparency—you know exactly why a candidate was selected because you designed the rules.

The main barrier is not technical but organizational. Recruiters need to codify their intuition, which is harder than it sounds. A senior recruiter might say, "I just know when a candidate is right," but turning that into weighted criteria requires introspection and collaboration.

However, the reward is worth it. Not only does the AI save time, but it also stores your recruitment expertise within the company. If a key recruiter leaves, their knowledge remains in the playbook. This is a form of institutional memory that many organizations overlook.

Key Takeaways

  • A structured HR playbook turns a general AI agent into a specialized recruitment assistant.
  • Start small: pick one role, build a playbook, test it, and refine it.
  • Invest in data quality before automation. The AI's output is only as good as the candidate data it processes.
  • Keep a human in the loop for final decisions to ensure fairness and cultural fit.
  • Use communication tools like Telegram or Slack to integrate the AI into your daily workflow.

Conclusion

The Habr case study is more than a clever hack—it's a glimpse into the future of recruitment. By spending time creating an HR playbook, the author turned a neglected talent pool into a dynamic, efficient source of candidates. The 99% reduction in search time might not be universal, but the methodology is sound and adaptable.

Whether you're an HR professional tired of manual searches or a developer looking for a fun AI project, the playbook concept is worth exploring. Start by documenting your own recruitment criteria. Convert that into a structured format. Then let an AI agent do the heavy lifting. You might not go from two weeks to ten minutes overnight, but you'll never want to go back to manual search again.

Have you experimented with AI agents in your hiring process? Share your thoughts in the comments below!

← All posts

Comments