{"id":30175580,"url":"https://github.com/ashmit-kumar/hireassist","last_synced_at":"2025-08-12T01:39:38.641Z","repository":{"id":308042553,"uuid":"1031335470","full_name":"Ashmit-Kumar/HireAssist","owner":"Ashmit-Kumar","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-03T19:04:45.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-03T20:40:17.514Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/Ashmit-Kumar.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}},"created_at":"2025-08-03T14:25:26.000Z","updated_at":"2025-08-03T19:04:48.000Z","dependencies_parsed_at":"2025-08-10T11:22:33.130Z","dependency_job_id":null,"html_url":"https://github.com/Ashmit-Kumar/HireAssist","commit_stats":null,"previous_names":["ashmit-kumar/hireassist"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Ashmit-Kumar/HireAssist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ashmit-Kumar%2FHireAssist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ashmit-Kumar%2FHireAssist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ashmit-Kumar%2FHireAssist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ashmit-Kumar%2FHireAssist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ashmit-Kumar","download_url":"https://codeload.github.com/Ashmit-Kumar/HireAssist/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ashmit-Kumar%2FHireAssist/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269986738,"owners_count":24508150,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"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":[],"created_at":"2025-08-12T01:39:36.107Z","updated_at":"2025-08-12T01:39:38.626Z","avatar_url":"https://github.com/Ashmit-Kumar.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HireAssist \n\nAn AI-powered browser extension that automates and enhances job applications with intelligent resume optimization, cover letter generation, and application form auto-filling.\n\n## 🚀 Features \n\n- **Smart Auto-Fill**: Automatically detect and fill job application forms\n- **Resume Optimization**: AI-powered resume tailoring for specific job postings\n- **Cover Letter Generation**: Create personalized cover letters instantly\n- **Question Answering**: Get AI-generated answers for application questions\n- **Job Description Parsing**: Extract key requirements from job postings\n- **Multi-Platform Support**: Works with LinkedIn, Indeed, Glassdoor, and more\n\n## 🏗️ Architecture\n\nHireAssist consists of two main components:\n\n1. **Backend API** (Node.js) - Handles AI integration and data processing\n2. **Browser Extension** - Provides user interface and job site integration\n\n## 📦 Installation\n\n### Backend Setup\n\n1. Navigate to the backend directory:\n   ```bash\n   cd backend\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n\n3. Configure environment variables:\n   ```bash\n   cp .env.example .env\n   # Edit .env with your API keys\n   ```\n\n4. Start the development server:\n   ```bash\n   npm run dev\n   ```\n\n### Extension Setup\n\n1. Open Chrome and navigate to `chrome://extensions/`\n2. Enable \"Developer mode\"\n3. Click \"Load unpacked\" and select the `extension` folder\n4. The HireAssist extension should now appear in your toolbar\n\n## 🔧 Configuration\n\n### API Keys Required\n\n- **OpenAI API Key**: For GPT-powered text generation\n- **Google Gemini API Key**: Alternative LLM provider\n- **Hugging Face API Key**: For open-source models\n\n### Extension Settings\n\n1. Click the HireAssist icon in your browser toolbar\n2. Go to the \"Settings\" tab\n3. Configure your backend URL (default: `http://localhost:3000`)\n4. Enable desired features (auto-fill, smart suggestions)\n\n## 📱 Usage\n\n### Setting Up Your Profile\n\n1. Click the HireAssist extension icon\n2. Go to the \"Profile\" tab\n3. Fill in your personal information\n4. Upload your resume (PDF, DOC, or TXT format)\n\n### Using the Extension\n\n1. **Job Description Parsing**: Visit any job posting page and click \"Parse Job Description\"\n2. **Auto-Fill**: On application forms, click the \"Auto-fill with HireAssist\" button\n3. **Answer Generation**: Select any question text and use the AI answer helper\n4. **Quick Actions**: Use the popup for resume optimization and cover letter generation\n\n## 🌐 Supported Job Sites\n\n- LinkedIn Jobs\n- Indeed\n- Glassdoor\n- Workday\n- Greenhouse\n- Lever\n- Generic job sites (auto-detection)\n\n## 🛠️ Development\n\n### Backend Development\n\n```bash\ncd backend\nnpm run dev          # Start development server\nnpm test            # Run tests\nnpm run lint        # Run ESLint\n```\n\n### Extension Development\n\n1. Make changes to extension files\n2. Go to `chrome://extensions/`\n3. Click the reload button for HireAssist\n4. Test your changes\n\n### API Documentation\n\nSee `docs/api-docs.md` for detailed API documentation.\n\n## 📋 Project Structure\n\n```\nHireAssist/\n├── backend/                 # Node.js API server\n│   ├── routes/             # API route handlers\n│   ├── services/           # LLM integration services\n│   ├── utils/              # Utility functions\n│   └── uploads/            # Uploaded resume storage\n├── extension/              # Browser extension\n│   ├── content/            # Content scripts\n│   ├── styles/             # CSS styling\n│   ├── utils/              # Extension utilities\n│   ├── manifest.json       # Extension manifest\n│   ├── popup.html          # Extension popup UI\n│   └── popup.js            # Popup logic\n├── public/                 # Static assets\n├── docs/                   # Documentation\n└── README.md               # This file\n```\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🆘 Support\n\nIf you encounter any issues or have questions:\n\n1. Check the documentation in the `docs/` folder\n2. Open an issue on GitHub\n3. Review the browser console for error messages\n\n## 🔮 Roadmap\n\n- [ ] Add support for more job sites\n- [ ] Implement user authentication\n- [ ] Add analytics and usage tracking\n- [ ] Create mobile app version\n- [ ] Integrate with calendar for interview scheduling\n- [ ] Add salary negotiation assistance\n\n## ⚠️ Disclaimer\n\nHireAssist is designed to assist with job applications. Always review and customize AI-generated content before submitting applications. Ensure all information is accurate and truthful.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashmit-kumar%2Fhireassist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fashmit-kumar%2Fhireassist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashmit-kumar%2Fhireassist/lists"}