Token导航 LogoToken导航TokenDH.com
开发操作浏览器clawhub未标认证来源可访问clear审计通过

openclaw-issueOpenClaw issue 开发

Agent Skill

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

总安装

6,060

周安装

250

GitHub Stars

1

下载量

1,980
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-issue

简介

使用技能申诉、错误报告、功能请求和问题模板为 OpenClaw/ClawHub 项目创建并提交 GitHub 问题。

SKILL.md

OpenClaw Issue Creator | OpenClaw Issue 创建器

English | 中文

A specialized skill for creating GitHub Issues for OpenClaw/ClawHub projects - supports Skill appeals, bug reports, and feature requests.

专为 OpenClaw/ClawHub 项目创建 GitHub Issue 的 skill - 支持 Skill 申诉、Bug 报告、功能请求等。


Features | 功能

English:

  • Quick creation of OpenClaw/ClawHub related Issues
  • Built-in Skill appeal template (for skills flagged as suspicious)
  • Built-in Bug report and feature request templates
  • Support for generating pre-filled URLs or using GitHub CLI

中文:

  • 快速创建 OpenClaw/ClawHub 相关 Issue
  • 内置 Skill 申诉模板(针对被标记为可疑的 skill)
  • 内置 Bug 报告和功能请求模板
  • 支持生成预填充 URL 或使用 GitHub CLI

Usage | 使用方法

English:

When a user requests to create an OpenClaw-related Issue, follow these steps:

中文:

当用户请求创建 OpenClaw 相关 Issue 时,按以下流程执行:

Step 1: Determine Issue Type | 步骤 1:确定 Issue 类型

Type中文DescriptionLabel
skill-appealSkill 申诉Skill flagged as suspicious, request reviewskill-appeal
bugBug 报告Report a bugbug
feature功能请求Feature requestenhancement
question问题咨询General questionquestion

Step 2: Collect Information | 步骤 2:收集信息

English:

Collect different information based on the type:

中文:

根据类型收集不同信息:

Skill Appeal | Skill 申诉

English:

  1. Skill Slug: e.g., social-media-dashboard
  2. Skill Name: e.g., Social Media Dashboard
  3. Owner: Your username
  4. Skill description
  5. Why it's a false positive (optional)

中文:

  1. Skill Slug: 如 social-media-dashboard
  2. Skill Name: 如 Social Media Dashboard
  3. Owner: 你的用户名
  4. Skill 功能描述
  5. 为什么是误报(可选)

Step 3: Create Issue | 步骤 3:创建 Issue

Method 1: Generate Pre-filled URL | 方式 1:生成预填充 URL(推荐)

python3 -c "
import urllib.parse

title = '<issue-title>'
body = '''<issue-body>'''

encoded_title = urllib.parse.quote(title)
encoded_body = urllib.parse.quote(body)

url = f'https://github.com/openclaw/clawhub/issues/new?title={encoded_title}&body={encoded_body}'
print(url)
"

Method 2: Use GitHub CLI | 方式 2:使用 GitHub CLI

gh issue create \
  --repo openclaw/clawhub \
  --title "<title>" \
  --body "<body>" \
  --label "<label>"

Step 4: Return Result | 步骤 4:返回结果

English:

✅ Issue URL generated! 👉 Click to submit Issue Review the content and click Submit new issue.

中文:

✅ Issue 链接已生成! 👉 点击提交 Issue 打开后检查内容,点击 Submit new issue 即可。

Issue Templates | Issue 模板

Skill Appeal Template | Skill 申诉模板

## Skill Information

- **Slug**: <skill-slug>
- **Name**: <skill-name>
- **Owner**: <username>
- **URL**: https://clawhub.ai/<username>/<skill-slug>

## Description

<skill-description>

## Why This is a False Positive

The skill was flagged because it contains patterns that resemble automation scripts, but these are **legitimate operations**:

1. **AppleScript/Browser Automation**: Used to automate user's own browser with their consent
2. **JavaScript Execution**: Standard practice for data extraction in controlled environments
3. **Shell Commands**: Local operations only, no external servers contacted

## Security Guarantee

- ✅ No external file downloads
- ✅ No credential theft or exfiltration
- ✅ No reverse shells or remote code execution
- ✅ No hardcoded API keys or secrets
- ✅ All operations are local to the user's machine

## Code Review

The skill file can be reviewed at:
https://clawhub.ai/<username>/<skill-slug>

## Request

Please review and remove the "suspicious patterns detected" flag from this skill.

Thank you!

Bug Report Template | Bug 报告模板

## Bug Description | Bug 描述

<description>

## Steps to Reproduce | 复现步骤

1. <step 1>
2. <step 2>
3. <step 3>

## Expected Behavior | 预期行为

<expected>

## Actual Behavior | 实际行为

<actual>

## Environment | 环境信息

- OS: <os>
- Version: <version>

## Screenshots | 截图

If applicable, add screenshots.

Feature Request Template | 功能请求模板

## Feature Description | 功能描述

<description>

## Use Case | 使用场景

<use-case>

## Proposed Solution | 建议方案

<solution>

Trigger Words | 触发词

English:

Create OpenClaw Issue
Submit ClawHub Issue
Skill appeal
My skill was flagged
OpenClaw bug report
ClawHub feature request

中文:

创建 OpenClaw Issue
提交 ClawHub Issue
Skill 申诉
我的 Skill 被标记了
OpenClaw Bug 报告
ClawHub 功能请求

Related Repositories | 相关仓库

RepositoryPurpose用途
openclaw/clawhubClawHub platform issues, Skill appealsClawHub 平台问题、Skill 申诉
openclaw/openclawOpenClaw core issuesOpenClaw 核心问题

Notes | 注意事项

English:

  • Requires a GitHub account
  • Ensure the Skill doesn't contain malicious code before appealing
  • Provide as much detail as possible to speed up review

中文:

  • 需要 GitHub 账号
  • 申诉前确保 Skill 确实不包含恶意代码
  • 提供尽可能详细的信息以加快审核

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.24%
按下载量换算1,826

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills