Analyzed 31 days ago · 2 anonymous rescans remaining · register free to re-analyze any time.
Public analysis · read only
Register free to re-analyze

aavoronin/ScreenAI

0 0 0 issues
Python

Project Overview

anthropic / claude-opus-4-7

ScreenAI

Python automation tool that uses vision AI to read screens and navigate job boards like LinkedIn and Hirify.

AI Verdict
Review Recommended— AI Trust Assessment

True Intent (AI Assessment)

A personal automation tool that uses screen-parsing AI to visit job board URLs, extract vacancy details, and score them with LLMs.

README Accuracy

No README

Notes

The GitHub description 'AI screen reader and navigator' is accurate but generic - the code is specifically wired for job board scraping (LinkedIn/Hirify). requirements.txt contains many future-dated/nonexistent package versions which will fail to install. The bundled omnibox VM includes an arbitrary-command-execution endpoint (inherited from upstream OmniParser) that should not be exposed. No license is provided despite bundling third-party code.

What Is This?

ScreenAI is a Python-based screen automation and navigation system built on top of Microsoft's OmniParser (a vision-language model for GUI understanding). It takes screenshots, parses UI elements using computer vision and OCR, and then programmatically navigates websites - specifically job board sites LinkedIn and Hirify. The repository bundles the entire OmniParser project as a subdirectory and adds custom navigators, screen parsers, and vacancy estimators on top.

The problem it solves is automated job vacancy collection and evaluation. The Navigators visit URLs from CSV files (linkedin_urls.csv, hirify_urls.csv), capture screen state, parse job listing content out of MHTML files, and use LLMs (via OpenAI, Anthropic, Groq, or local llama.cpp) to estimate/evaluate vacancies. Essentially it's a job-scraping and screening bot that operates through the actual browser UI rather than APIs.

The intended user appears to be the developer themselves - likely someone doing automated job searching or building a job-aggregation dataset. There is no README, no license, no packaging, and main.py contains commented-out experimental code paths, indicating this is a personal research/tooling project rather than a product for external users.

How it works: main.py loads configuration, instantiates a Navigator (LinkedIn or Hirify), and calls run_on_urls(). Navigators use PyAutoGUI to control mouse/keyboard, screeninfo/screenshots to capture the display, and OmniParser (YOLO + BLIP2/Florence-based icon detection plus EasyOCR/PaddleOCR) to identify clickable elements. Captured pages are saved as MHTML, then BaseVacancyEstimator parses them with BeautifulSoup and feeds cleaned text to an LLM for scoring. CUDA/GPU is used for the vision models.

Notable observations: the requirements.txt is enormous (~180 pinned packages, some with future-dated versions like certifi==2026.6.17, pandas==3.0.3, torch 2.11.0+cu128 - versions that don't exist as of this analysis, suggesting the file was generated from a bleeding-edge or possibly fabricated environment). The bundled OmniParser subproject includes a Windows 11 VM Docker setup with an 'execute_anything' Flask endpoint that runs arbitrary shell commands with no auth - dangerous but consistent with OmniParser's upstream research code. No license file is present in the root project.

Your Report, Tab by Tab
At a Glance
0Stars
0Forks
0Open Issues
July 2026Last Active
CLI ToolPythonNot specified
Technology Stack
LanguagesPython, Shell, PowerShell, Batch, Dockerfile
RuntimePython 3.x with CUDA GPU
FrameworkGradio, FastAPI, Streamlit (via OmniParser); custom navigator framework
DatabaseNone detected (CSV files and MHTML for storage)
Package Managerpip
Key Dependenciestorch, transformers, ultralytics (YOLO), easyocr, paddleocr, PyAutoGUI, opencv-python, openai, anthropic, llama-cpp-python, BeautifulSoup
Build ToolNone (install.bat script)
Test Frameworkpytest (declared in requirements, no test files observed in root project)