Skip to main content

Personal job-finding automation: fetch, rank, track job postings.

Project description

karyab

kaaryab (Persian کاریاب, "job finder") — personal job-hunting automation for the terminal.

karyab fetches job postings from multiple sources, ranks them against your profile, builds a daily shortlist you can act on, and tracks the applications you submit — nudging you to follow up when a posting goes quiet.

Privacy by design. This repository contains code only. Your personal data — profile, CV, API keys, the application database — never lives in the repo. It lives under your XDG directories (~/.config/karyab, ~/.local/share/karyab). See AGENTS.md and docs/ARCHITECTURE.md.

Requirements

  • Python 3.11+
  • A container runtime for the web UI — podman (recommended) or docker.
  • Optional ranker tooling, depending on the backend you choose: Claude Code, opencode, ollama, or an Anthropic API key. See the in-app Help page for the full per-backend setup.

Install

pipx install karyab

After installing, register the MCP server with your coding agent and read the in-app Help page (/help, linked in the nav) for full ranker-backend and email/LinkedIn-alert setup:

karyab mcp-setup --target claude|opencode|both

Quickstart

karyab setup   # guided onboarding: config, email auth, first fetch
karyab run     # fetch → rank → digest (the daily pipeline)
karyab start   # web UI at http://127.0.0.1:16666

Tip — let an LLM fill your config. The trickiest part is writing good filters (target roles, must-have keywords, source tokens, the ranker profile). Paste config.example.toml into Claude (or any LLM), describe the jobs you want, and have it generate your ~/.config/karyab/config.toml filters and [profile]. With the MCP server registered (karyab mcp register), Claude can also read your unranked jobs and tune the filters as you go.

Commands

Command Description
karyab setup Guided onboarding: init, config, email auth, first fetch
karyab config Create config + secrets from templates; open in $EDITOR
karyab run Fetch → rank → digest (full daily pipeline)
karyab fetch Fetch + normalize + store postings from enabled sources
karyab rank Score stored jobs for fit against your profile
karyab digest Render the daily Markdown shortlist
karyab followups List applications gone quiet (stale by configured threshold)
karyab apply <id> Mark a job as applied
karyab start Build/pull + run the web-UI container
karyab stop Stop the web-UI container
karyab logs Tail the web-UI container logs
karyab email <auth|test|list|fetch|send> Manage email accounts (auth, IMAP test, list, fetch, send)
karyab schedule <install|status|logs|uninstall> Manage the systemd user timer
karyab backup <create|list|restore> Create / list / restore database+config backups
karyab db test Test database integrity and table presence
karyab mcp <run|register> Run the MCP stdio server / register it with Claude Code
karyab update Upgrade karyab via pipx (or print manual guidance)
karyab init Create XDG dirs, copy example config, init database
karyab --version Print installed version

Run karyab <command> --help for per-command options. For grouped commands, run karyab <group> --help (e.g. karyab email --help) for per-group options.

Ranking

Configure under [ranker] in ~/.config/karyab/config.toml. Five backends:

Backend How it works
anthropic Anthropic API (default; requires ANTHROPIC_API_KEY or key in secrets)
ollama Local Ollama instance — fully offline, no API key
manual No autonomous scoring; use karyab mcp register + Claude Code MCP tools to score interactively
claude_cli Shells out to the claude CLI — uses your Claude subscription, no extra key
opencode Shells out to the opencode CLI — requires ANTHROPIC_API_KEY

Manual ranking (no API key, no subscription needed for the ranker itself):

[ranker]
backend = "manual"

Then register the MCP server and score from Claude Code:

karyab mcp register
# In Claude Code: use get_profile, list_unranked_jobs, set_job_rank
karyab digest      # build shortlist from scores you set

Sources

  • ATS public boards: Greenhouse, Lever, Ashby, Teamtailor — direct employer feeds, best signal
  • Aggregators: Adzuna, The Muse, Remotive
  • Remote boards: Remote OK, Arbeitnow, We Work Remotely
  • Email alerts (IMAP): LinkedIn / Indeed job-alert emails via IMAP — no scraping, no ToS risk

No LinkedIn/Indeed scraping. Against their ToS, fragile, account-ban risk. Set up email job-alerts on those sites instead; karyab reads the alert emails.

Microsoft / Outlook email (OAuth2)

[sources.email]
enabled = true
imap_host = "outlook.office365.com"
folder    = "INBOX"
username  = "you@outlook.com"
auth      = "oauth"

Authenticate once:

karyab email auth
# Prints a URL and short code. Open the URL, enter the code.
# Subsequent fetches refresh the token silently.

Scheduling

Install a systemd user timer for daily automation:

karyab schedule install    # enable daily fetch timer
karyab schedule status     # check timer state
karyab schedule logs       # tail the fetch service logs
karyab schedule uninstall  # remove timer

Update

karyab update    # upgrade via pipx, or prints manual guidance if not installed via pipx

Development

git clone https://codeberg.org/maxagahi/karyab
cd karyab
make dev       # create .venv + install dev+runtime deps + git hooks
make test      # run test suite
make lint      # ruff check
make typecheck # mypy src
make check     # pre-commit run --all-files (lint, fmt, type, secret-scan)

CI runs on Forgejo (.forgejo/workflows/). Release: bump the version in pyproject.toml, push a vX.Y.Z tag — the pipeline publishes to PyPI and builds a container image automatically.

Contributing / Agents

AGENTS.md is the contributor + AI-agent manual: project layout, the bot git/PR workflow (Codeberg/Forgejo, not gh), and the privacy rule (no personal data in the repo — gitleaks enforces it).

Any PR that touches code under src/karyab/ must bump the version in pyproject.toml and add a CHANGELOG.md (Unreleased) entry. CI enforces both (verify-version-bump); the same checks run locally at pre-push.

Architecture

 sources ──▶ normalize ──▶ store ──▶ rank ──▶ digest ──▶ you apply
                                                            │
                                                  track ◀───┘
                                                    │
                                            follow-up nudges

Local-first, SQLite-backed pipeline. Each stage has a narrow contract; stages run independently (a timer fetches; you rank and read the digest later). See docs/ARCHITECTURE.md for the full design.

License

Apache-2.0.

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

karyab-9.0.1.tar.gz (369.0 kB view details)

Uploaded Source

Built Distribution

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

karyab-9.0.1-py3-none-any.whl (240.6 kB view details)

Uploaded Python 3

File details

Details for the file karyab-9.0.1.tar.gz.

File metadata

  • Download URL: karyab-9.0.1.tar.gz
  • Upload date:
  • Size: 369.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for karyab-9.0.1.tar.gz
Algorithm Hash digest
SHA256 5aebb97144c6c75af239ccd65b2d798e2a2f7e6471dc13b69d1602f4e499d064
MD5 f8f5ccf148ee60a4a8ce91dfc5b6684a
BLAKE2b-256 2b6110be968840879fa5f95e6266b9cba15b709a7cc8f928d7df33353771e60e

See more details on using hashes here.

File details

Details for the file karyab-9.0.1-py3-none-any.whl.

File metadata

  • Download URL: karyab-9.0.1-py3-none-any.whl
  • Upload date:
  • Size: 240.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for karyab-9.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8edf7a9c346c44d4213fa3433c5d0f39ed0d42d5d39c14511e1636b7a293a2c5
MD5 dd4de9e94615d72af171038b1efc0670
BLAKE2b-256 b107ce4699451cf60c771ef8a7deb1181144df6abf57b50cb03b7d5410387c47

See more details on using hashes here.

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