Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

skill-navigator技能导航器

Agent Skill

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

总安装

13,618

周安装

579

GitHub Stars

公开资料未说明

下载量

4,771
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:skill-navigator(技能导航器)
来源仓库:https://github.com/brandon-zhanghaodong/skill-navigator
安装命令:
openclaw skills install skill-navigator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-navigator

简介

为 OpenClaw 用户提供交互式仪表板,直观展示已安装技能功能。

  • 支持技能分类浏览、依赖关系查看与快速检索。
  • 适合新用户上手或团队内部知识管理使用。skill-navigator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时无需额外配置,自动同步当前环境中的技能状态。
  • 安装前请核实权限范围及是否会触发本地服务启动。

SKILL.md

name
skill-dashboard-visualizer
description
Provides a highly visual and interactive dashboard for OpenClaw users to easily understand and recall the functionalities of installed skills, featuring a visual overview, capability map, and contextual prompting. Use this skill to generate a comprehensive visualization of all installed skills and their capabilities.

Skill Dashboard Visualizer

This skill is designed to enhance the OpenClaw user experience by providing a clear, interactive, and visually appealing dashboard that summarizes the capabilities of all installed skills. It addresses the common pain point of users finding it difficult to remember and utilize the full potential of their diverse skill set.

Core Features

This skill integrates three key functionalities to offer a holistic view and interaction model for managing skills:

  1. Visual Dashboard (可视化看板):

* Purpose: To present a quick, at-a-glance overview of each installed skill. * Mechanism: Automatically extracts metadata (name, description) from SKILL.md files. Each skill is represented as a card with an icon, category tags, and a concise summary of its core abilities. The design adheres to a "blue tech style" for a modern and professional aesthetic.

  1. Capability Map (能力矩阵):

* Purpose: To illustrate the collective and individual strengths of installed skills across various domains. * Mechanism: Utilizes a radar chart to visualize skill coverage in key capability areas such as Data Processing, Creative Writing, Technical Development, Logical Reasoning, and Communication. This helps users identify skill gaps or overlaps.

  1. Contextual Prompting (智能联想提示):

* Purpose: To proactively suggest relevant skills based on user input, making skill discovery and activation seamless within OpenClaw or other Claw-like applications. * Mechanism: Provides a retrieval mechanism for OpenClaw or current Claw-like applications to quickly match the most suitable installed skills when a user asks a question, prompting the user with options like: "您已安装的 [Skill名称] 具备处理此任务的能力,是否启用?"

Usage Instructions

To generate the skill dashboard, follow these steps:

  1. Scan Installed Skills: Execute the scan_skills.py script to gather data on all skills present in the /home/ubuntu/skills/ directory. This script parses each SKILL.md file to extract necessary metadata and performs a preliminary heuristic mapping of capabilities.
    python3 /home/ubuntu/skills/skill-dashboard-visualizer/scripts/scan_skills.py

The output will be a JSON array containing information for each skill, including its name, description, and a calculated capabilities score across different dimensions.

  1. Generate Dashboard Visualization: Use the dashboard_template.md along with the data obtained from scan_skills.py to render the final dashboard. The template is designed to dynamically populate the visual dashboard, capability map (mermaid radar chart), and contextual prompting examples.

The dashboard_template.md expects placeholders to be replaced with actual skill data. For the visual dashboard table, iterate through the scanned skill data. For the capability map, aggregate the capability scores from all skills to form a combined radar chart dataset. For contextual prompting, identify the top skills for each capability dimension.

*Example of data integration for the template (conceptual):*

    import json
    import os

    # Assume skills_data is obtained from scan_skills.py
    # skills_data = json.loads(shell_output_from_scan_skills)

    template_path = "/home/ubuntu/skills/skill-dashboard-visualizer/templates/dashboard_template.md"
    with open(template_path, "r", encoding="utf-8") as f:
        template_content = f.read()

    # Populate Visual Dashboard table (simplified example)
    dashboard_table_rows = []
    for skill in skills_data:
        icon = "💡" # Placeholder, ideally based on skill type
        name = skill.get("name", "N/A")
        description = skill.get("description", "N/A")
        use_cases = "" # Derive from description or specific tags
        dashboard_table_rows.append(f"| {icon} | **{name}** | {description} | {use_cases} |")

    # Replace placeholder in template
    # template_content = template_content.replace("| {{icon}} | **{{name}}** | {{description}} | {{use_cases}} |", "\
".join(dashboard_table_rows))

    # Populate Capability Map (simplified aggregation)
    total_data = sum(s["capabilities"].get("Data", 0) for s in skills_data)
    total_creative = sum(s["capabilities"].get("Creative", 0) for s in skills_data)
    total_tech = sum(s["capabilities"].get("Technical", 0) for s in skills_data)
    total_logic = sum(s["capabilities"].get("Logic", 0) for s in skills_data)
    total_comm = sum(s["capabilities"].get("Communication", 0) for s in skills_data)

    # template_content = template_content.replace("data: [{{data_score}}, {{creative_score}}, {{tech_score}}, {{logic_score}}, {{comm_score}}]",
    #                                           f"data: [{total_data}, {total_creative}, {total_tech}, {total_logic}, {total_comm}]")

    # Further replacements for contextual prompting...

    # Final rendered_dashboard_md can then be displayed or saved.

Bundled Resources

  • scripts/scan_skills.py: A Python script to scan the /home/ubuntu/skills/ directory, parse SKILL.md files, extract metadata, and heuristically map skill capabilities.
  • templates/dashboard_template.md: A Markdown template for generating the visual dashboard, including placeholders for skill information, a Mermaid radar chart for capability mapping, and examples for contextual prompting.

Design Considerations

  • UI/UX: The dashboard is designed with a "blue tech style" aesthetic, ensuring a clean, modern, and professional look that aligns with user preferences for web applications.
  • Extensibility: The scan_skills.py script can be easily extended to include more sophisticated parsing logic or integrate with a more robust capability taxonomy.
  • Interactivity: While the initial output is Markdown, the design is conducive to being rendered into an interactive web interface (e.g., using React components for cards and a charting library for the radar graph) for a richer user experience.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

83.27%
按下载量换算3,973

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills