From f48e8679a259784571129dddaffcc62fe8276e59 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Fri, 2 Jan 2026 22:18:50 -0500 Subject: [PATCH] chore(docs): sync CLAUDE.md with standardized template - Add Microsoft coding guidelines reference (rule #8) - Add perf and ci commit types to Conventional Commit Types table - Standardize GitHub CLI Commands section --- CLAUDE.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 2620b0c..95919cd 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -13,6 +13,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co 5. **Branch naming** - Use format: `type/scope/short-description` (e.g., `feat/sdk/version-sync`) 6. **Working an issue** - Always create a new branch from an updated main branch 7. **Check branch status before pushing** - Verify the remote tracking branch still exists. If a PR was merged/deleted, create a new branch from main instead +8. **Microsoft coding guidelines** - Follow [Microsoft C# coding conventions](https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/coding-conventions) and [.NET library design guidelines](https://learn.microsoft.com/en-us/dotnet/standard/design-guidelines/) --- @@ -35,6 +36,8 @@ gh issue close | `refactor` | Code change that neither fixes a bug nor adds a feature | | `test` | Adding or updating tests | | `chore` | Maintenance tasks | +| `perf` | Performance improvement | +| `ci` | CI/CD changes | ---