Readme sync
Skill yu-iskw/coding-agent-skills/.cursor/skills/readme-sync
A curated collection of executable Agent Skills and SOPs for AI coding agents like Cursor, Claude Code, and Gemini CLI.
npx -y skills add yu-iskw/coding-agent-skills --skill readme-syncAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Synchronizes the list of Agent Skills in the root README.md with the actual skills present in the codebase.
SKILL.md
1.4 KB, as published. Nobody here has run it
README Sync
Purpose
Ensures that the ## Agent Skills section in the root README.md accurately reflects all available skills in skills/.
Workflow
- Identify Skills: Use
Globorfindto locate allSKILL.mdfiles inskills/and.cursor/skills/. - Extract Information: For each skill found, use
uv run skills-ref read-properties <skill-directory>to get thenameanddescription. - Generate Markdown: Format the collected information as a sorted list of markdown items:
- Format:
- **[name](relative/path/to/skill/)**: description
- Format:
- Update README.md: Replace the content between
<!-- START-SKILLS -->and<!-- END-SKILLS -->markers in the rootREADME.mdwith the newly generated list.
Implementation Notes
- The
skills-reftool is part of the project dependencies and can be run viauv run. - Always maintain alphabetical order of the skills in the
README.mdlist. - Ensure the relative paths in the markdown links correctly point to the skill directories from the root.
Examples
Scenario: Updating README.md after adding a new skill
- Find all skills in the directory
skills/. - Get properties for each skill:
uv run skills-ref read-properties skills/claude-code-cli. - Update
README.mdwithin the<!-- START-SKILLS -->block.