Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

new-issue新一期

Agent Skill

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

总安装

267

周安装

11

GitHub Stars

公开资料未说明

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tenfyzhong/skills-hub --skill new-issue

简介

[简要确认所提交的内容]

  • 错误处理
  • 情况
  • 行动
  • 未提供上下文
  • 要求用户描述他们想要创建的问题
  • 用户取消
  • “问题创建已取消。未创建任何问题。”
  • API错误
  • 报告错误并建议检查权限
  • 速率有限
  • 通知用户并建议等待
  • 无写入权限
  • “您无权在 [REPO] 上创建问题。首先考虑分叉。”
  • 未指定存储库 + 不在 git 存储库中
  • 要求用户指定目标存储库或导航到 git 项目
  • 仓库格式无效
  • “存储库格式无效。使用‘owner/repo’或完整的 GitHub URL。”
  • 常见错误
  • 生成非英语的标题或描述
  • 在创建问题之前跳过明确的用户确认
  • 在问题正文中包含机密或敏感数据
  • 重要提示
  • 始终确认:未经用户明确确认,切勿创建问题
  • 保留上下文:在问题中包含相关的对话上下文
  • 灵活的目标:接受明确的存储库(URL 或所有者/存储库)或从 git 自动检测
  • 分叉意识:自动检测时,分叉的目标上游存储库
  • 格式:在问题正文中使用正确的 Markdown 格式
  • 隐私:不要在问题中包含敏感信息(API 密钥、密码等)
  • 迭代:允许在提交前进行多轮修改
  • 每周安装量
  • 11
  • 存储库
  • tenfyzhong/技能中心
  • 第一次看到
  • 2026 年 2 月 16 日
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克通行证

SKILL.md

New Issue Skill

Create a GitHub issue based on the current conversation context.

Prerequisites Check (MUST verify first)

Mode Detection: Check if user specified a target repository.

User InputModeGit Repo Required
https://github.com/owner/repoExplicitNo
owner/repoExplicitNo
No repo specifiedAuto-detectYes

Always Required:

# Check if gh CLI is available and authenticated
gh auth status

If gh not authenticated → "Please run gh auth login first."

Only for Auto-detect Mode (no repo specified):

# Check if in a git repository
git rev-parse --is-inside-work-tree

# Get repository info
gh repo view --json owner,name,url

If not in git repo and no target specified → "Please specify a target repository (e.g., owner/repo or GitHub URL), or navigate to a git project."

Input

The user triggers this skill with phrases like:

  • "new issue"
  • "create issue"
  • "file an issue"
  • "report this bug"
  • "submit feature request"

Optional: User may specify target repository:

  • Full URL: https://github.com/owner/repo
  • Short form: owner/repo

Context for the issue comes from:

  • Current conversation history
  • User's description of the problem/feature
  • Code snippets or error messages discussed
  • Any relevant file paths mentioned

Workflow

Step 1: Determine Target Repository

Case A: User specified a repository

Parse the user input to extract owner/repo:

# From URL: https://github.com/owner/repo or https://github.com/owner/repo/...
# Extract: owner/repo

# From short form: owner/repo
# Use directly

# Validate the repository exists and is accessible
gh repo view "$TARGET_REPO" --json owner,name,url

If repo not found or inaccessible → "Repository '$TARGET_REPO' not found or you don't have access."

Case B: Auto-detect from current git repo

# Get repository info and check if it's a fork
gh repo view --json owner,name,isFork,parent,url

# If it's a fork, get parent (upstream) info
IS_FORK=$(gh repo view --json isFork -q '.isFork')
if [ "$IS_FORK" = "true" ]; then
  UPSTREAM_OWNER=$(gh repo view --json parent -q '.parent.owner.login')
  UPSTREAM_NAME=$(gh repo view --json parent -q '.parent.name')
  TARGET_REPO="$UPSTREAM_OWNER/$UPSTREAM_NAME"
else
  # Use current repo as target
  TARGET_REPO=$(gh repo view --json owner,name -q '.owner.login + "/" + .name')
fi

Step 2: Analyze Context and Generate Issue Content

Based on the conversation context, generate:

Language Requirement:

  • The issue title and all description content MUST be in English.
  • If the conversation is in another language, translate/summarize into English.

Title Generation Rules:

  1. Keep concise (under 80 characters)
  2. Start with issue type prefix if clear: [Bug], [Feature], [Enhancement], [Question]
  3. Describe the core problem/request clearly
  4. Use imperative mood when appropriate
  5. Use English only

Description Generation:

Structure the description with these sections as applicable:

## Description

[Clear explanation of the issue/feature request]

## Context

[Relevant background information from the conversation]

## Steps to Reproduce (for bugs)

1. [Step 1]
2. [Step 2]
3. [Expected vs Actual behavior]

## Proposed Solution (if discussed)

[Any solutions discussed in the conversation]

## Additional Information

- [Relevant code snippets]
- [Error messages]
- [Environment details if relevant]

Step 3: Present Draft for User Review (CRITICAL)

MUST use the question tool to present the draft and get user confirmation.

Present the generated issue to the user:

## Issue Draft

**Target Repository**: [TARGET_REPO]

**Title**: [Generated Title]

**Description**:
[Generated Description]

---

Please review the above issue draft.

Use the question tool to ask:

Options:
1. "Submit as-is" - Create the issue with current content
2. "Modify title" - Change the issue title
3. "Modify description" - Change the issue description
4. "Cancel" - Do not create the issue

Step 4: Handle User Modifications

If user chooses to modify:

For title modification:

  • Ask user for the new title
  • Update and show the revised draft
  • Return to Step 3 for confirmation

For description modification:

  • Ask user what changes they want
  • User can provide:

- Specific text to add/remove/change - General instructions like "make it shorter" or "add more detail about X"

  • Update and show the revised draft
  • Return to Step 3 for confirmation

Loop until user confirms or cancels.

Step 5: Create the Issue

Once user confirms, create the issue:

# Create issue on the target repository
gh issue create \
  --repo "$TARGET_REPO" \
  --title "$ISSUE_TITLE" \
  --body "$ISSUE_BODY"

Use HEREDOC for body to preserve formatting:

gh issue create --repo "$TARGET_REPO" --title "$ISSUE_TITLE" --body "$(cat <<'EOF'
## Description

[Description content here]

## Context

[Context content here]

EOF
)"

Step 6: Report Results

After issue creation, provide:

# Get the created issue details
gh issue view --repo "$TARGET_REPO" <ISSUE_NUMBER> --json number,title,url,state

Output Format


Issue Created Successfully

Issue: #[NUMBER] - [TITLE] Repository: [TARGET_REPO] URL: [ISSUE_URL]

Summary

[Brief confirmation of what was submitted]


Error Handling

SituationAction
No context providedAsk user to describe the issue they want to create
User cancels"Issue creation cancelled. No issue was created."
API errorReport the error and suggest checking permissions
Rate limitedInform user and suggest waiting
No write access"You don't have permission to create issues on [REPO]. Consider forking first."
Repo not specified + not in git repoAsk user to specify target repo or navigate to a git project
Invalid repo format"Invalid repository format. Use 'owner/repo' or full GitHub URL."

Common Mistakes

  • Generating a title or description in a non-English language
  • Skipping explicit user confirmation before issue creation
  • Including secrets or sensitive data in the issue body

Important Notes

  1. Always Confirm: NEVER create an issue without explicit user confirmation
  2. Preserve Context: Include relevant conversation context in the issue
  3. Flexible Targeting: Accept explicit repo (URL or owner/repo) OR auto-detect from git
  4. Fork Awareness: When auto-detecting, target upstream repository for forks
  5. Formatting: Use proper Markdown formatting in issue body
  6. Privacy: Do not include sensitive information (API keys, passwords, etc.) in issues
  7. Iteration: Allow multiple rounds of modification before submission

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.97%
按下载量换算30

Claude

31.22%
按下载量换算27

Cursor

19.19%
按下载量换算17

Gemini CLI

8.91%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills