An elite-level Talent Intelligence Agent skill and plugin designed for Gemini Enterprise App, Antigravity, and other LLM agent ecosystems. Sourcing, verifying, and profiling executive leadership from public data sources into standardized, C-suite ready reports.
Developed for high-visibility leadership benchmarking, executive talent acquisition, and Quarterly Business Reviews (QBRs), this skill transforms conversational requests into structured, verifiable executive intelligence tables.
βββββββββββββββββββββββββββββββββ
β User Prompt / Query β
β ("Top 5 Healthcare CIOs") β
ββββββββββββββββ¬βββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββ
β Talent Search SKILL.md β
β - Role & Scope Extraction β
β - Multi-Angle Dork Strategy β
ββββββββββββββββ¬βββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββ
β Public Data Sourcing β
β - Leadership Bios β
β - Press Releases β
β - SEC DEF 14A Proxy Filings β
β - Industry Keynotes & Panels β
ββββββββββββββββ¬βββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββ
β Standard Executive Table β
β - 7 Mandatory Columns β
β - Verified Public Source URLsβ
β - Zero Conversational Filler β
βββββββββββββββββββββββββββββββββ
talent-search-skill/
βββ SKILL.md # Main Skill definition with YAML frontmatter & instructions
βββ plugin.json # Plugin manifest for Antigravity / Gemini Plugin framework
βββ pyproject.toml # Python project packaging specification
βββ requirements.txt # Python dependencies
βββ assets/ # Visual assets and demo screenshots
β βββ talent_search_demo.jpg
βββ scripts/ # Python CLI engines and automation tools
β βββ __init__.py
β βββ talent_search.py # Sourcing engine, search strategy generator & exporter
β βββ validate_output.py # Strict table schema & constraints validator
β βββ generate_prompts.py # Tailored prompt generator for various scenarios
βββ references/ # Reference manuals & search documentation
β βββ search_strategies.md # Boolean dorking cheat sheet & source directory
β βββ table_schema.md # 7-column schema definitions & rules
β βββ sample_prompts.md # Curated, copy-pasteable prompt templates
βββ examples/ # Real-world outputs across formats
β βββ sample_healthcare_cio_output.md
β βββ sample_healthcare_cio_output.json
β βββ sample_healthcare_cio_output.csv
β βββ sample_chief_actuary_output.md
β βββ sample_chief_actuary_output.json
β βββ sample_chief_actuary_output.csv
βββ tests/ # Automated unit tests
βββ __init__.py
βββ test_talent_search.py
βββ test_validator.py
βββ test_generate_prompts.py
Place this directory in your agent's customization root or skills folder:
- Workspace Skills Root:
_agents/skills/talent-search/orskills/talent-search/ - Global Config:
~/.gemini/config/skills/talent-search/ - Plugin Manifest: Enable via
plugin.json.
When the user requests executive sourcing (e.g., "Find 5 Chief Actuaries in health insurance"), the agent activates the skill instructions and adheres strictly to the 7-column format.
All Python scripts use the standard library with optional enhancements.
# Generate targeted Boolean search dorks for web search
python3 scripts/talent_search.py --role "Chief Actuary" --industry "Health Insurance" --generate-queries-only
# Generate and export a Markdown table (using realistic curated data for demo/testing)
python3 scripts/talent_search.py --sample --role "Chief Information Officer" --industry "Healthcare" --count 5 --output report.md
# Export directly to JSON or CSV for analytics pipelines
python3 scripts/talent_search.py --sample --role "Chief Information Officer" --format json --output report.json
python3 scripts/talent_search.py --sample --role "Chief Information Officer" --format csv --output report.csv# Validate that a report strictly complies with the 7-column schema and has no conversational filler
python3 scripts/validate_output.py --input report.md --min-candidates 5 --strict# View available pre-built prompt scenarios
python3 scripts/generate_prompts.py --list-presets
# Generate a tailored prompt for a Healthcare CIO search
python3 scripts/generate_prompts.py --preset healthcare_cioAll outputs conform strictly to the following 7-column structure:
| # | Full Name | Current Position | Current Company | Relevant Background & Prior Experience | Key Expertise & Notable Achievements | Public Source URL |
|---|---|---|---|---|---|---|
| 1 | Jane Doe, MD, MS, MBA | Chief Digital & Information Officer (CDIO) | Apex Health System | Former VP of Clinical Informatics at Metro Health; 20+ years in healthcare IT leadership. MD from State Medical University, MS Healthcare Informatics. | Enterprise cloud EHR modernization (Epic on Azure), clinical generative AI copilots, pediatric digital health transformation, and HITRUST cybersecurity. | Apex Health Leadership |
| 2 | Alex Morgan, MS | EVP, Chief Transformation & Digital Officer | Horizon Healthcare | Former Chief Digital Officer at Enterprise Logistics Corp; MS in Computer Science. Recognized healthcare digital innovation leader. | AI-powered patient triage systems, conversational AI in patient engagement, enterprise virtual care networks, and digital medicine ecosystem scaling. | Horizon Executive Team |
| 3 | Jordan Taylor | Executive Vice President & Chief Information Officer | Summit Health Network | 25-year technology veteran; led multi-region cloud migrations across large healthcare enterprise workloads. BS in Business Information Systems. | Multi-hospital EHR consolidation, large-scale healthcare cloud deployment, clinical ambient voice documentation rollout, and IT cost optimization. | Summit Health Leadership |
| 4 | Morgan Lee, MS, FASHP | Chief Information Officer & SVP | Vanguard Academic Medical Center | 30+ years in healthcare informatics and clinical operations; Fellow of Health-System Pharmacists. MS in Health Informatics. | Academic medical center digital transformation, federated clinical data registries, predictive sepsis analytics, and clinical research IT enablement. | Vanguard Leadership |
| 5 | Taylor Reed, MBA, FACHE | Chief Digital & Information Officer | Integrated Health Partners | Former CDIO at Regional Health System and SVP & CIO at National Health Alliance. CHIME-HIMSS Healthcare Leadership recognition. | AI governance frameworks in health systems, integrated telehealth platforms, enterprise ERP/EHR merger integrations, and digital workforce enablement. | Integrated Health Leadership |
"Identify and profile 5 Chief Information Officers (CIOs) or Chief Digital Officers (CDOs) at major US health systems who are actively deploying generative AI or large-scale cloud modernization. Output strictly as the standardized 7-column Markdown table with public source URLs."
"Source and profile 5 Chief Actuaries at major US health plans (e.g., Elevance Health, Centene, Cigna, Humana, Oscar Health) with deep expertise in Medicare Advantage risk adjustment and predictive claims modeling. Provide only the Markdown table."
To preserve maximum research depth and prevent output truncation, break searches into focused cohorts:
- Batch 1: 5 CIOs from top Academic Medical Centers
- Batch 2: 5 CIOs from Regional Integrated Delivery Networks (IDNs)
- Batch 3: 5 CIOs from Specialized Pediatric / Cancer Centers
- Batch 4: 5 CIOs from Tech-Forward Community Health Systems
To run the automated test suite:
python3 -m unittest discover -s tests -vOutput:
test_custom_prompt_generation ... ok
test_presets_exist ... ok
test_candidate_to_markdown_row ... ok
test_candidate_validation_failure ... ok
test_candidate_validation_success ... ok
test_json_and_csv_export ... ok
test_render_and_parse_markdown_table ... ok
test_search_strategy_generation ... ok
test_invalid_url_fails ... ok
test_missing_candidate_count ... ok
test_strict_mode_catches_filler ... ok
test_valid_table_passes ... ok
----------------------------------------------------------------------
Ran 12 tests in 0.004s
OK
- Public Information Only: All candidate data is sourced strictly from publicly available websites, official corporate directories, SEC filings, and news releases.
- Privacy Standards: No private contact details (personal phone numbers, residential addresses, private emails) are ever harvested or output.
- Citation Integrity: Every entry requires an active, verifiable public link.
This project is licensed under the Apache License, Version 2.0 - see the LICENSE file for full terms and conditions.
