Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Search BOSS直聘 for non-big-tech internship positions via chrome-osascript, extract full JD (DOM raw), summarize and tag via subagent, and persist to YAML. Optionally sync to Notion. Use when the user wants to find, collect, analyze, or track internship listings. --- name: internship-scout description: Search BOSS直聘 for non-big-tech internship positions via chrome-osascript, extract full JD (DOM raw), summarize and tag via subagent, and persist to YAML. Optionally sync to Notion. Use when the user wants to find, collect, analyze, or track internship listings. --- internship-scout File Layout **Data files** (workspace root): - internships.yaml — all collected positions - inter Capability contract not published. No trust telemetry is available yet. 11 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
internship-scout is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Search BOSS直聘 for non-big-tech internship positions via chrome-osascript, extract full JD (DOM raw), summarize and tag via subagent, and persist to YAML. Optionally sync to Notion. Use when the user wants to find, collect, analyze, or track internship listings. --- name: internship-scout description: Search BOSS直聘 for non-big-tech internship positions via chrome-osascript, extract full JD (DOM raw), summarize and tag via subagent, and persist to YAML. Optionally sync to Notion. Use when the user wants to find, collect, analyze, or track internship listings. --- internship-scout File Layout **Data files** (workspace root): - internships.yaml — all collected positions - inter
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 11 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Wkf16
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 11 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/wkf16/internship-scout.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Wkf16
Protocol compatibility
OpenClaw
Adoption signal
11 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
text
skills/internship-scout/
├── SKILL.md
├── references/
│ ├── schema.md # YAML field definitions
│ └── prefs-template.md # Template for internship-prefs.md
└── scripts/
├── fetch_job_links.py # Step 1: API 抓取职位列表
├── fetch_jd_dom.py # Step 2: osascript DOM 抓 JD 原文
├── summarize_jds.py # Step 3: subagent 批量生成 summary/tags/quality
├── dedup_check.py # 去重检查
└── notion_sync.py # Notion upserttext
fetch_job_links.py → fetch_jd_dom.py → summarize_jds.py → notion_sync.py (抓列表+结构字段) (DOM抓JD原文) (summary/tags/ABCD) (Notion同步)
bash
test -f ~/.openclaw/workspace/internship-prefs.md && echo exists || echo missing
bash
test -f ~/.openclaw/workspace/internships.yaml && echo exists || echo missing
bash
python3 skills/internship-scout/scripts/fetch_job_links.py \ --prefs internship-prefs.md \ --yaml internships.yaml
bash
python3 skills/internship-scout/scripts/fetch_jd_dom.py \ --yaml internships.yaml \ --limit 5 \ --min-delay 2.0 --max-delay 5.0
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Search BOSS直聘 for non-big-tech internship positions via chrome-osascript, extract full JD (DOM raw), summarize and tag via subagent, and persist to YAML. Optionally sync to Notion. Use when the user wants to find, collect, analyze, or track internship listings. --- name: internship-scout description: Search BOSS直聘 for non-big-tech internship positions via chrome-osascript, extract full JD (DOM raw), summarize and tag via subagent, and persist to YAML. Optionally sync to Notion. Use when the user wants to find, collect, analyze, or track internship listings. --- internship-scout File Layout **Data files** (workspace root): - internships.yaml — all collected positions - inter
skills/internship-scout/
├── SKILL.md
├── references/
│ ├── schema.md # YAML field definitions
│ └── prefs-template.md # Template for internship-prefs.md
└── scripts/
├── fetch_job_links.py # Step 1: API 抓取职位列表
├── fetch_jd_dom.py # Step 2: osascript DOM 抓 JD 原文
├── summarize_jds.py # Step 3: subagent 批量生成 summary/tags/quality
├── dedup_check.py # 去重检查
└── notion_sync.py # Notion upsert
Data files (workspace root):
internships.yaml — all collected positionsinternship-prefs.md — user job preferences (created on first run)fetch_job_links.py → fetch_jd_dom.py → summarize_jds.py → notion_sync.py
(抓列表+结构字段) (DOM抓JD原文) (summary/tags/ABCD) (Notion同步)
检查偏好文件:
test -f ~/.openclaw/workspace/internship-prefs.md && echo exists || echo missing
Missing → ask the user:
Exists → load silently. Re-trigger only if user says "更新偏好" or "重置偏好".
检查数据文件:
test -f ~/.openclaw/workspace/internships.yaml && echo exists || echo missing
fetch_job_links.py 会自动跳过已收录 URL,无需额外操作。cp internships.yaml internships.yaml.bak && echo '[]' > internships.yaml。python3 skills/internship-scout/scripts/fetch_job_links.py \
--prefs internship-prefs.md \
--yaml internships.yaml
从 internship-prefs.md 读取搜索词、城市、规模等偏好,调用 BOSS直聘内部 API 抓取职位列表。只写结构字段(title/company/salary/location/url 等),不含 JD 正文。
过滤规则(均可在 prefs 中配置):
日薪下限 的条目自动跳过python3 skills/internship-scout/scripts/fetch_jd_dom.py \
--yaml internships.yaml \
--limit 5 \
--min-delay 2.0 --max-delay 5.0
.job-sec-text 节点原文(带换行)jd_full 为空且无 fetch_error 的条目fetch_error: empty_job_sec_text,exit 1--refetch 强制重抓已有 jd_full 的条目前提:Chrome 已开启 View > Developer > Allow JavaScript from Apple Events
# 查看待处理条目
python3 skills/internship-scout/scripts/summarize_jds.py --list-pending
# 打印完整 prompt(调试用)
python3 skills/internship-scout/scripts/summarize_jds.py --dry-run
# 写回 subagent 结果
python3 skills/internship-scout/scripts/summarize_jds.py --write-result '<json>'
1. --list-pending → 确认待处理数量
2. --dry-run → 拿到完整 prompt
3. sessions_spawn(cleanup=keep, mode=run) → subagent 纯文本推理
4. --write-result '<json>' → 写回 YAML
所有 pending 条目一次性放入单个 subagent,无需分批。
[{
"id": 0,
"clarity": 3,
"tech_stack": 3,
"role_signal": 2,
"jd_score": 8,
"jd_quality": "A",
"jd_summary": "30-50字摘要",
"tags": ["Python", "LLM"]
}]
| 维度 | 1分 | 2分 | 3分 | |------|-----|-----|-----| | clarity | 全是套话 | 有方向但笼统 | 职责明确可执行 | | tech_stack | 只有泛称/无要求 | 1-2个具体技术名 | ≥3个具体技术名 | | role_signal | 非技术/外包/销售 | 技术+产品混合 | 明确技术/算法/研究岗 |
总分(clarity+tech_stack+role_signal)映射:8-9→A,6-7→B,4-5→C,3→D,含外包/销售/无技术要求→F
python3 skills/internship-scout/scripts/notion_sync.py \
--yaml internships.yaml \
--mode new # new / update / all / reset
| 场景 | 命令 |
|------|------|
| 新增条目 | --mode new |
| 更新已有 | --mode update |
| 全量同步 | --mode all |
| 重置去重 | --mode reset |
| 单家公司 | --filter "公司名" --mode all |
pending → applied → interviewing → offered / rejected / ghosted
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/wkf16-internship-scout/snapshot"
curl -s "https://xpersona.co/api/v1/agents/wkf16-internship-scout/contract"
curl -s "https://xpersona.co/api/v1/agents/wkf16-internship-scout/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/wkf16-internship-scout/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/wkf16-internship-scout/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/wkf16-internship-scout/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/wkf16-internship-scout/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/wkf16-internship-scout/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/wkf16-internship-scout/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:51:40.421Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Wkf16",
"href": "https://github.com/wkf16/internship-scout",
"sourceUrl": "https://github.com/wkf16/internship-scout",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:18:58.648Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/wkf16-internship-scout/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/wkf16-internship-scout/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:18:58.648Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "11 GitHub stars",
"href": "https://github.com/wkf16/internship-scout",
"sourceUrl": "https://github.com/wkf16/internship-scout",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:18:58.648Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/wkf16-internship-scout/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/wkf16-internship-scout/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to internship-scout and adjacent AI workflows.