Skip to content

Commit cc3d7c6

Browse files
authored
Merge pull request #189 from yumechi/refactor/url-hyphen-to-underscore
refactor: URL 識別子のハイフンをアンダースコアに統一
2 parents a43a974 + 9d300f0 commit cc3d7c6

26 files changed

Lines changed: 32 additions & 32 deletions

File tree

  • .claude/skills
  • .github/ISSUE_TEMPLATE
  • blog
    • 2026
      • 01-30-test_page
      • 02-01-sre_kaigi_2026_cognitive_load
      • 02-01-sre_kaigi_2026_cto_message
      • 02-01-sre_kaigi_2026_findy_takumi
      • 02-01-sre_kaigi_2026_legacy_batch
      • 02-03-sre_kaigi_2026_era_of_generation_ai
      • 02-04-sre_kaigi_2026_modernizing_organizations
      • 02-04-sre_kaigi_2026_sre_practice_management
      • 02-06-sre_kaigi_2026_iass_sass
      • 02-06-sre_kaigi_2026_my_number
      • 02-07-sre_kaigi_2026_security_convenience
      • 02-11-pmconf_2025_osaka_decision_making
      • 02-11-pmconf_2025_osaka_enterprise_shift
      • 02-11-pmconf_2025_osaka_fighting_alone
      • 02-12-pmconf_2025_osaka_knowledge_asymmetry
      • 02-13-pmconf_2025_osaka_kind_of_like_it
      • 02-14-pmconf_2025_osaka_sustainable
      • 02-18-supporterz_20260218_team_development
      • 02-19-freee_sansan_20260218_ai_qa
      • 02-20-pmconf_2025_osaka_less_authority
      • 03-31-sre_kaigi_2026_divide_sre_product_engineer
      • 03-31-sre_kaigi_2026_rearchitect_reliability_and_agility

.claude/skills/create-blog-page/SKILL.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description: 読んだ記事やスライドの感想ブログ記事を作成し
1414
以下の情報をユーザーに直接質問して収集してください:
1515

1616
- **ブログ記事のタイトル**: ブログページに表示されるタイトル
17-
- **slug**: URLに使用される識別子(英数字とハイフンのみ
17+
- **slug**: URLに使用される識別子(英数字とアンダースコアのみ、ハイフンは使わない
1818
- **タグ**: 記事のタグ(カンマ区切り、任意)
1919
- **日付**: ファイルパスに使用する日付(デフォルト: 当日)
2020
- **資料のタイトル**: 読んだ記事/スライドのタイトル(任意。省略時はURLがそのまま表示されます)
@@ -28,16 +28,16 @@ description: 読んだ記事やスライドの感想ブログ記事を作成し
2828
- **ファイルパス**: `blog/YYYY/MM-DD-slug/index.md`
2929
- `YYYY` は年(例: 2026)
3030
- `MM-DD` は月日(例: 01-30)
31-
- `slug` はユーザーが指定した値を使用
32-
- ****: `blog/2026/01-30-react-hooks/index.md`
31+
- `slug` はユーザーが指定した値を使用(単語区切りはアンダースコア)
32+
- ****: `blog/2026/01-30-react_hooks/index.md`
3333

3434
### 3. テンプレート
3535

3636
`blog/_template.md` を参考に、以下の形式で作成:
3737

3838
```markdown
3939
---
40-
slug: /slug-name
40+
slug: /slug_name
4141
title: ブログ記事のタイトル
4242
authors: yumechi
4343
tags: [tag1, tag2]
@@ -66,7 +66,7 @@ tags: [tag1, tag2]
6666

6767
## 注意事項
6868

69-
- slugは英数字とハイフンのみを使用
69+
- slug は英数字とアンダースコアのみを使用(ハイフンは使わない)
7070
- タグは既存のブログ記事で使われているタグを参考にする
7171
- 感想が長い場合は適切に段落分けする
7272
- 日付を指定しない場合は当日の日付を使用する

.claude/skills/process-blog-issue/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ git checkout main
122122

123123
## 注意事項
124124

125-
- slugは英数字とハイフンのみを使用(issueから取得した値をそのまま使用
125+
- slug は英数字とアンダースコアのみを使用(issue から取得した値をそのまま使用。ハイフンが含まれている場合はアンダースコアに置換する
126126
- タグが空の場合は空配列 `[]` を設定
127127
- 感想が長い場合は適切に段落分けする
128128
- issueの内容が不足している場合はスキップしてユーザーに報告する

.github/ISSUE_TEMPLATE/blog-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ body:
1313
id: slug
1414
attributes:
1515
label: slug
16-
description: URLに使用される識別子(英数字とハイフンのみ
17-
placeholder: "例: react-hooks-basics"
16+
description: URLに使用される識別子(英数字とアンダースコアのみ、ハイフンは使わない
17+
placeholder: "例: react_hooks_basics"
1818
validations:
1919
required: true
2020

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
slug: /test-page
2+
slug: /test_page
33
title: 技術記事の公開テストページ
44
authors: yumechi
55
tags: [ページテスト]

blog/2026/02-01-sre-kaigi-2026-cognitive-load/index.md renamed to blog/2026/02-01-sre_kaigi_2026_cognitive_load/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
slug: /sre-kaigi-2026-cognitive-load
2+
slug: /sre_kaigi_2026_cognitive_load
33
title: 「認知負荷を最小化するオブザーバビリティとSLOの導入 ―4名のSREが200名のプロダクトエンジニアを支援」を聞いた
44
authors: yumechi
55
tags: [SRE, 認知負荷, CUJ]

blog/2026/02-01-sre-kaigi-2026-cto-message/index.md renamed to blog/2026/02-01-sre_kaigi_2026_cto_message/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
slug: /sre-kaigi-2026-cto-message
2+
slug: /sre_kaigi_2026_cto_message
33
title: 「ベテランCTOからのメッセージ:AIとか組織とかキャリアとか気になることはあるけどさ、個人の技術力から目を背けないでやっていきましょうよ」を聞いた
44
authors: yumechi
55
tags: [SRE, キャリア]

blog/2026/02-01-sre-kaigi-2026-findy-takumi/index.md renamed to blog/2026/02-01-sre_kaigi_2026_findy_takumi/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
slug: /sre-kaigi-2026-findy-takumi
2+
slug: /sre_kaigi_2026_findy_takumi
33
title: 「ファインディの横断SREがTakumi byGMOと取り組む、セキュリティと開発スピードの両立」を聞いた
44
authors: yumechi
55
tags: [SRE, セキュリティ]

blog/2026/02-01-sre-kaigi-2026-legacy-batch/index.md renamed to blog/2026/02-01-sre_kaigi_2026_legacy_batch/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
slug: /sre-kaigi-2026-legacy-batch
2+
slug: /sre_kaigi_2026_legacy_batch
33
title: 「レガシー共有バッチ基盤への挑戦 - SREドリブンなリアーキテクチャリングの取り組み」を聞いた
44
authors: yumechi
55
tags: [SRE, バッチ処理]

blog/2026/02-03-sre-kaigi-2026-era-of-generation-ai/index.md renamed to blog/2026/02-03-sre_kaigi_2026_era_of_generation_ai/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
slug: /sre-kaigi-2026-era-of-generation-ai
2+
slug: /sre_kaigi_2026_era_of_generation_ai
33
title: 「生成AI時代にこそ求められるSRE」を読んだ
44
authors: yumechi
55
tags: [SRE, 生成AI]

blog/2026/02-04-sre-kaigi-2026-modernizing-organizations/index.md renamed to blog/2026/02-04-sre_kaigi_2026_modernizing_organizations/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
slug: /sre-kaigi-2026-modernizing-organizations
2+
slug: /sre_kaigi_2026_modernizing_organizations
33
title: 「モノタロウにおけるSREの現在地:モダナイゼーションの過程で変化していく組織に、SREはどう向き合ったか」を読んだ
44
authors: yumechi
55
tags: []

0 commit comments

Comments
 (0)