{"id":47612067,"url":"https://github.com/codernotme/hireme","last_synced_at":"2026-04-01T20:32:55.107Z","repository":{"id":337975791,"uuid":"1156020537","full_name":"codernotme/hireme","owner":"codernotme","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-12T12:06:22.000Z","size":154,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-12T16:51:35.667Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codernotme.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-02-12T06:57:24.000Z","updated_at":"2026-02-12T12:06:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/codernotme/hireme","commit_stats":null,"previous_names":["codernotme/hireme"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/codernotme/hireme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codernotme%2Fhireme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codernotme%2Fhireme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codernotme%2Fhireme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codernotme%2Fhireme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codernotme","download_url":"https://codeload.github.com/codernotme/hireme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codernotme%2Fhireme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291678,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-04-01T20:32:54.373Z","updated_at":"2026-04-01T20:32:55.062Z","avatar_url":"https://github.com/codernotme.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HireMe\n\nAutomated outreach and job-application platform focused on LinkedIn-style messaging, cold email, and multi-platform applications. The AI model runs locally via Ollama to keep data on-device.\n\n## Overview\n\nHireMe orchestrates:\n\n- Discovery of roles and companies.\n- Personalized message and email drafting.\n- Multi-channel outreach (LinkedIn, X, Gmail).\n- Application submissions on platforms like Unstop and others.\n- Local LLM inference with Ollama.\n\nThe goal is to streamline high-volume, compliant outreach while preserving personalization and user control.\n\n## Key Features\n\n- Multi-platform outreach queue with per-channel rate limits.\n- Draft-first workflow (review, edit, approve before sending).\n- Local LLM via Ollama for personalization and privacy.\n- Contact and campaign management.\n- Application tracking and status updates.\n- Template library with A/B variants.\n- Audit log for every send and submission.\n\n## Tech Stack\n\n- Next.js (App Router)\n- TypeScript\n- HeroUI\n- Tailwind CSS\n- Ollama (local inference)\n\n## Architecture (Planned)\n\n- Web app for workflow, approvals, and status dashboards.\n- Background worker for queue processing and platform automations.\n- Data store for contacts, campaigns, and activity logs.\n- Provider adapters for each platform (LinkedIn, X, Gmail, Unstop, etc.).\n\n## Local Development\n\n```bash\nnpm install\nnpm run dev\n```\n\n## Deploy (local-first)\n\nDeploy on a single machine with **data and LLM on localhost**: no cloud database, no external API for AI. Everything runs in Docker on your host.\n\n```bash\n# Build and run app + Ollama; data in Docker volumes\ndocker compose up -d\n\n# Pull an Ollama model (one-time)\ndocker compose exec ollama ollama pull llama3.2\n```\n\nThe first `docker compose up -d` (or `docker compose build`) needs network access to install dependencies and pull images.\n\n- **App**: http://localhost:3000  \n- **Ollama**: inside the `ollama` service (app uses `OLLAMA_BASE_URL=http://ollama:11434`)  \n- **Data**: `bot` config, uploads, and logs are in Docker volumes (`bot_config`, `bot_uploads`, `bot_logs`); no data leaves the host.\n\nConfig is created via the **Onboarding** UI and stored in the `bot_config` volume. Optional: copy `env.docker.example` to `.env` and override variables (e.g. `OLLAMA_BASE_URL` if Ollama runs on the host: `http://host.docker.internal:11434`).\n\n## Local Bot Wiring\n\nHireMe connects the Next.js UI to the Python automation bot via `/api/bot`. Copy `.env.example` to `.env.local` and adjust paths if needed:\n\n```bash\ncp .env.example .env.local\n```\n\nKey environment variables:\n\n- `OLLAMA_BASE_URL` - local Ollama server URL\n- `BOT_WORKDIR` - path to the Python bot folder\n- `BOT_PYTHON_PATH` - Python executable\n- `BOT_CONFIG_PATH` - bot config file path\n\n## Configuration (Draft)\n\nThis project will use environment variables for provider credentials and feature flags.\n\n```bash\n# Example only\nOLLAMA_BASE_URL=http://localhost:11434\n```\n\n## Usage (Planned)\n\n1. Import contacts and target roles.\n2. Configure outreach templates and approval rules.\n3. Generate drafts with Ollama and review.\n4. Send approved messages and emails.\n5. Track responses and application status.\n\n## Safety, Compliance, and Ethics\n\nThis project is intended for responsible outreach. You are responsible for compliance with platform terms, spam laws, and privacy regulations. Use opt-in, rate limits, and human review where required.\n\n## Roadmap\n\n- Provider adapters and secure credential storage.\n- Campaign scheduling with throttling.\n- Auto follow-up sequences with guardrails.\n- Analytics dashboard for response rates.\n- Import/export for CRM tools.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodernotme%2Fhireme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodernotme%2Fhireme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodernotme%2Fhireme/lists"}