ソース情報
- リポジトリ
- tomevault-io/tomes
- ソースの最終更新活動
- 2026年7月23日 21:48
- 検出された SKILL.md の言語
- 複数言語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/tomevault-io/tomes --skill github-issues-mgmtコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.