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

github-repo-quickstartGitHub repo quickstart 搜索

Agent Skill

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

总安装

3,360

周安装

140

GitHub Stars

公开资料未说明

下载量

1,120
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install github-repo-quickstart

简介

为陌生 GitHub 存储库提供低门槛入门指引,降低理解成本。

  • 当用户提供仓库链接时自动触发,输出环境搭建与使用示例。
  • 通过 clawhub 安装,返回结构化步骤便于直接复制执行。
  • 仅做信息汇总,不修改任何文件或依赖外部服务调用。
  • github-repo-quickstart 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
github-repo-quickstart
description
Use when the user wants a fast, low-friction onboarding guide for an unfamiliar GitHub repository. Trigger when a GitHub repo URL is provided, or when the user asks how to quickly understand a repo's purpose, architecture, setup, dependencies, entrypoints, releases, or maintenance status.

GitHub Repo Quickstart

Overview

This skill produces a compressed, developer-first onboarding guide for an unfamiliar GitHub repository. It is for cases where the user wants to understand the repo quickly and start using it immediately, without reading the entire README or source tree.

This document stays in English. Actual user-facing output must follow the user's language by default. If the user explicitly requests another language, follow the user's explicit request instead. This rule applies to headings, explanations, directory-tree annotations, pitfalls, and all other visible output.

Required Workflow

When the user provides a GitHub repository URL, execute the workflow in this exact order. Do not skip a step unless the repository is inaccessible.

1. Fetch_Repo_Skeleton

Goal: identify the repo shape before interpreting details.

Collect:

  • Primary language or languages
  • Frameworks and runtime family
  • Monorepo or single-project layout
  • Top-level directory tree
  • Build files, package manifests, Docker files, CI files, env examples, and config roots

If an environment provides a helper literally named Fetch_Repo_Skeleton, use it first. Otherwise emulate it with GitHub MCP, repository tree inspection, and manifest discovery.

2. Analyze_Dependencies

Goal: understand how the repo is expected to run.

Collect:

  • Package managers and dependency manifests
  • Runtime versions from files such as .nvmrc, .python-version, go.mod, Cargo.toml, pyproject.toml, Dockerfiles, toolchain files, or CI configs
  • Environment setup hints
  • Preferred local setup path
  • Whether Docker or Docker Compose is the safest path
  • Hidden system dependencies and likely conflicts

If an environment provides a helper literally named Analyze_Dependencies, use it first. Otherwise infer from manifests, Docker files, lockfiles, CI, and task runners.

3. Locate_Entrypoints

Goal: show the shortest path into the core business logic.

Collect:

  • Main server, CLI, worker, or library entrypoints
  • Boot sequence: config load, dependency wiring, database or cache initialization, HTTP or RPC server startup, command dispatch, job loop, or request pipeline
  • One or two files the user should read first

If an environment provides a helper literally named Locate_Entrypoints, use it first. Otherwise infer from main.*, cmd/, src/main.*, framework boot files, router setup, and executable targets.

4. Check_Releases_And_Health

Goal: prevent the user from onboarding onto a dead or misleading version.

Collect:

  • Latest usable release or latest stable tag
  • Direct release link
  • Maintenance signal: active, slow-moving, or likely unmaintained
  • Evidence such as recent commits, release cadence, issue activity, or archived status

If an environment provides a helper literally named Check_Releases_And_Health, use it first. Otherwise inspect GitHub releases, tags, recent commits, and repository metadata.

Operating Rules

  • Never copy the README verbatim. Distill and verify.
  • Favor primary evidence from the repository itself over marketing language.
  • If Docker exists and looks maintained, recommend Docker first.
  • If Docker exists but is obviously stale or incomplete, say so and prefer the local path.
  • Prefer commands that are directly copy-pasteable.
  • Be explicit about version traps, OS-level dependencies, GPU or CUDA requirements, private submodules, generated code, or outdated docs.
  • If evidence is incomplete, say what is confirmed and what is inferred.
  • Keep the answer extremely compact. The reader is a developer, not a stakeholder.
  • Match the user's language for all user-visible wording.
  • If the user's message is mixed-language, follow the dominant language unless the user explicitly asks otherwise.

Output Contract

Return a Markdown document titled Repository Quickstart Guide, but translate the title and section headings into the user's language unless the user explicitly asked for English. Use the following section structure and keep the tone professional, direct, and practical.

1. One-Minute Overview

Include:

  • Core Positioning: one sentence on what the repo does and what pain it solves
  • Tech Stack: main language plus primary framework or runtime shape
  • Project Health: maintenance status, latest release version, and direct download or release link

2. Architecture & Tree

Requirements:

  • Show only the core tree
  • Omit tests, fixtures, static assets, screenshots, and low-signal files unless they are essential to bootstrapping
  • Every important directory or file in the tree must have a brief annotation in the user's language

Example style:

repo/
├── cmd/                  # Stores executable entrypoints
├── internal/             # Core business logic
├── pkg/                  # Reusable shared libraries
├── configs/              # Config files and templates
└── Dockerfile            # Container startup path

3. Quick Start

Include:

  • The safest environment recommendation
  • Docker-first commands if Docker is the best option
  • Clone and dependency-install commands
  • Run commands
  • A short Pitfalls subsection with only high-value traps

Command blocks must be directly executable and minimal.

4. Core Logic Navigator

Include:

  • A direct sentence equivalent to If you want to understand the core logic, start from ...
  • The first one or two files to read
  • A short execution-flow summary in order
  • A practical reading path, not an exhaustive architecture essay

Response Style

  • Keep SKILL.md in English, but generate user-facing output in the user's language
  • Be concise, specific, and implementation-oriented
  • Prefer file paths over vague descriptions
  • Avoid generic praise and filler
  • Do not overwhelm the user with exhaustive subsystem coverage
  • Optimize for helping the user start coding in minutes

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.87%
按下载量换算861

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills