← 返回
未分类 中文

SkillNav

Search 3,900+ MCP servers with install commands, get daily AI brief, and discover trending tools — in Chinese. Data from skillnav.dev editorial team.
搜索 3,900+ MCP 服务器(含安装命令),获取每日 AI 简报,发现热门工具。数据来自 skillnav.dev 编辑团队。
huiw86 huiw86 来源
未分类 clawhub v2.0.0 2 版本 100000 Key: 无需
★ 0
Stars
📥 351
下载
💾 2
安装
2
版本
#latest

概述


name: skillnav

description: "Search 3,900+ MCP servers with install commands, get daily AI brief, query papers, search everything, and discover trending tools — in Chinese. Data from skillnav.dev editorial team."

version: 2.0.0

argument-hint: "brief | mcp | search | paper | trending | update"

allowed-tools: WebFetch, Bash

metadata:

openclaw:

emoji: "🧭"

homepage: https://github.com/skillnav-dev/skillnav-skill

requires:

bins:

  • curl

Route based on $ARGUMENTS[0]:

CommandAction
-------------------------------------------------------------------------
briefIf $ARGUMENTS[1] is "papers", "news", or "tools": WebFetch https://skillnav.dev/api/skill/query?type=brief§ion=$ARGUMENTS[1]. Otherwise: WebFetch https://skillnav.dev/api/skill/query?type=brief
mcpWebFetch https://skillnav.dev/api/skill/query?type=mcp&q=$ARGUMENTS[1]
searchWebFetch https://skillnav.dev/api/skill/query?type=search&q=$ARGUMENTS[1..] (join remaining args with space, URL-encode)
paperIf $ARGUMENTS[1] matches arXiv ID pattern (YYMM.NNNNN): WebFetch https://skillnav.dev/api/skill/query?type=paper&id=$ARGUMENTS[1]. Otherwise: WebFetch https://skillnav.dev/api/skill/query?type=paper&q=$ARGUMENTS[1]
trendingWebFetch https://skillnav.dev/api/skill/query?type=trending
updateBash: curl -sL https://raw.githubusercontent.com/skillnav-dev/skillnav-skill/main/SKILL.md -o ~/.claude/skills/skillnav/SKILL.md && echo "SkillNav Skill updated."
(other)Show usage message — do NOT fetch any URL

If $ARGUMENTS is empty or does not match any command above, show this usage message and STOP (do NOT fetch any URL):

SkillNav — AI 开发者工具站 (skillnav.dev)

  /skillnav brief              今日 AI 日报
  /skillnav mcp <keyword>      搜索 MCP Server
  /skillnav search <keyword>   搜索文章、工具、概念
  /skillnav trending           本周热门工具
  /skillnav paper <arxiv-id>   查看论文详情
  /skillnav update             更新到最新版本

Format Rules

Version check

After every API response, compare meta.skill_version from the response with this file's version (2.0.0).

If the API version is newer, append at the very end of your output:

> 💡 SkillNav Skill 有新版本可用 — /skillnav update

brief (full or section-filtered)

If section field is absent (full brief), format as:

  1. TL;DR: One bold sentence summarizing the headline
  2. Headline title with > why_important in blockquote
  3. Bulleted highlights, each with editor comment in parentheses
  4. If papers array is non-empty, show "论文速递":
    • {title} {attitude}

{what}

> {implication}

  1. If is_fallback is true: "(注意:这是 {date} 的日报,今日暂无更新)"
  2. Footer: "完整日报 → {url}"

If section is "papers", format papers only:

  1. Header: "论文速递 · {date}"
  2. For each paper:

{title} {attitude}

{what}

> {implication}

趋势:{trend}

→ arXiv: {url}

  1. Footer: "完整日报 → {url}"

If section is "news", format highlights only:

  1. Header: "行业动态 · {date}"
  2. Headline (if non-empty): {headline.title} — {headline.why_important}
  3. Bulleted highlights with editor comments
  4. Footer: "完整日报 → {url}"

mcp

Format each result as a numbered list with one blank line between items:

  1. {name} {category} ⭐ {stars}

{description_zh}

> {editor_comment_zh}

```

{install_command}

```

If editor_comment_zh is null, skip the blockquote line.

If results are empty: "未找到匹配的 MCP Server,试试更宽泛的关键词。"

Footer: "共 {returned} 个结果{has_more ? '(更多结果请访问 skillnav.dev)' : ''}"

search

Group results by result_type in this order: concept > mcp > skill > article.

Concept:

{term}({zh})— {one_liner}

→ {url}

MCP / Skill:

{name} ⭐ {stars} — {description_zh}

> {editor_comment_zh}

```

{install_command}

```

If editor_comment_zh is null, skip the blockquote line.

If install_command is null, skip the code block.

Article:

{title_zh} ({source}, {reading_time}min)

{summary_zh}

→ {url}

If results are empty: "未找到与 "{query}" 相关的内容,试试其他关键词。"

Footer: "共 {returned} 个结果"

trending

Format as a ranked list grouped by tool_type:

MCP Server

  1. {name} ⭐ {stars} (+{weekly_stars_delta} this week)

> {editor_comment_zh}

Skill

  1. {name} ⭐ {stars} (+{weekly_stars_delta} this week)

> {editor_comment_zh}

If a group has no items, omit it entirely.

paper (single by ID)

If has_translation is true:

  1. {translation.title_zh} {brief_card.attitude} (if brief_card exists)
  2. If brief_card exists: {brief_card.what}

> {brief_card.implication}

  1. "已有完整中文翻译 → {translation.url}"

If has_translation is false:

  1. If brief_card exists:

{brief_card.title} {brief_card.attitude}

{brief_card.what}

> {brief_card.implication}

趋势:{brief_card.trend}

  1. If no brief_card: "未找到该论文的导读信息。"
  2. "arXiv 原文 → {arxiv_url}"

paper (keyword search)

  1. Header: "论文搜索 · 最近 {days} 天 · "{query}""
  2. For each result:

{title} {attitude} · {date}

{what}

> {implication}

→ arXiv: {url}

  1. If results are empty: "最近 {days} 天未找到与 "{query}" 相关的论文。"
  2. Footer: "共 {returned} 篇结果"

Global Footer

Append this line at the very end of EVERY output (after all content, after version check if present):

— SkillNav · skillnav.dev

Error Handling

  • If WebFetch fails or returns non-JSON: "SkillNav API 暂时不可用,请直接访问 skillnav.dev"
  • If API returns { "error": ... }: Show the message field to the user
  • NEVER fabricate data or suggest keywords that weren't in the response

版本历史

共 2 个版本

  • v2.0.0 当前
    2026-05-03 09:22 安全 安全
  • v1.0.0
    2026-03-31 17:34 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Find Skills

root
帮助用户发现和安装智能体技能,当用户询问如「如何做X」、「找X的技能」、「有能做...的吗」等问题时
★ 1,506 📥 566,115
ai-agent

self-improving agent

pskoett
记录自身发现以实现自我改进的技能
★ 4,150 📥 924,285
ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,433 📥 327,414