← スキル一覧に戻る

open-changed-files-review
by graysurf
A repo of reusable “skills” (shell scripts + templates + Markdown guides) that you can run from any LLM agent or directly from your terminal.
⭐ 0🍴 0📅 2026年1月13日
SKILL.md
name: open-changed-files-review description: Open files edited by the agent in VSCode after making changes, using the bundled open-changed-files script (silent no-op when unavailable).
Open Changed Files Review
Contract
Prereqs:
zshavailable onPATH.- Optional: VSCode CLI
code(missing → script no-ops). $AGENT_KIT_HOME/skills/open-changed-files-review/scripts/open-changed-files.zshavailable.
Inputs:
- File paths touched in the current run (preferred).
- Optional:
OPEN_CHANGED_FILES_MAX_FILESto cap opened files.
Outputs:
- Opens the requested files in VSCode (best-effort).
- If VSCode/tool unavailable: silent no-op (still provides a paste-ready command in chat when used manually).
Exit codes:
0: success or no-op- non-zero: invalid usage or unexpected runtime failure
Failure modes:
- VSCode CLI
codenot installed or not onPATH. - Input paths do not exist (script filters to existing files).
Use this skill when the agent has edited files and you want to immediately open the touched files in Visual Studio Code for human review.
Inputs
- A list of file paths that were modified/added in this run (preferred; does not require git).
Workflow
- Build a de-duplicated list of existing files from the touched paths.
- Determine the cap:
- Default:
OPEN_CHANGED_FILES_MAX_FILES=50 - If there are more files than the cap: open the first N and mention that it was truncated.
- Default:
- Prefer running:
$AGENT_KIT_HOME/skills/open-changed-files-review/scripts/open-changed-files.zsh --max-files "$max" --workspace-mode pwd -- <files...>
- If VSCode CLI
code(or the tool) is unavailable: silent no-op (exit0, no errors), but still print a paste-ready manual command plus the file list for the user.
Paste-ready command template
$AGENT_KIT_HOME/skills/open-changed-files-review/scripts/open-changed-files.zsh --max-files "${OPEN_CHANGED_FILES_MAX_FILES:-50}" --workspace-mode pwd -- <files...>
スコア
総合スコア
70/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です