{"id":50918104,"url":"https://github.com/doniarobinson/resume-tool","last_synced_at":"2026-06-16T17:04:00.167Z","repository":{"id":359187349,"uuid":"1244831854","full_name":"doniarobinson/resume-tool","owner":"doniarobinson","description":"An AI tool that evaluates the semantic similarity between a résumé and a job posting, then autonomously proposes targeted improvements you can review, refine, and selectively apply.","archived":false,"fork":false,"pushed_at":"2026-05-28T00:46:42.000Z","size":98,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-28T02:22:27.050Z","etag":null,"topics":["artificial-intelligence","fast-api","python","typescript"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/doniarobinson.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-20T16:34:09.000Z","updated_at":"2026-05-28T00:46:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/doniarobinson/resume-tool","commit_stats":null,"previous_names":["doniarobinson/resume-tool"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/doniarobinson/resume-tool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doniarobinson%2Fresume-tool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doniarobinson%2Fresume-tool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doniarobinson%2Fresume-tool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doniarobinson%2Fresume-tool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doniarobinson","download_url":"https://codeload.github.com/doniarobinson/resume-tool/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doniarobinson%2Fresume-tool/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34415248,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["artificial-intelligence","fast-api","python","typescript"],"created_at":"2026-06-16T17:03:59.506Z","updated_at":"2026-06-16T17:04:00.158Z","avatar_url":"https://github.com/doniarobinson.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Job Application Agent\n\nTailor your resume to a job posting: semantic match score, prioritized rewrite suggestions, and DOCX download.\n\n## Stack\n\n- **Frontend:** Next.js 16 (npm) — `frontend/`\n- **Backend:** FastAPI (Python) — `backend/`\n\n## Prerequisites\n\n- Node.js 20+\n- Python 3.11+\n- [Google Gemini API key](https://aistudio.google.com/apikey)\n\n## Setup\n\n### 1. Backend\n\n```bash\ncd backend\npython3 -m venv .venv\n.venv/bin/python -m pip install -r requirements.txt\n\ncp .env.example .env        # then add your GEMINI_API_KEY\n```\n\n\u003e **Do not** run `pip install` or `python3 -m pip install` without the venv — macOS/Homebrew Python returns `externally-managed-environment`. Always use `.venv/bin/python -m pip`.\n\u003e\n\u003e **Cursor note:** You can run the server without `activate`: `.venv/bin/uvicorn app.main:app --reload --port 8000`\n\n### 2. Frontend\n\n```bash\ncd frontend\nnpm install\n```\n\n## Run locally\n\nTerminal 1 — API on port 8000:\n\n```bash\ncd backend\n.venv/bin/uvicorn app.main:app --reload --port 8000\n# Or after: source .venv/bin/activate\n# uvicorn app.main:app --reload --port 8000\n```\n\nTerminal 2 — UI on port 3000 (proxies `/api` to backend):\n\n```bash\ncd frontend\nnpm run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000).\n\n## Usage\n\n1. Upload a **DOCX** resume (PDF not supported in v1).\n2. Paste the full job description.\n3. Review match score and suggestions (high → medium → low).\n4. Check changes to accept, then download the tailored DOCX.\n\n## Limitations (v1)\n\n- DOCX in/out only\n- Basic DOCX structure preserved (headings, paragraphs, bullets); complex layouts may shift\n- Requires Google Gemini API for embeddings and suggestions\n- Job description must be pasted (no URL fetching — avoids server-side request risks)\n\n## Environment variables\n\nSee [.env.example](.env.example).\n\n## Backend tests\n\n```bash\ncd backend\n.venv/bin/python -m pip install -r requirements-dev.txt\n.venv/bin/python -m pytest\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoniarobinson%2Fresume-tool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoniarobinson%2Fresume-tool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoniarobinson%2Fresume-tool/lists"}