Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Related repos:
- This repo: `https://github.com/pinkpixel-dev/skills-collection-1`
- Companion repo: `https://github.com/pinkpixel-dev/skills-collection-2`

Chinese users can also search and install skills through [Skills宝](https://skilery.com).

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To maintain consistency with the 'Related repos' section, consider formatting this new entry as a bullet point. This keeps the list structure uniform.

Suggested change
Chinese users can also search and install skills through [Skills宝](https://skilery.com).
- Chinese users can also search and install skills through [Skills宝](https://skilery.com).


## What this repo contains

- `969` skill folders in [`SKILLS/`](/home/sizzlebop/PINKPIXEL/PROJECTS/CURRENT/skills-collection-1/SKILLS)
Expand Down Expand Up @@ -52,4 +54,4 @@ find SKILLS -name SKILL.md

## License

This repository is available under the MIT License. See [`LICENSE`](/home/sizzlebop/PINKPIXEL/PROJECTS/CURRENT/skills-collection-1/LICENSE).
This repository is available under the MIT License. See [`LICENSE`](/home/sizzlebop/PINKPIXEL/PROJECTS/CURRENT/skills-collection-1/LICENSE).

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Use a repository-relative link for LICENSE.

Line 57 currently points to a local filesystem path, which breaks for all other users on GitHub.

🔧 Suggested fix
-This repository is available under the MIT License. See [`LICENSE`](/home/sizzlebop/PINKPIXEL/PROJECTS/CURRENT/skills-collection-1/LICENSE).
+This repository is available under the MIT License. See [`LICENSE`](/LICENSE).
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
This repository is available under the MIT License. See [`LICENSE`](/home/sizzlebop/PINKPIXEL/PROJECTS/CURRENT/skills-collection-1/LICENSE).
This repository is available under the MIT License. See [`LICENSE`](/LICENSE).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 57, Replace the filesystem path in the README's link for
[`LICENSE`] with a repository-relative link so it works on GitHub; locate the
line containing the markdown link [`LICENSE`](/home/sizzlebop/.../LICENSE) and
change the target to a repo-relative path such as (./LICENSE) or (LICENSE) so
the link points to the repository's LICENSE file for all users.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The link to the license file uses an absolute local path (/home/sizzlebop/...), which will not work for other users. Please use a relative path instead. Additionally, it is recommended to keep a newline at the end of the file to comply with POSIX standards and avoid git diff warnings. Note that similar absolute paths exist on lines 5 and 16 and should also be updated.

Suggested change
This repository is available under the MIT License. See [`LICENSE`](/home/sizzlebop/PINKPIXEL/PROJECTS/CURRENT/skills-collection-1/LICENSE).
This repository is available under the MIT License. See [`LICENSE`](LICENSE).