用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill todo-gh-issue-import命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | todo-gh-issue-import |
| description | > Use when this capability is needed. |
Import open GitHub issues into local todo files using the configured todos directory (default: docs/agent-todos/).
This skill requires the GitHub CLI (gh). Before starting, verify it is installed and authenticated:
gh --version
If the command fails, inform the user:
The
ghCLI is required but not installed. Install it from https://cli.github.com/ and rungh auth loginto authenticate.
Do not proceed until gh is available and authenticated.
Run gh --version to verify the CLI is available. If not, show the installation message above and stop.
Use gh issue list to fetch all open issues from the current repository:
gh issue list --state open --json number,title,body,labels --limit 100
If there are no open issues, inform the user and stop.
For each issue, determine the target category subdirectory under the todos directory:
/todo-gh-issue-import data), use it for all issuesmisc/For each issue, use the /todo-creation skill to create the todo file:
Skill: todo-creation
Args: <category> <issue-title>
This ensures proper sequential numbering, file naming, and frontmatter generation.
After /todo-creation creates the file (with status: new), populate it with the GitHub issue content and update the frontmatter:
/todo-creation output## Problem / Context
(content from the GitHub issue body)
## Tasks
- [ ] (extracted from issue body if possible, otherwise leave for the user)
status from new to ready (since imported issues already have content)After successfully creating and populating the todo file, close the GitHub issue with a comment:
gh issue close <number> --comment "Imported to <file-path>"
Where <file-path> is the relative path like docs/agent-todos/data/0042_fix_soft_404_errors.md.
An imported issue #7 titled "Fix soft 404 errors" with label "data" becomes <todos-directory>/data/0042_fix_soft_404_errors.md:
---
title: Fix soft 404 errors
status: ready
projects:
- '[[my-project]]'
tags:
- todo
- agent-todo
---
## Problem / Context
(content from the GitHub issue body)
## Tasks
- [ ] ...
The GitHub issue is then closed with the comment: Imported to <todos-directory>/data/0042_fix_soft_404_errors.md
misc/status: ready since they already have content from the issue/todo-creation skill handles sequential numbering and file naming conventionsgh is not authenticated, the user will see an auth error — direct them to run gh auth loginConverted and distributed by TomeVault — claim your Tome and manage your conversions.