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.