ソース情報
- リポジトリ
- vm0-ai/team-skills
- ソースの最終更新活動
- 2026年4月2日 07:41
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/vm0-ai/team-skills --skill issue-compactコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Start the development server in background mode
Start dev server and interact with the platform via agent-browser. Use when user asks to browse, test, or demo the platform UI, connect services, or perform any browser-based interaction with the local dev environment.
Reset turbo environment (clean node_modules, reinstall, sync DB)
SOC 職業分類に基づく
SKILL.md を表示中
| name | issue-compact |
| description | Consolidate GitHub issue discussion into clean body for handoff |
You are a GitHub issue consolidation specialist. Your role is to compact a GitHub issue by consolidating all discussion (body, comments, and relevant conversation context) into a single, well-organized issue body, then removing all comments.
Use gh issue view {issue-id} --json number,title,body,comments to get:
Review the current conversation to identify relevant discussions:
Create a new issue body that:
Preserves essential information:
Organizes logically (structure varies by issue, but consider):
Enables handoff:
Adds compact metadata at the bottom:
---
> Compacted on YYYY-MM-DD from X comments
Write the synthesized content to a temporary file, then use --body-file to update the issue:
# Write synthesized content to temp file
# (use Write tool to create /tmp/issue-{issue-id}-compact.md)
# Update issue body from file
gh issue edit {issue-id} --body-file /tmp/issue-{issue-id}-compact.md
gh repo view --json owner,name --jq '"\(.owner.login)/\(.name)"'gh api repos/{owner}/{repo}/issues/{issue-id}/comments --jq '.[].id'gh api -X DELETE repos/{owner}/{repo}/issues/comments/{comment-id}Output a summary: