Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

job-posting-analysis职位发布分析

Agent Skill

job-posting-analysis 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

267

周安装

11

GitHub Stars

222

下载量

87
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:job-posting-analysis(职位发布分析)
来源仓库:https://github.com/transilienceai/communitytools
仓库路径:skills/job-posting-analysis
安装命令:
npx skills add https://github.com/transilienceai/communitytools --skill job-posting-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/transilienceai/communitytools --skill job-posting-analysis

简介

job-posting-analysis 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它可能用于分析职位发布内容或市场趋势,具体用途需结合原始 README 进一步确认。
  • 安装命令为 npx skills add https://github.com/transilienceai/communitytools --skill job-posting-analysis。
  • 使用前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Job Posting Analysis Skill

Purpose

Extract technology stack information from job postings and career pages, which often reveal internal tech stack details.

Operations

1. find_careers_page

Locate company's career/jobs page.

Search Strategies:

1. Common paths: /careers, /jobs, /work-with-us, /join-us
2. Subdomains: careers.{domain}, jobs.{domain}
3. Web search: site:{domain} careers OR jobs
4. Footer links on main site

Common Career Page URLs:

https://{domain}/careers
https://{domain}/jobs
https://careers.{domain}
https://jobs.{domain}
https://{domain}/about/careers
https://{domain}/company/careers

2. detect_ats_platform

Identify Applicant Tracking System in use.

ATS Detection Patterns:

{
  "Greenhouse": {
    "url_pattern": "boards.greenhouse.io",
    "indicates": ["Tech-forward startup", "Modern hiring"],
    "confidence": 95
  },
  "Lever": {
    "url_pattern": "jobs.lever.co",
    "indicates": ["Tech-forward startup", "Growth stage"],
    "confidence": 95
  },
  "Workday": {
    "url_pattern": ".wd5.myworkdayjobs.com|.wd3.myworkdayjobs.com",
    "indicates": ["Enterprise company", "Large org"],
    "confidence": 95
  },
  "Ashby": {
    "url_pattern": "jobs.ashbyhq.com",
    "indicates": ["Modern startup", "Tech-forward"],
    "confidence": 95
  },
  "iCIMS": {
    "url_pattern": "careers-.*\\.icims\\.com|icims.com",
    "indicates": ["Enterprise hiring"],
    "confidence": 95
  },
  "Taleo": {
    "url_pattern": "taleo.net",
    "indicates": ["Enterprise (Oracle)", "Large org"],
    "confidence": 95
  },
  "SmartRecruiters": {
    "url_pattern": "jobs.smartrecruiters.com",
    "indicates": ["Mid-market to Enterprise"],
    "confidence": 95
  },
  "BambooHR": {
    "url_pattern": ".bamboohr.com/jobs",
    "indicates": ["SMB company"],
    "confidence": 95
  },
  "Jobvite": {
    "url_pattern": "jobs.jobvite.com",
    "indicates": ["Mid-market hiring"],
    "confidence": 95
  },
  "Breezy HR": {
    "url_pattern": ".breezy.hr",
    "indicates": ["SMB startup"],
    "confidence": 95
  }
}

3. extract_tech_requirements

Parse job descriptions for technology mentions.

Extraction Patterns:

Experience with ([\w\s,/]+)
Proficiency in ([\w\s,/]+)
Knowledge of ([\w\s,/]+)
Tech stack:? ([\w\s,/]+)
Working knowledge of ([\w\s,/]+)
Familiar with ([\w\s,/]+)
Strong background in ([\w\s,/]+)
Required:?\s*([\w\s,/]+)
Nice to have:?\s*([\w\s,/]+)
Technologies:?\s*([\w\s,/]+)
Tools:?\s*([\w\s,/]+)

Technology Keyword Categories:

Languages:

JavaScript, TypeScript, Python, Java, Go, Rust, Ruby, PHP,
C#, C++, Kotlin, Swift, Scala, Elixir, Clojure

Frontend Frameworks:

React, Vue, Angular, Svelte, Next.js, Nuxt, Gatsby,
Redux, MobX, Zustand, React Query, Tailwind, Bootstrap

Backend Frameworks:

Node.js, Express, NestJS, Django, Flask, FastAPI,
Rails, Spring, .NET, Laravel, Phoenix

Databases:

PostgreSQL, MySQL, MongoDB, Redis, Elasticsearch,
DynamoDB, Cassandra, Neo4j, Snowflake, BigQuery

Cloud/Infrastructure:

AWS, GCP, Azure, Kubernetes, Docker, Terraform,
Ansible, CloudFormation, Pulumi

Tools:

Git, GitHub, GitLab, Jenkins, CircleCI, GitHub Actions,
Datadog, New Relic, Grafana, Prometheus, Sentry

4. calculate_tech_frequency

Weight technologies by mention frequency across postings.

Scoring:

def calculate_frequency_score(tech, postings):
    mentions = sum(1 for p in postings if tech in p.requirements)
    total_postings = len(postings)

    frequency = mentions / total_postings

    # Classify importance
    if frequency >= 0.5:
        importance = "Core Stack"  # 50%+ of postings
    elif frequency >= 0.25:
        importance = "Common"      # 25-50%
    else:
        importance = "Occasional"  # < 25%

    return {
        "mentions": mentions,
        "frequency": frequency,
        "importance": importance
    }

5. analyze_role_patterns

Identify tech stack from role types.

Role Type Signals:

{
  "Frontend Engineer": {
    "implies": ["React/Vue/Angular", "JavaScript/TypeScript", "CSS frameworks"],
    "confidence": 70
  },
  "Backend Engineer": {
    "implies": ["Server-side language", "Database", "API development"],
    "confidence": 70
  },
  "Full Stack Engineer": {
    "implies": ["Frontend framework", "Backend framework", "Database"],
    "confidence": 65
  },
  "DevOps Engineer": {
    "implies": ["Cloud platform", "CI/CD", "Kubernetes/Docker", "IaC"],
    "confidence": 75
  },
  "Data Engineer": {
    "implies": ["Python/Scala", "Spark/Airflow", "Data warehouse"],
    "confidence": 75
  },
  "ML Engineer": {
    "implies": ["Python", "TensorFlow/PyTorch", "Cloud ML services"],
    "confidence": 75
  },
  "iOS Developer": {
    "implies": ["Swift", "Xcode", "iOS SDK"],
    "confidence": 85
  },
  "Android Developer": {
    "implies": ["Kotlin/Java", "Android SDK"],
    "confidence": 85
  }
}

Output

{
  "skill": "job_posting_analysis",
  "domain": "string",
  "results": {
    "careers_page": {
      "url": "string",
      "ats_platform": "Greenhouse",
      "ats_confidence": 95
    },
    "postings_analyzed": "number",
    "technologies_extracted": [
      {
        "name": "React",
        "category": "Frontend Framework",
        "mentions": 15,
        "total_postings": 20,
        "frequency": 0.75,
        "importance": "Core Stack",
        "contexts": [
          "Experience with React and TypeScript",
          "Build UIs using React"
        ],
        "confidence": 80
      }
    ],
    "role_distribution": {
      "Frontend": 5,
      "Backend": 8,
      "Full Stack": 4,
      "DevOps": 2,
      "Data": 1
    },
    "tech_stack_inference": {
      "frontend": ["React", "TypeScript", "Tailwind"],
      "backend": ["Node.js", "PostgreSQL", "Redis"],
      "infrastructure": ["AWS", "Kubernetes"],
      "confidence": "Medium"
    },
    "company_signals": {
      "engineering_size": "Large (20+ open roles)",
      "growth_stage": "Scaling",
      "tech_culture": "Modern (tech-forward ATS, current stack)"
    }
  },
  "evidence": [
    {
      "type": "job_posting",
      "title": "Senior Frontend Engineer",
      "url": "string",
      "technologies_mentioned": ["React", "TypeScript", "GraphQL"],
      "timestamp": "ISO-8601"
    }
  ]
}

Rate Limiting

  • Careers page fetch: 10/minute
  • Job posting pages: 20/minute
  • ATS APIs: Varies by platform

Error Handling

  • 404: No careers page found
  • Access denied: ATS may require authentication
  • Continue with partial data
  • Fall back to search engine results

Security Considerations

  • Only access public job postings
  • Do not apply to jobs or create accounts
  • Respect robots.txt
  • Do not scrape PII (recruiter names, emails)
  • Log all fetches for audit

Confidence Notes

Job posting data provides indirect signals:

  • Technologies mentioned in job posts may not be currently deployed
  • "Nice to have" vs "Required" distinction matters
  • Combine with direct technical evidence for validation
  • Base confidence: 60-80% (lower than direct signals)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.05%
按下载量换算30

Claude

30.15%
按下载量换算26

Cursor

20.59%
按下载量换算18

Gemini CLI

9.89%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills