.github/skills/clone-code-changes/SKILL.md
Use when user asks to clone code changes from local repository to a new directory for review or testing.
npx skillsauth add sonht1109/vscode-copilot-kit clone-code-changesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when the user requests to clone code changes from local repository to a new directory for review or testing.
node -e "console.log(new Date().toISOString().replace('T', '_').replace(/[:.-]/g, '').replace('Z', ''))"
.github directory). Must use this cwd for all file paths in the steps below.Must follow these steps strictly in order:
git add -A && \
echo "=== STAGED FILES ===" && \
git diff --cached --stat && \
echo "=== METRICS ===" && \
git diff --cached --shortstat | awk '{ins=$4; del=$6; print "LINES:"(ins+del)}' && \
git diff --cached --name-only | awk 'END {print "FILES:"NR}'
<cwd>/notes/code-changes/<now>/diff.patch.First, create the directory for the code changes if it doesn't exist:
mkdir -p <cwd>/notes/code-changes/<now>
Then run command:
git diff --cached > <cwd>/notes/code-changes/<now>/diff.patch
node <cwd>/.github/skills/clone-code-changes/scripts/separate-patch.js <now>
Provide output in the following format:
The code changes have been successfully cloned.
- Code change patch directory: `<cwd>/notes/code-changes/<now>/contents`
development
This skill focuses on writing/designing effective and comprehensive tests for code. It emphasizes the importance of covering various scenarios, including happy cases, error cases, edge cases, and input validation. The skill also highlights the need to write tests based on expected correct behavior rather than current implementation, and to maintain a high level of coverage (at least 80%).
content-media
Use when complex problems require systematic step-by-step reasoning with ability to revise thoughts, branch into alternative approaches, or dynamically adjust scope. Ideal for multi-stage analysis, design planning, problem decomposition, or tasks with initially unclear scope. DO NOT use when single-step answers suffice.
tools
--- name: sentry description: Guide for using the Sentry CLI to interact with Sentry from the command line. Use when the user asks about viewing issues, events, projects, organizations, making API calls, or authenticating with Sentry via CLI. Primary workflow: given a short issue ID (e.g. PROJECT-123), fetch full bug report with description and stack trace. --- # Sentry CLI Skill This skill handles Sentry CLI operations: authentication, issue lookup by short ID, event details, and bug report g
documentation
Use when doing tasks related to markdown files, such as editing README.md or other documentation files.