在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用readme-standards
星标4
分支0
更新时间2026年7月14日 16:33
Conventions to use in Readme files
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Conventions to use in Readme files
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | Readme standards |
| description | Conventions to use in Readme files |
Unresolved anchors that don't translate to a link or a website should be removed.
The most important examples of this are the usage of (#). This used to be a guarantee that the image would be displayed.
This is no longer necessary, and the svg icons get generated with or without the link.
Replace
[](#)
with

<div align="center"> with <div style="text-align: center;">alt attribute is missing from the img node, please add it with the text of the a (anchor), property value of its title property.Replace
<div align="center">
<a title="Learning JWT security using KumuluzEE — The finances of a league of the environment" href="https://itnext.io/learning-jwt-security-using-kumuluzee-the-finances-of-a-league-of-the-environment-2f541e99cc90">
<img
src="./docs/images/articles.your.finance.intro.png"
style="width:100%;">
</a>
</div>
with
<div style="text-align: center;">
<a title="Learning JWT security using KumuluzEE — The finances of a league of the environment" href="https://itnext.io/learning-jwt-security-using-kumuluzee-the-finances-of-a-league-of-the-environment-2f541e99cc90">
<img
src="./docs/images/articles.your.finance.intro.png"
style="width:100%;" alt="Learning JWT security using KumuluzEE — The finances of a league of the environment">
</a>
</div>