ソース情報
- リポジトリ
- leroyguillaume/claude
- ソースの最終更新活動
- 2026年8月10日 13:19
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/leroyguillaume/claude --skill yaml-conventionsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | yaml-conventions |
| description | YAML formatting conventions (block style only, no flow style, no |
Applies everywhere YAML appears: manifests, Helm charts/values, GitHub Actions
workflows, docs, and example snippets in README.md.
Never use flow style (inline {...} / [...]) in YAML. Always write
block style, one key per line. For example, write
applications:
kubeflow:
enabled: true
not kubeflow: { enabled: true }. The only acceptable inline form is an
intentionally empty collection ({} / []).
Never write inline arrays. A sequence must use block style, one item per
line with a leading - , even for a single element. Write
ports:
- "11434:11434"
command:
- /bin/sh
- -c
not ports: ["11434:11434"] or command: ["/bin/sh", "-c"]. The only
exception is an intentionally empty list ([]).
Never open a file with ---. The document start marker is optional in
YAML, means nothing for a single-document file, and every tool reads the file
identically with or without it. Start on the first key, or on the leading
comment:
# Fixtures for the e2e suite.
apiVersion: v1
kind: Namespace
not a bare --- on line 1. The separators between documents in a
genuinely multi-document file are a different thing — required syntax, keep
them. Markdown/skill frontmatter delimiters are not YAML documents either;
leave those alone.
Enforce all of the above with a yamllint hook (document-start: present: false, braces / brackets forbid: non-empty) rather than by review — see
pre-commit-conventions for the hook and the config.