Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

github-hunterGitHub hunter 搜索

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

1,038

周安装

42

GitHub Stars

5

下载量

326
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/breverdbidder/life-os --skill github-hunter

简介

用于围绕 GitHub 仓库、Issue、Pull Request、分支和提交提供辅助能力。

  • 适合查询项目状态、整理变更并生成可执行下一步操作。
  • 支持只读查询与写入操作,需区分权限范围和使用场景。
  • 涉及创建 PR、修改 Issue 或访问私有仓库时需确认 token 权限。
  • 建议在使用前明确目标仓库范围和用户授权状态。

SKILL.md

GitHub Hunter Skill

Automatically discovers GitHub repositories relevant to BidDeed.AI and Life OS, scores them 0-100 based on criteria, and archives them to Supabase with integration recommendations.

Workflow

1. Discovery Phase

Search GitHub for repositories using relevant keywords extracted from:

  • User requests ("find repos for X")
  • Video transcripts (projects mentioned in content)
  • Technology domains (foreclosure data, ADHD productivity, etc.)

2. Scoring Phase (0-100)

Score each repository on:

  • Stars (0-25 points): Logarithmic scale, 10K+ stars = 25
  • Recency (0-20 points): Last updated within 30 days = 20, 1+ year = 0
  • Documentation (0-15 points): README quality, examples, API docs
  • Relevance (0-25 points): Direct applicability to BidDeed.AI or Life OS
  • License (0-15 points): MIT/Apache = 15, GPL = 10, Proprietary = 0

Formula:

score = min(100,
    (log10(stars + 1) / log10(10000)) * 25 +
    max(0, 20 - (days_since_update / 15)) +
    documentation_score +
    relevance_score +
    license_score
)

3. Archive Phase

Insert to Supabase insights table with:

{
  "category": "github_discovery",
  "subcategory": "auto_hunter",
  "title": "GitHub Hunter: {repo_name}",
  "content": {
    "repo_url": "https://github.com/{owner}/{name}",
    "score": 85,
    "stars": 1234,
    "description": "...",
    "language": "Python",
    "license": "MIT",
    "last_updated": "2025-12-20",
    "integration_recommendation": "...",
    "relevant_to": ["biddeed", "life-os"]
  }
}

4. Alert Phase

Notify Ariel via response with:

  • Repository name and URL
  • Score (with color coding: 🟢 80+, 🟡 60-79, 🟠 40-59, 🔴 <40)
  • Brief summary (1-2 sentences)
  • Integration recommendation
  • Direct action: "Add to {repo}?" with yes/no

Usage Triggers

Explicit requests:

  • "Find GitHub repos for {topic}"
  • "Search for projects about {domain}"
  • "Discover repositories related to {technology}"

Context-aware triggers:

  • Video transcripts mentioning GitHub projects → auto-hunt after transcript
  • Articles/docs with GitHub URLs → extract and score
  • User says "what could we integrate from that?" after discussing a topic

Scoring Examples

Score 95: fastapi/fastapi

  • 75K stars (25), updated 2 days ago (20), excellent docs (15), highly relevant to BidDeed.AI API (25), Apache license (15)

Score 72: user/small-foreclosure-tool

  • 45 stars (8), updated 1 week ago (18), basic README (8), perfect relevance (25), MIT (15)

Score 38: abandoned/old-project

  • 500 stars (15), updated 2 years ago (0), no docs (0), tangential relevance (8), MIT (15)

Integration Recommendations Format

Provide actionable integration steps:

### Integration Recommendation

**To BidDeed.AI:**
1. Use {feature} for {existing_workflow_stage}
2. Replace {current_approach} with {repo_approach}
3. Add workflow: `.github/workflows/{new_workflow}.yml`

**To Life OS:**
1. Integrate {tool} for {productivity_feature}
2. Add skill: `.claude/skills/{skill_name}/`
3. Update orchestrator to call {function}

**Estimated effort:** {hours} hours
**Dependencies:** {list}
**Risk level:** {low/medium/high}

Alert Template

🔍 **GitHub Hunter Discovery**

**{repo_name}** [{score_emoji} {score}/100]
https://github.com/{owner}/{name}

{description}

**Stats:** ⭐ {stars} | 📅 {last_updated} | 📜 {license} | 💬 {language}

**Integration:**
{integration_recommendation}

**Add to BidDeed.AI?** [Yes/No]
**Add to Life OS?** [Yes/No]

Advanced: Batch Discovery

When user provides a list of topics or a domain:

# Example: "Find repos for foreclosure data scraping, PDF parsing, and workflow orchestration"

Topics:
1. foreclosure data scraping
2. PDF parsing
3. workflow orchestration

For each topic:
- Search GitHub API with 3-5 keyword variations
- Score top 10 results per topic
- Archive scores 60+ to Supabase
- Alert Ariel with top 3 across all topics

Repository Addition Workflow

When user approves a repo:

  1. Determine target repo:

- BidDeed.AI → breverdbidder/biddeed-conversational-ai - Life OS → breverdbidder/life-os - Both → add to both

  1. Create integration plan:

- If library: Add to requirements.txt or package.json - If workflow: Create .github/workflows/{name}.yml - If skill: Create .claude/skills/{name}/SKILL.md - If script: Add to src/integrations/ or agents/

  1. Document in README:

- Add to "Integrations" section - Link to repo - Note version and license

  1. Archive decision:

- Update Supabase insight with integration_status: "added" - Record which repo(s) it was added to - Note commit SHA

Filters

Exclude repos with:

  • Archived status
  • No commits in 2+ years (unless legendary/foundational)
  • Proprietary license for core BidDeed.AI features
  • <10 stars AND <30 days old (likely spam)

Prioritize repos with:

  • Python (BidDeed.AI), JavaScript/TypeScript (Life OS)
  • AI/ML, web scraping, document processing, workflow automation
  • Active maintenance (commits in last 60 days)
  • Clear documentation
  • Permissive licenses (MIT, Apache, BSD)

GitHub API Usage

Use web_search to find repos, then web_fetch for details:

# Search
query = "foreclosure auction data scraping language:python"
search_url = f"https://github.com/search?q={query}&type=repositories&s=stars&o=desc"

# Fetch repo details
repo_url = "https://api.github.com/repos/{owner}/{name}"
# Get: stars, last_updated, description, language, license, topics

Supabase Schema

Insert to insights table at mocerqjnksmhcjzxrewo.supabase.co:

INSERT INTO insights (category, subcategory, title, content, created_at)
VALUES (
  'github_discovery',
  'auto_hunter',
  'GitHub Hunter: {repo_name}',
  '{
    "repo_url": "...",
    "score": 85,
    "stars": 1234,
    "description": "...",
    "language": "Python",
    "license": "MIT",
    "last_updated": "2025-12-20",
    "integration_recommendation": "...",
    "relevant_to": ["biddeed"],
    "integration_status": "pending"
  }'::jsonb,
  NOW()
);

Example Session

User: "Find GitHub repos for PDF form filling and data extraction"

Claude: [triggers github-hunter skill]

1. Search: "PDF form filling python", "PDF data extraction", "fillable pdf automation"
2. Discover:
   - PyPDF2 (8.2K stars, score: 78)
   - pdfplumber (6.1K stars, score: 82)
   - pdf-form-fill (234 stars, score: 71)
3. Archive top 2 to Supabase
4. Alert:

🔍 **GitHub Hunter Discovery**

**pdfplumber** [🟢 82/100]
https://github.com/jsvine/pdfplumber

Plumb a PDF for detailed information about tables, text, images. Maintained, excellent docs.

**Stats:** ⭐ 6.1K | 📅 2025-12-15 | 📜 MIT | 💬 Python

**Integration:**
Replace manual PDF parsing in BECA scraper with pdfplumber for structured table extraction.
Use for tax certificate downloads from RealTDM.

**Add to BidDeed.AI?** [Yes/No]

Notes

  • Always archive to Supabase BEFORE asking for approval
  • Score threshold for alerts: 60+
  • Batch discovery: alert top 3 only, archive all 60+
  • If repo already in our codebase, mark as integration_status: "existing"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.57%
按下载量换算119

Claude

30.28%
按下载量换算99

Cursor

20.63%
按下载量换算67

Gemini CLI

9.95%
按下载量换算32

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills