
AI agent for deep LinkedIn profile analysis.
Orca is an AI agent for deep LinkedIn profile analysis. You define the insights you care about, and Orca extracts them.
It scrapes posts, comments, reactions, and interaction networks, then reasons over the data autonomously to extract structured insights like pain points, current focus, values, expertise, network influence, communication style, and how interests change over time. It calls additional scraping tools on its own when it needs more data.
The core logic lives in orca-ai/ as a standalone library. You can plug it into any Node.js project and run it at scale.
Use cases

Create .env.local in the project root:
RAPIDAPI_KEY=your_key
OPENAI_API_KEY=your_key
Authentication is optional. To restrict access with a login page, add Supabase credentials:
NEXT_PUBLIC_SUPABASE_URL=your_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_anon_key
When set, all pages and the API are protected behind email/password login. Without them, the app runs open with no auth.
git clone https://github.com/dimimikadze/orca.git
cd orca
pnpm install
pnpm dev
Open http://localhost:3000.
All scrapers and the analysis agent are covered by tests. Each test can run against recorded fixtures (no live API needed) or against real LinkedIn data by setting USE_LIVE_DATA = true in the test file.
Dedicated test cases and all available test commands are in package.json.
See CONTRIBUTING.md for guidelines.
Distributed under the MIT License. See LICENSE for details.