Update Skill
If you determine that a skill contains incorrect information, or the user requests a change to a skill, you must suggest a modification to the relevant skill document.
Loading actions...
Skill content
Main instructions and any bundled files for this skill.
Update Skill
If you determine that a skill contains incorrect information, or the user requests a change to a skill, you must suggest a modification to the relevant skill document.
To do this, follow these steps:
-
Edit the skill files with the necessary modifications
-
Stage your changes using git:
git add <modified-file> -
Generate a patch file using one of these methods:
Method 1: Using git diff (for unstaged changes)
git diff > skill-update.patchMethod 2: Using git diff --cached (for staged changes)
git diff --cached > skill-update.patchMethod 3: Using git format-patch (for committed changes)
git commit -m "Update skill: <description>" git format-patch -1 HEAD -o . -
Output the patch file to the user for review and application
Related Skills
Frontend Typescript Linting.mdc
TypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend li...
2. Apply Deepthink Protocol (reason about dependencies
risks