소스 정보
- 저장소
- Infrasity-Labs/dev-gtm-claude-skills
- 최근 소스 활동
- 2026년 6월 28일 19:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 123
- 포크
- 10
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Infrasity-Labs/dev-gtm-claude-skills --skill job-search명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Analyze images, websites, and Figma files to extract their design and generate a `design.md` with token system, component inventory, and reconstruction notes. Use this skill whenever the user wants to understand, document, replicate, or audit the design of something visual: a screenshot, a URL, a Figma link, a Pinterest reference, a mockup, a competitor's site, a component, a dashboard, a landing page. Also when they ask 'extract the design system from X', 'document the style of Y', 'analyze this visually', 'convert this image into tokens', 'help me replicate this design', 'what palette does this site use', 'how is this built'. Also for single elements: 'copy this navbar', 'recreate this illustration', 'give me a prompt to regenerate this graphic' — element mode outputs a focused element.md, with token-grounded image-model prompts when the element is visual art. If the user brings any visual source and wants to understand it at a design level — this skill should activate.
Code review automation for TypeScript, JavaScript, Python, Go, Swift, Kotlin, C#, .NET, Java, C, C++, Rust, Ruby, PHP, and Dart/Flutter. Analyzes PRs for complexity and risk, checks code quality for SOLID violations and code smells, generates review reports. Use when reviewing pull requests, analyzing code quality, identifying issues, generating review checklists.
Design rigorous A/B tests with hypotheses, variants, metrics, and sample size calculations.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | job-search |
| description | Search for jobs matching my resume and preferences |
| argument-hint | keyword to search |
Priority hierarchy: See
references/priority-hierarchy.mdfor conflict resolution.
Automated daily job search using browser automation.
scripts/
evaluate-jobs.md # Subagent for parallel job evaluation
assets/
templates/ # Format templates (committed)
Resolve the data directory using references/data-directory.md.
Resolve the data directory, then check prerequisites per references/prerequisites.md. Resume and preferences are both required.
Read these files:
DATA_DIR/resume/* (candidate profile)DATA_DIR/preferences.md (preferences)DATA_DIR/job-history.md (to avoid duplicates)DATA_DIR/linkedin-contacts.csv (if it exists — for network matching)Extract search terms from:
$ARGUMENTS if providedUse Claude in Chrome MCP tools per references/browser-setup.md, navigating to https://hiring.cafe. For each search term, enter the query and apply relevant filters (date posted, location, etc.).
Extracting results — IMPORTANT: Do NOT use get_page_text on hiring.cafe or any large job listing page. It returns the entire page content and will blow out the context window.
Instead, extract job listings using javascript_tool to pull only structured data:
// Extract visible job listing data from the page
Array.from(document.querySelectorAll('[class*="job"], [class*="listing"], [class*="card"], tr, [role="listitem"]'))
.slice(0, 50)
.map(el => el.innerText.trim())
.filter(t => t.length > 20 && t.length < 500)
.join('\n---\n')
If that selector doesn't match, take a screenshot to understand the page structure, then write a targeted JS selector for the specific site. The goal is to extract just the listing rows (title, company, location, salary) — never the full page.
As a fallback, use read_page (NOT get_page_text) and scan for listing elements.
Note: Hiring.cafe is just our search tool. Don't share hiring.cafe links with the user — you'll resolve direct employer URLs for the top matches in Step 5.
Score each job against the candidate's resume and preferences using the criteria in references/fit-scoring.md.
Append ALL jobs to DATA_DIR/job-history.md:
## [DATE] - Search: "[terms]"
| Job Title | Company | Location | Salary | Fit | Notes |
|-----------|---------|----------|--------|-----|-------|
| ... | ... | ... | ... | ... | ... |
For each High-fit job:
javascript_tool to pull the posting content (e.g. document.querySelector('[class*="description"], [class*="content"], article, main')?.innerText). Do NOT use get_page_text — employer pages often have huge footers, navs, and related listings that bloat the output and can blow out the context window.DATA_DIR/jobs/[company-slug]-[date]/posting.md with the employer URL at the topFor Medium-fit jobs, try to resolve the employer URL but don't save the full posting.
If you can't resolve the direct link for a job, note the company name so the user can find it themselves. Never show hiring.cafe URLs to the user.
Show only NEW High/Medium fits not in previous history.
If LinkedIn contacts were loaded, cross-reference each result's company name against the "Company" column in the CSV. Use fuzzy matching (e.g. "Google" matches "Google LLC", "Alphabet/Google"). If there's a match, include the contact's name and title.
## Top Matches for [DATE]
### 1. [Title] at [Company]
- **Fit**: High
- **Salary**: $XXXk
- **Location**: Remote
- **Why**: [reason]
- **Network**: You know [First Last] ([Position]) at [Company]
- **Apply**: [direct employer URL]
Omit the "Network" line if there are no contacts at that company.
After presenting results, tell the user:
IMPORTANT: Do NOT attempt to tailor resumes, write cover letters, or fill applications yourself. Those are separate skills with their own workflows. If the user asks to do any of these for a job, direct them to use the appropriate skill command.
If user provides feedback, update DATA_DIR/preferences.md:
Structure user-facing output with these sections: