用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/TuYv/ccpm --skill create-issue命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | create-issue |
| description | Draft and submit a GitHub issue from a user idea or bug description, with bilingual body and correct labels. |
| argument-hint | <feature idea or bug description> |
| allowedTools | ["run_shell_command","read_file","write_file","glob","grep_search"] |
Take the user's idea or bug description, investigate the codebase for context, draft an issue for review, and submit once approved.
The user provides a brief description of a feature request or bug report via the skill argument.
Determine whether the request is a feature request or a bug report.
Search for relevant code, files, and existing behavior related to the request.
Build a thorough understanding of how the current system works. Note any related
existing issues found via gh issue list --search.
.github/ISSUE_TEMPLATE/feature_request.yml.github/ISSUE_TEMPLATE/bug_report.ymlUse the template's field labels and descriptions to structure the draft.
Write a markdown draft to .qwen/issues/draft-<slug>.md for the user to review.
Rules:
Write from the user's perspective — not as an implementation spec.
Keep language clear and concise; avoid internal implementation details.
Title stays in English only.
Bilingual body: English content first, Chinese translation at the end wrapped in a collapsible block:
<details>
<summary>中文</summary>
(Chinese translation here)
</details>
Present the draft. Iterate on feedback until the user is satisfied. Do not submit until the user explicitly approves.
When the user confirms, create the issue with gh issue create:
gh issue create --title "..." --body-file .qwen/issues/draft-<slug>.md
Apply labels based on type:
type/feature-request, status/needs-triagetype/bug, status/needs-triageReport the issue URL back to the user.