Skip to main content

Local CLI Agent for deterministic multi-round resume matching with Pydantic AI

Project description

SeekTalent

English 简体中文

English

SeekTalent is an experimental local-first resume matching engine. It turns a job description and optional sourcing notes into a deterministic multi-round shortlist using requirement extraction, controlled CTS retrieval, per-resume scoring, reflection, and finalization.

The current product shape is intentionally narrow:

  • the primary product is a local CLI
  • the same runtime can also be imported as a Python dependency
  • a minimal local web UI still exists, but it is secondary

Highlights

  • Installable CLI with stable subcommands: run, init, doctor, version
  • Stable Python entrypoints: run_match(...) and run_match_async(...)
  • Structured run artifacts written under runs/ by default
  • Explicit model configuration using provider:model
  • Real CTS integration with explicit credential requirements

Quick Start

Prerequisites

  • Python 3.12+
  • one supported LLM provider credential
  • CTS credentials for real CTS mode

Install as a CLI

From a local checkout:

uv build
pipx install dist/seektalent-0.2.0-py3-none-any.whl

If you prefer a plain Python environment:

pip install dist/seektalent-0.2.0-py3-none-any.whl

Create a starter env file

seektalent init

Fill the required values in .env

At minimum:

OPENAI_API_KEY=your-openai-key
SEEKTALENT_CTS_TENANT_KEY=your-cts-tenant-key
SEEKTALENT_CTS_TENANT_SECRET=your-cts-tenant-secret

If you keep the default openai-responses:* models, OPENAI_API_KEY is the only provider key you need.

Validate the local setup

seektalent doctor

Run one workflow

seektalent run \
  --jd "Python agent engineer with retrieval and ranking experience" \
  --real-cts

Add notes when you want to inject sourcing preferences or exclusions:

seektalent run \
  --jd "Python agent engineer with retrieval and ranking experience" \
  --notes "Shanghai preferred, avoid pure frontend profiles" \
  --real-cts

Canonical output is human-readable. For wrappers and scripts, use machine output:

seektalent run \
  --jd "Python agent engineer" \
  --notes "Shanghai preferred" \
  --mock-cts \
  --json

Install Paths

Terminal users

Recommended:

pipx install dist/seektalent-0.2.0-py3-none-any.whl

This gives you the seektalent command directly.

Python integrators

pip install dist/seektalent-0.2.0-py3-none-any.whl

Then:

from seektalent import run_match

result = run_match(
    jd="Python agent engineer",
)

print(result.final_markdown)
print(result.run_dir)

CLI

The canonical entrypoint is:

seektalent run --help

Available commands:

  • seektalent run
  • seektalent init
  • seektalent doctor
  • seektalent version

For one compatibility cycle, the legacy alias still works:

seektalent --jd "Python agent engineer" --notes "Shanghai preferred" --mock-cts

Key options on run:

  • --jd or --jd-file for the required job description
  • --notes or --notes-file for optional sourcing preferences
  • --mock-cts or --real-cts
  • --env-file
  • --output-dir
  • --json

The default output root is ./runs relative to the current working directory. Override it per run with:

seektalent run \
  --jd "Python agent engineer" \
  --notes "Shanghai preferred" \
  --mock-cts \
  --output-dir ./outputs

Full CLI reference:

Wrapping SeekTalent

Two supported wrapper patterns are intentionally stable:

Wrap the CLI

Run:

seektalent run --jd "..." --json

Then read the single JSON object from stdout.

Wrap the library

from seektalent import run_match

result = run_match(jd="...", notes="...")
payload = result.final_result.model_dump(mode="json")

Pass notes="..." when you want to add sourcing preferences; omit it when JD alone is enough.

Use this path when you want to build your own API server, desktop shell, or workflow wrapper around the runtime.

Configuration

Environment variables are read from .env by default. You will usually configure:

  • provider credentials such as OPENAI_API_KEY, ANTHROPIC_API_KEY, or GOOGLE_API_KEY
  • CTS settings such as SEEKTALENT_CTS_BASE_URL, SEEKTALENT_CTS_TENANT_KEY, and SEEKTALENT_CTS_TENANT_SECRET
  • runtime settings such as round limits, concurrency, and output directory

Full configuration reference:

Important rules:

  • model variables must use the provider:model format
  • OpenAI-family models require OPENAI_API_KEY
  • anthropic:* requires ANTHROPIC_API_KEY
  • google-gla:* requires GOOGLE_API_KEY

Web UI

The repository still includes a minimal local web UI:

  • backend API: seektalent-ui-api
  • frontend app: apps/web-user-lite
  • default backend port: 8011
  • default frontend port: 5176

Start the backend:

uv run seektalent-ui-api

Start the frontend in another terminal:

cd apps/web-user-lite
pnpm install
pnpm dev

Then open:

http://127.0.0.1:5176

Outputs

Each run creates a timestamped directory under runs/ by default, including files such as:

  • trace.log
  • events.jsonl
  • run_config.json
  • final_candidates.json
  • final_answer.md
  • per-round controller / retrieval / reflection / scoring artifacts

Output reference:

Limits

Current boundaries are intentional:

  • this is an experimental local engine, not a hosted multi-tenant product
  • the web UI is a thin local shim, not a full recruiting platform
  • the CTS adapter is scoped to the fields and semantics implemented in this repository
  • the runtime is built for auditable deterministic control flow, not open-ended autonomous tool use

Docs

Historical versioned design notes remain under docs/v-*.

License

This project is licensed under the GNU Affero General Public License v3.0.

See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

seektalent-0.2.1.tar.gz (54.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

seektalent-0.2.1-py3-none-any.whl (70.0 kB view details)

Uploaded Python 3

File details

Details for the file seektalent-0.2.1.tar.gz.

File metadata

  • Download URL: seektalent-0.2.1.tar.gz
  • Upload date:
  • Size: 54.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for seektalent-0.2.1.tar.gz
Algorithm Hash digest
SHA256 0a02dd6b5e776c65d5953732967f6bb3edfca5325f1ac7f3a0038085ce613643
MD5 3dd7c85a6bd71413539239ae7914c2a0
BLAKE2b-256 2d6850ed7aace7fadd23096ffee775ae49dfc0a5a580e568dbe54beb8426fdbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for seektalent-0.2.1.tar.gz:

Publisher: publish-pypi.yml on FrankQDWang/SeekTalent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seektalent-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: seektalent-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 70.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for seektalent-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6ee44f455b9602e4d9366553127a5cf82bd60263b1487a026add549ec4750966
MD5 12a69bc7de38fb74389d3f78f688eac9
BLAKE2b-256 a67dbaf272289ace718e70fc49afff47e834f0639870413e7df990cbc233a0e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for seektalent-0.2.1-py3-none-any.whl:

Publisher: publish-pypi.yml on FrankQDWang/SeekTalent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page