<h1 align="center">
<a href="https://prompts.chat">
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.
Sign in to like and favorite skills
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.patch
Method 2: Using git diff --cached (for staged changes)
git diff --cached > skill-update.patch
Method 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