用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/tomes --skill github-issues-mgmt命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
> Use when this capability is needed.
Use when writing kernel, account, or note MASM code that reads from or writes to the advice provider (advice stack / advice map) — validate advice data.
Use when writing a Rust test that exercises a failure path or a MASM test that expects a `panic` / `assert` — assert on the specific expected error variant or error code.
基于 SOC 职业分类
正在显示 SKILL.md
| name | github-issues-mgmt |
| description | > Use when this capability is needed. |
从文字描述、CSV、Excel 中提取需求,自动创建 GitHub Issues。也可列出/查询现有 Issues。
beyonai/ByClawIMPORTANT: Always start by executing Step 0. Do NOT ask the user for a token. Do NOT suggest creating a token. Do NOT mention environment variables.
node skills/github-issues-mgmt/scripts/gh-issues-list.mjs --limit 1
If "ok": true → proceed based on user intent.
If "auth_required": true → output already contains message with 授权链接和 code:
message field content to the user verbatimnode skills/github-code-analysis/scripts/gh-auth-login.mjs --poll禁止:不得提及 GITHUB_TOKEN、PAT、Personal Access Token、环境变量。授权完全由脚本自动处理。
用户提供了一段文字描述、CSV 内容、或 Excel 文件路径,要求创建 Issues。
解析用户输入:
确认 issue 列表:向用户展示将要创建的 issues 摘要,确认后再创建:
即将创建 N 个 Issues:
1. [bug] 标题1 — 描述摘要
2. [feature] 标题2 — 描述摘要
...
确认创建?
echo '{
"issues": [
{"title": "标题1", "body": "详细描述", "labels": ["bug"]},
{"title": "标题2", "body": "详细描述", "labels": ["feature"]}
]
}' | node skills/github-issues-mgmt/scripts/gh-issues-create.mjs
从文字中提取 issues 时:
bug;包含"功能"/"新增"/"feature" → enhancement;包含"优化"/"改进" → improvement从 CSV 中提取 issues 时:
用户说"列出 issues"、"有哪些 bug"、"查看待办"等。
# 列出所有 open issues
node skills/github-issues-mgmt/scripts/gh-issues-list.mjs --state open --limit 20
# 按标签过滤
node skills/github-issues-mgmt/scripts/gh-issues-list.mjs --labels bug --limit 10
# 列出已关闭的
node skills/github-issues-mgmt/scripts/gh-issues-list.mjs --state closed --limit 10
展示结果时用表格格式:
| # | 标题 | 标签 | 负责人 | 更新时间 |
|---|---|---|---|---|
| 1 | ... | bug | user1 | 2026-05-28 |
| 脚本 | 用途 |
|---|---|
gh-issues-create.mjs | 批量创建 issues(stdin JSON) |
gh-issues-list.mjs | 列出/查询 issues |
beyonai/ByClaw,不需要问用户Source: beyonai/ByClaw — distributed by TomeVault.