agentic-career-search

作者 Francis1998已验证

Autonomous AI-agent orchestration engine for job discovery with decision traces, tool adapters, and production-grade run control.

101
Stars
16
Forks
Python
语言
2026/8/24
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/Francis1998/agentic-career-search

快速入门

使用 agentic-career-search 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

agentic-career-search

CI Python 3.11+ FastAPI License

AI-agent backend for autonomous job discovery, explainable decisions, and production-style operations.

Demo Gallery

Core Agent Loop

LLM Provider Flow

Ops Reliability Loop

JazzHR Source Adapter

Phenom People Source Adapter

Why this exists

Most job-search automation demos fail in real usage because they:

  • cannot explain why a role is ranked highly,
  • cannot recover cleanly when providers fail,
  • have no durable event trace for debugging,
  • become hard to maintain once features grow.

This project solves those issues with explicit agent engineering primitives:

  • deterministic decision engine with rationale traces,
  • state-machine run lifecycle and durable event log,
  • tool/adapters abstraction for external integrations,
  • safety controls (timeouts, bounded scope, cancellation),
  • optional LLM enrichment via multiple providers.

Real use cases (problem -> solution)

ProblemWhy it hurtsHow this repo solves it
Teams can scrape jobs but cannot justify recommendationsLow trust from users and reviewersAgentDecisionEngine stores score, matched terms, priority tier, and rationale
Background runs are hard to debugSilent failures block iteration speedDurable run events (run.*, source.*, agent.*) support replay-style troubleshooting
Vendor lock-in around one model providerHigh migration cost and brittle integrationsConfigurable LLM enrichment supports GPT-5.5, Claude Sonnet 4.6, Gemini 3.x, and Kimi K2-style APIs
Model/API outages break the entire flowSystem appears unreliableGraceful fallback preserves deterministic baseline output when LLM enrichment is unavailable
Repo quality degrades over timeContributors lose confidenceCI checks + daily automation loop maintain quality and push incremental improvements

LLM API integration (consumes model outputs)

Provider integration is built into the code path:

  • Gemini API
  • Kimi (Moonshot, OpenAI-compatible)
  • Claude (Anthropic Messages API)
  • GPT-compatible APIs through OpenAI-style endpoint patterns

Enable provider enrichment:

LLM_ENABLE_ENRICHMENT=true
LLM_PROVIDER=gemini   # or kimi / claude / gpt

Then set matching API keys in .env (see CONFIGURATION.md).

Engineering standards covered

This repository follows the requested standards:

  1. standalone repo architecture (not coupled to source repo internals),
  2. AI-agent-first design with deterministic decision traces,
  3. LLM output consumption from Claude/Gemini/Kimi and GPT-style integrations,
  4. production-minded layout (src, tests, scripts, CI, env config, migrations),
  5. high-quality docs (README, QUICKSTART, CONFIGURATION, SAFETY, ARCHITECTURE),
  6. branch-based merge workflow for controlled integration (no direct unsafe merges),
  7. lint/type/test validation before finalization,
  8. no Docker requirement for standard local verification,
  9. phase branches for development roadmap (phase/01 to phase/10),
  10. commit-forward workflow with frequent incremental pushes.

API snapshot

  • POST /source-configs create source adapter configs
  • GET /source-configs list enabled sources
  • POST /runs enqueue autonomous run
  • GET /runs/{run_id} inspect run state
  • GET /runs/{run_id}/events inspect event timeline
  • POST /runs/{run_id}/cancel request cancellation
  • GET /jobs inspect normalized, scored, and enriched outputs
  • GET /health/live and GET /health/ready

Supported job sources

Each SourceConfig selects a source adapter by source_type:

| catsone | CatsoneAdapter | Recognises CATS careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /postings/{id} URL shapes | CATS (*.catsone.com) careers boards | | adp | AdpAdapter | Recognises ADP Recruiting posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /requisitions/{id} URL shapes | ADP (*.adp.com) recruiting boards | | jibe | JibeAdapter | Recognises Jibe posting anchors by /jobs/{id}, /job/{id}, /position/{id}, /positions/{id}, or /requisition/{id} URL shapes | Jibe (*.jibe.com) recruiting boards | | hirevue | HireVueAdapter | Recognises HireVue posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /requisition/{id} URL shapes | HireVue public careers boards | | paycom | PaycomAdapter | Recognises Paycom posting anchors by /jobs/{id}, /job/{id}, /posting/{id}, /postings/{id}, or /opportunity/{id} URL shapes | Paycom public careers boards | | yello | YelloAdapter | Recognises Yello posting anchors by /jobs/{id}, /job/{id}, /position/{id}, /positions/{id}, or /opening/{id} URL shapes | Yello public careers boards | | wellfound | WellfoundAdapter | Recognises Wellfound posting anchors by /jobs/{id}, /job/{id}, /role/{id}, /roles/{id}, /startup-jobs/{id} URL shapes | Wellfound (wellfound.com / angel.co) careers boards | | otta | OttaAdapter | Recognises Otta posting anchors by /jobs/{id}, /job/{id}, /roles/{id}, /role/{id}, /openings/{id} URL shapes | Otta (otta.com) careers boards | | builtin | BuiltinAdapter | Recognises Built In posting anchors by /job/{id}, /jobs/{id}, /company-jobs/{id}, /careers/job/{id}, /role/{id} URL shapes | Built In (builtin.com / builtinnyc.com / builtinchicago.com) careers boards | | remoteok | RemoteokAdapter | Recognises RemoteOK posting anchors by /remote-jobs/{id}, /remote-job/{id}, /jobs/{id}, /job/{id} URL shapes | RemoteOK (remoteok.com) careers boards | | weworkremotely | WeworkremotelyAdapter | Recognises WeWorkRemotely posting anchors by /remote-jobs/{id}, /jobs/{id}, /job/{id}, /listings/{id}, /listing/{id} URL shapes | WeWorkRemotely (weworkremotely.com) careers boards | | welcometothejungle | WelcometothejungleAdapter | Recognises Welcome to the Jungle posting anchors by /jobs/{id}, /job/{id}, /companies/{slug}/jobs/{id}, /offers/{id}, /offer/{id} URL shapes | Welcome to the Jungle (welcometothejungle.com) careers boards | | remotive | RemotiveAdapter | Recognises Remotive posting anchors by /remote-jobs/{id}, /remote-job/{id}, /jobs/{id}, /job/{id}, /positions/{id} URL shapes | Remotive (remotive.com) careers boards | | himalayas | HimalayasAdapter | Recognises Himalayas posting anchors by /jobs/{id}, /job/{id}, /companies/{slug}/jobs/{id}, /remote-jobs/{id}, /roles/{id} URL shapes | Himalayas (himalayas.app) careers boards | | workingnomads | WorkingnomadsAdapter | Recognises Working Nomads posting anchors by /jobs/{id}, /job/{id}, /remote-jobs/{id}, /positions/{id}, /position/{id} URL shapes | Working Nomads careers boards | | radancy | RadancyAdapter | Recognises Radancy posting anchors by /jobs/{id}, /job/{id}, /search/job/{id}, /careers/{id}, or /careers/job/{id} URL shapes | Radancy (*.radancy.com, *.jobs.net) recruiting boards | | silkroad | SilkRoadAdapter | Recognises SilkRoad posting anchors by /jobs/{id}, /job/{id}, /posting/{id}, /postings/{id}, or /opportunity/{id} URL shapes | SilkRoad (*.silkroad.com) recruiting boards | | paradox | ParadoxAdapter | Recognises Paradox careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /opportunities/{id} URL shapes | Paradox Olivia (*.paradox.ai) careers boards | | applicantpro | ApplicantProAdapter | Recognises ApplicantPro careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /openings/{id} URL shapes | ApplicantPro (*.applicantpro.com) careers boards | | brassring | BrassringAdapter | Recognises BrassRing careers posting anchors by /jobs/{id}, /job/{id}, /jobdetail/{id}, /FgJobDetail/{id}, or /careers/{id} URL shapes | IBM Kenexa BrassRing (*.brassring.com) careers boards |

source_typeAdapterHow it parsesBest for
greenhouseGreenhouseAdapterScrapes div.opening anchors on public Greenhouse boardsGreenhouse-hosted boards
leverLeverAdapterScrapes div.posting anchors on public Lever pagesLever-hosted boards
ashbyAshbyAdapterRecognises jobs.ashbyhq.com/{org}/{uuid} posting anchors by URL shapeAshby-hosted boards
workableWorkableAdapterRecognises apply.workable.com/{company}/j/{shortcode} posting anchors by URL shapeWorkable-hosted boards
recruiteeRecruiteeAdapterRecognises {company}.recruitee.com/o/{slug} posting anchors by URL shapeRecruitee-hosted careers sites
smartrecruitersSmartRecruitersAdapterRecognises jobs.smartrecruiters.com/{company}/{jobId}-{slug} posting anchors by URL shapeSmartRecruiters-hosted careers sites
teamtailorTeamtailorAdapterRecognises {company}.teamtailor.com/jobs/{jobId}-{slug} posting anchors by URL shapeTeamtailor-hosted careers sites
personioPersonioAdapterRecognises {tenant}.jobs.personio.de/.com/job/{jobId} posting anchors by URL shapePersonio-hosted careers sites (DACH/EU)
bamboohrBambooHrAdapterReads the public {tenant}.bamboohr.com/careers/list JSON board and maps each opening to /careers/{id}BambooHR-hosted careers sites (SMB tech/healthcare/services)
jobviteJobviteAdapterRecognises jobs.jobvite.com/{company}/job/{jobId} posting anchors by URL shape (terminal singular job, alphanumeric id)Jobvite-hosted careers sites
icimsIcimsAdapterRecognises careers-{tenant}.icims.com/jobs/{jobId}/{slug}/job posting anchors by URL shape (terminal literal job, numeric id; slug optional)iCIMS-hosted careers portals (enterprise) and vanity-domain proxies
workdayWorkdayAdapterPOSTs the public {tenant}.wd{N}.myworkdayjobs.com/wday/cxs/{tenant}/{site}/jobs JSON CXS board (page size 20) and maps each posting to {origin}/{locale}/{site}{externalPath}Workday-hosted enterprise careers sites
oracle_taleoOracleTaleoAdapterRecognises Taleo/Oracle Cloud posting anchors via job= query ids or terminal /job/{id} / /jobs/{id} path shapesOracle Taleo (*.taleo.net) and Oracle Cloud HCM careers portals
successfactorsSuccessFactorsAdapterRecognises SuccessFactors posting anchors via jobId / career_job_req_id query ids or terminal /job/{id} / /jobs/{id} path shapesSAP SuccessFactors (*.successfactors.com / *.successfactors.eu) careers portals
zoho_recruitZohoRecruitAdapterRecognises Zoho Recruit posting anchors via jobId / jid / job_id query ids or terminal /job/{id} / /jobs/{id} / /careers/{id} path shapesZoho Recruit (*.zohorecruit.com) careers portals and vanity-domain proxies
jazzhrJazzHrAdapterRecognises JazzHR posting anchors via /apply/{jobId} or /apply/{jobId}/{slug} path shapesJazzHR (*.applytojob.com/apply) careers portals and vanity-domain proxies
breezyhrBreezyHrAdapterRecognises {company}.breezy.hr/p/{positionId} posting anchors by URL shape (terminal p, alphanumeric id; slug optional)Breezy HR-hosted careers sites (startup/SMB)
freshteamFreshteamAdapterRecognises Freshteam careers posting anchors by job URL shapeFreshworks Freshteam-hosted careers boards
phenomPhenomPeopleAdapterRecognises Phenom posting anchors via /job/{jobId}/{slug} or /jobs/{jobId} path shapes, rejecting list/index/login/apply-step linksPhenom People-hosted enterprise and branded careers sites
ripplingRipplingAdapterRecognises Rippling posting anchors via terminal /jobs/{uuid} paths on *.rippling.com domainsRippling-hosted public careers boards
pinpointPinpointAdapterRecognises Pinpoint HR careers posting anchors by /postings/{uuid} or /jobs/{id} URL shapePinpoint (*.pinpointhq.com) careers boards
comeetComeetAdapterRecognises Comeet careers posting anchors by /jobs/{company}/{companyId}/{jobSlug}/{jobId} URL shapeComeet (www.comeet.co / www.comeet.com) careers boards
fountainFountainAdapterRecognises Fountain careers posting anchors by /apply/{company}/{positionId}, /apply/{slug}, /jobs/{id}, /openings/{id}, or /positions/{id} URL shapeFountain (*.fountain.com, web.fountain.com) careers boards
gemGemAdapterRecognises Gem careers posting anchors by jobs.gem.com/{company}/{jobId}, /jobs/{jobId}, /openings/{id}, or {company}.gem.com/careers/... URL shapesGem (jobs.gem.com / *.gem.com) careers boards
avatureAvatureAdapterRecognises Avature careers posting anchors by /JobDetail/{id}, /JobDetail.aspx?JobId={id}, /careers/{id}, /careers/job/{id}, /careers/VacancyDetail/{id}, /Vacancy/{id}, or /vacancies/{id} URL shapesAvature-hosted public careers portals
eightfoldEightfoldAdapterRecognises Eightfold careers posting anchors by /careers/job/{id}, /careers/job/{id}/{slug}, /career_detail/{id}, /position/{id}, or /jobs/{id} URL shapesEightfold (*.eightfold.ai) careers boards
jobscoreJobScoreAdapterRecognises JobScore careers posting anchors by /careers/{company}/jobs/{slug}-{id}, /careers/{company}/jobs/{id}, /jobs/{id}, /jobs/{slug}/{id}, or /position(s)/{id} URL shapesJobScore (careers.jobscore.com / *.jobscore.com) careers boards
hireologyHireologyAdapterRecognises Hireology careers posting anchors by /jobs/{id}, /careers/job/{id}, or /job/{id}/{slug} URL shapesHireology (careers.hireology.com) careers boards
dayforceDayforceAdapterRecognises Dayforce careers posting anchors by /JobDetail/{id}, /careers/job/{id}, /MyCareer/JobDetail?jobId={id}, or /positions/{id} URL shapesDayforce (*.dayforcehcm.com) careers boards
homerunHomerunAdapterRecognises Homerun careers posting anchors by /jobs/{id}-{slug}, /o/{id}, or /vacancies/{id} URL shapesHomerun (*.homerun.co) careers boards
clearcompanyClearCompanyAdapterRecognises ClearCompany careers posting anchors by /careers/job/{id}, /careers/{id}, /jobs/{id}, /job/{id}-{slug}, or /position/{id} URL shapesClearCompany (*.clearcompany.com) careers boards
appliedAppliedAdapterRecognises Applied careers posting anchors by /jobs/{id}, /j/{id}, /role/{id}, /roles/{id}, or /job/{id} URL shapesApplied (*.applied.co) careers boards
recruiterflowRecruiterflowAdapterRecognises Recruiterflow careers posting anchors by /jobs/{id}, /job/{id}, /careers/job/{id}, /openings/{id}, or /opening/{id} URL shapesRecruiterflow (*.recruiterflow.com) careers boards
manatalManatalAdapterRecognises Manatal careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /openings/{id} URL shapesManatal (*.manatal.com) careers boards
joinJoinAdapterRecognises Join careers posting anchors by /companies/{slug}/jobs/{id}, /jobs/{id}, /job/{id}, or /positions/{id} URL shapesJoin (join.com) careers boards
softgardenSoftgardenAdapterRecognises Softgarden careers posting anchors by /job/{id}, /jobs/{id}, /vacancies/{id}, /vacancy/{id}, or /position/{id} URL shapesSoftgarden (*.softgarden.io) careers boards
factorialFactorialAdapterRecognises Factorial HR careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /open-positions/{id} URL shapesFactorial (*.factorialhr.com) careers boards
ukgUkgAdapterRecognises UKG/UltiPro careers posting anchors by /jobs/{id}, /job/{id}, /opportunities/{id}, /opportunity/{id}, or /careers/job/{id} URL shapesUKG (*.ultipro.com / *.ukg.net) careers boards
bullhornBullhornAdapterRecognises Bullhorn careers posting anchors by /jobs/{id}, /Job/{id}, /careers/{id}, /careers/job/{id}, or /position/{id} URL shapesBullhorn (*.bullhornstaffing.com) careers boards
paylocityPaylocityAdapterRecognises Paylocity careers posting anchors by /jobs/{id}, /JobDetails/{id}, /careers/{id}, /careers/job/{id}, or /openings/{id} URL shapesPaylocity (*.paylocity.com) careers boards
polymerPolymerAdapterRecognises Polymer careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /positions/{id} URL shapesPolymer (*.polymer.co) careers boards
jobadderJobAdderAdapterRecognises JobAdder careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /position/{id} URL shapesJobAdder (*.jobadder.com) careers boards
jobylonJobylonAdapterRecognises Jobylon careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, /positions/{id}, or /vacancies/{id} URL shapesJobylon (jobs.jobylon.com) careers boards
ceipalCeipalAdapterRecognises Ceipal careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /requisitions/{id} URL shapesCeipal (*.ceipal.com / jobs.ceipal.com) careers boards
pageupPageUpAdapterRecognises PageUp careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /opportunities/{id} URL shapesPageUp (*.pageuppeople.com / careers.pageuppeople.com) careers boards
talentlyftTalentLyftAdapterRecognises TalentLyft careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /openings/{id} URL shapesTalentLyft (*.talentlyft.com / apply.talentlyft.com) careers boards
applicantstackApplicantStackAdapterRecognises ApplicantStack careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /postings/{id} URL shapesApplicantStack (*.applicantstack.com) careers boards
doverDoverAdapterRecognises Dover careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /openings/{id} URL shapesDover (app.dover.com) careers boards
loxoLoxoAdapterRecognises Loxo careers posting anchors by /jobs/{id}, /job/{id}, /positions/{id}, /careers/{id}, or /careers/job/{id} URL shapesLoxo (*.loxo.co) careers boards
jsonldJsonLdAdapterReads embedded schema.org/JobPosting JSON-LDAny board emitting Google-Jobs structured data (SmartRecruiters, custom career sites, ...)
hibobHibobAdapterRecognises HiBob careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /positions/{id} URL shapesHiBob (*.hibob.com) / Bob careers boards
trackerrmsTrackerRmsAdapterRecognises TrackerRMS careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /vacancies/{id} URL shapesTrackerRMS (*.tracker-rms.com and branded) careers boards
careerplugCareerPlugAdapterRecognises CareerPlug careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /listings/{id} URL shapesCareerPlug (*.careerplug.com) careers boards
recruitcrmRecruitCrmAdapterRecognises RecruitCRM careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /opening/{id} URL shapesRecruitCRM (*.recruitcrm.io) careers boards
vincereVincereAdapterRecognises Vincere careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /job-detail/{id} URL shapesVincere (*.vincere.io) careers boards
tribepadTribepadAdapterRecognises Tribepad careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /vacancy/{id} URL shapesTribepad (*.tribepad.com) careers boards
crelateCrelateAdapterRecognises Crelate careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /opportunity/{id} URL shapesCrelate (*.crelate.com) careers boards
jobdivaJobDivaAdapterRecognises JobDiva careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /jd/{id} URL shapesJobDiva (*.jobdiva.com) careers boards
pcrecruiterPCRecruiterAdapterRecognises PCRecruiter careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /requisition/{id} URL shapesPCRecruiter (*.pcrecruiter.com) careers boards
cornerstoneCornerstoneAdapterRecognises Cornerstone careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /opening/{id} URL shapesCornerstone OnDemand (*.csod.com) careers boards
eployEployAdapterRecognises Eploy careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /role/{id} URL shapesEploy (*.eploy.net) careers boards
beameryBeameryAdapterRecognises Beamery careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /campaign/{id} URL shapesBeamery (*.beamery.com) careers boards
hireezHireezAdapterRecognises HireEZ careers posting anchors by /jobs/{id}, /job/{id}, /careers/{id}, /careers/job/{id}, or /positions/{id} URL shapesHireEZ / Hiretual (*.hireez.com) careers boards

Unlike the HTML-scraping adapters, bamboohr and workday are structured-JSON sources: BambooHR and Workday careers pages are client-rendered apps, so those adapters read the tenant's public JSON listing endpoints directly (stable titles, locations, and ids) instead of parsing rendered markup. Workday uses the public CXS POST API — see docs/guides/WORKDAY_SOURCE_GUIDE.md.

The jsonld adapter is vendor-neutral: modern ATS platforms publish <script type="application/ld+json"> JobPosting payloads so their roles appear in Google Jobs, so a single adapter covers boards that would otherwise each need a bespoke scraper. It understands bare objects, arrays, @graph/ItemList containers, TELECOMMUTE remote roles, and PropertyValue identifiers, and it skips malformed blocks instead of failing the whole page.

# Register a JSON-LD source
curl -X POST localhost:8000/source-configs \
  -H 'content-type: application/json' \
  -d '{"name":"acme-careers","source_type":"jsonld","base_url":"https://acme.example.com/careers"}'

Quick start

git clone https://github.com/Francis1998/agentic-career-search.git
cd agentic-career-search
uv venv
source .venv/bin/activate
uv sync --extra dev --frozen
cp .env.example .env
uv run uvicorn autoapply_agent.main:app --reload

Documentation

DocumentDescription
ARCHITECTURE.mdCore agent architecture and lifecycle
CONFIGURATION.mdRuntime and provider configuration
QUICKSTART.mdFast local setup and verification
SAFETY.mdScope boundaries and operational guardrails
docs/DEPLOYMENT.mdDeployment guidance
docs/TROUBLESHOOTING.mdCommon failure recovery paths
CHANGELOG.mdRelease history

Regenerate demos

./scripts/generate_demo_gif.sh

License

MIT © Francis1998

常见问题

What is agentic-career-search?

agentic-career-search is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Francis1998. Autonomous AI-agent orchestration engine for job discovery with decision traces, tool adapters, and production-grade run control. It has 101 GitHub stars.

Is agentic-career-search safe to use?

Yes. agentic-career-search passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install agentic-career-search?

Clone the repository with "git clone https://github.com/Francis1998/agentic-career-search" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is agentic-career-search written in?

agentic-career-search is primarily written in Python. It is open-source under Francis1998 on GitHub, so you can review or fork the full source.

Are there alternatives to agentic-career-search?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh agentic-career-search against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情