job-search
Search for jobs matching your skills, experience, and preferences
Best use case
job-search is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Search for jobs matching your skills, experience, and preferences
Teams using job-search should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/orthogonal-job-search/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How job-search Compares
| Feature / Agent | job-search | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Search for jobs matching your skills, experience, and preferences
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Job Search - Find Your Next Role
Search for jobs matching your skills, experience level, and location preferences.
## Workflow
### Step 1: Search Job Listings
Use Fiber to search for jobs:
```bash
orth api run fiber /v1/job-search --body '{
"searchParams": {
"job_titles": ["Software Engineer", "Full Stack Developer"],
"locations": ["San Francisco", "Remote"],
"experience_level": "senior"
}
}'
```
### Step 2: Research Companies
Get company information for interesting roles:
```bash
orth api run fiber /v1/company-search --body '{
"searchParams": {
"company_names": ["Stripe", "Figma", "Notion"]
}
}'
```
### Step 3: Get Company Intel
Use Brand.dev for detailed company info:
```bash
orth api run brand-dev /v1/brand/retrieve --query 'domain=stripe.com'
```
### Step 4: Find Hiring Managers
Find people at the company to network with:
```bash
orth api run fiber /v1/people-search --body '{
"searchParams": {
"company_names": ["Stripe"],
"job_titles": ["Engineering Manager", "VP Engineering", "CTO"]
}
}'
```
### Step 5: Get Contact Info
Find email for outreach:
```bash
orth api run hunter /v2/email-finder --query domain=stripe.com first_name=John last_name=Doe
```
## Example Usage
```bash
# Search for remote AI jobs
orth api run fiber /v1/job-search --body '{
"searchParams": {
"job_titles": ["Machine Learning Engineer", "AI Engineer"],
"locations": ["Remote"],
"keywords": ["LLM", "generative AI"]
}
}'
# Research a company
orth api run fiber /v1/natural-language-search/companies --body '{
"query": "Tell me about Anthropic - funding, team size, culture"
}'
```
## Tips
- Customize your search for each application
- Research company culture before applying
- Network with people at target companies
- Set up alerts for new postings
## Discover More
List all endpoints, or add a path for parameter details:
```bash
orth api show brand-dev
orth api show fiber
orth api show hunter
```
Example: `orth api show olostep /v1/scrapes` for endpoint parameters.Related Skills
tiktok-search
Search TikTok - find profiles, videos, hashtags, and trending content
searchapi
Multi-platform search - YouTube, Amazon, eBay, Walmart, TikTok, Instagram, and more
search
Search the web, platforms, and datasets. Use when asked to search, find, look up, research, or discover information from the web, YouTube, Amazon, eBay, news, academic sources, or any online platform.
market-research
Research market trends, size, competitors, and growth opportunities
investor-research
Research VCs, angels, and investors - portfolio, thesis, contact info
ebay-search
Search eBay listings - find items, auctions, deals, and compare prices
competitor-research
Research competitors - products, pricing, team, funding, and strategy
company-funding-search
Find company funding history, investors, and investment details
amazon-search
Search Amazon products - find items, compare prices, read reviews
yt-dlp-downloader
Download videos from YouTube, Bilibili, Twitter, and thousands of other sites using yt-dlp. Use when the user provides a video URL and wants to download it, extract audio (MP3), download subtitles, or select video quality. Triggers on phrases like "下载视频", "download video", "yt-dlp", "YouTube", "B站", "抖音", "提取音频", "extract audio".
slack
Send messages and manage Slack channels. Use when asked to send Slack messages, post to channels, list channels, or fetch message history.
yc-batch-evaluator
Evaluate YC batch companies for investment — scrapes the YC directory, researches each company and its founders (work history, LinkedIn, website), assesses founder-company fit, and exports to Google Sheets with priority rankings. Use when asked to evaluate YC companies, research a YC batch, screen startups, or do due diligence on YC companies.