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

oss-pilot操作系统飞行员

Agent Skill

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

总安装

4,986

周安装

212

GitHub Stars

公开资料未说明

下载量

1,747
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install oss-pilot

简介

oss-pilot 端到端自动化开源贡献系统从问题发现到 CI 监控全程覆盖。

  • 智能选择高影响力修复方案并持续跟踪审核反馈迭代优化。
  • 减少人工干预提升贡献成功率适用于批量处理相似类型 Issue。
  • 频繁提交可能触发反垃圾机制建议合理设置执行间隔时间。
  • 尊重项目维护者节奏不要在未沟通情况下大规模推送变更请求。

SKILL.md

name
oss-contribution-system
description
End-to-end open-source GitHub contribution automation system. Discover high-value issues,
user_invocable
true
metadata
openclaw
requires
bins

OSS Contribution System

A complete system for contributing to open-source repos. Four skills work together in a learning loop --each contribution makes the next one better.

Quick Start

  1. First time? Just say: oss discover <repo-url-or-name>

- The system will create a profile, check repo openness, and find issues for you.

  1. Found an issue? Say: oss auto <repo> #12345

- End-to-end: implement -> open PR -> respond to bots -> ping maintainer.

  1. Already have a PR? Say: oss check <repo>

- Checks CI, bot comments, stale status, and takes action.

  1. Want a quality review? Say: oss pr review <repo> #12345

- Root cause analysis, diff check, description quality, bot response strategy.

How the System Works

discover --> auto --> pr --> check --> retrospective
   ^                   ^       |              |
   |                   +-------+              |
   |              (human review loop)         |
   |                                          v
   |                              profile grows (lessons, patterns)
   |                                          |
   +---- checks archived history -------------+
         (avoid past mistakes)

Profile (./oss-pilot-data/profiles/<repo>.md): Stores repo-specific knowledge --build commands, maintainer styles, bot behavior, lessons learned. Grows with each contribution. See _template.md for the schema.

Context files (./oss-pilot-data/context/pr-<repo>-<N>.md): Track each PR's approach, bot decisions, and outcome. Archived after merge/close for future reference.

The Four Skills

oss-discover (find.md)

Find high-value issues with the highest merge probability.

  • Checks repo openness (external contributor merge rate)
  • Checks issue velocity (how fast issues get claimed)
  • Scans 8 sources: high-signal labels -> bugs -> CI failures -> reclaimable PRs -> merged PR gaps -> scoped modules -> area merge rate -> codebase cleanup
  • Verifies bugs still exist, checks comments for signals, evaluates fix feasibility

Read: discover.md

oss-auto (auto.md)

One command from issue to opened PR. Orchestrates discover + pr.

  • Cold start: auto-creates profile for new repos
  • Feasibility check -> implement -> open PR -> respond to bots -> mark ready -> ping maintainer
  • Auto-detects build tooling (Node/Python/Go/Rust/Make)
  • Reads CONTRIBUTING.md and CLAUDE.md for repo conventions

Read: auto.md

oss-pr (pr.md)

Quality gate for PRs. Validates before requesting review.

  • Root cause analysis (right layer? blast radius? semantic contracts?)
  • Common mistake patterns and anti-patterns
  • PR description with "What did NOT change" and "What I Did NOT Verify"
  • Bot response strategy (accept/decline/repeat handling)
  • CI failure triage template

Read: pr.md

oss-check (check.md)

Morning check-in for all pending PRs.

  • CI/bot/stale status monitoring
  • Retrospective on merged/closed PRs (writes Outcome + routes lessons)
  • Maintenance: prunes stale lessons, archives old context files
  • Handles fork PR CI skipping (normal for external contributors)

Read: check.md

Prerequisites

  • gh CLI installed and authenticated (gh auth status)
  • GitHub account with a fork of the target repo
  • Optional: local clone for codebase scanning (Source 8)

Security Model

This skill instructs the agent to run build, lint, and test commands (e.g., pnpm install, make, cargo test) from the target repository. This is inherent to contribution automation --you cannot validate a fix without running the repo's toolchain.

Threat surface: If the target repo contains malicious build scripts (e.g., postinstall hooks), those commands execute on your machine. This is the same risk as manually cloning a repo and running npm install.

How risk is managed:

  • User trust boundary: You choose which repo to target. The skill never picks repos autonomously.
  • Runtime gating: OpenClaw's exec approval system prompts before executing shell commands. The skill issues instructions; the runtime decides whether to run them.
  • Scope checkpoint: The skill stops and asks before committing to changes >5 files or >200 lines.

Recommended hardening:

  • Run inside a container (openclaw --container <name>) or VM when targeting unfamiliar repos.
  • Review the repo's package.json scripts / Makefile targets before first run.
  • Use a dedicated GitHub account for automation if you prefer isolation.

Data Directories

The system creates and manages these directories:

  • ./oss-pilot-data/profiles/ --one profile per repo
  • ./oss-pilot-data/context/ --active PR context files
  • ./oss-pilot-data/context/_archived/ --completed PR context files (for learning)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.09%
按下载量换算1,242

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install oss-pilot 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills