diff --git a/categories/software-engineering/rules-to-better-architecture-and-code-review.mdx b/categories/software-engineering/rules-to-better-architecture-and-code-review.mdx
index 621a10dde52..2ba66684478 100644
--- a/categories/software-engineering/rules-to-better-architecture-and-code-review.mdx
+++ b/categories/software-engineering/rules-to-better-architecture-and-code-review.mdx
@@ -13,6 +13,7 @@ index:
- rule: public/uploads/rules/do-you-conduct-an-architecture-review-after-every-sprint/rule.mdx
- rule: public/uploads/rules/awesome-documentation/rule.mdx
- rule: public/uploads/rules/awesome-readme/rule.mdx
+ - rule: public/uploads/rules/github-profile-readme/rule.mdx
- rule: public/uploads/rules/use-readme-templates/rule.mdx
- rule: public/uploads/rules/architecture-diagram/rule.mdx
- rule: public/uploads/rules/do-you-document-the-technologies-design-patterns-and-alm-processes/rule.mdx
@@ -76,4 +77,4 @@ Follow these steps to achieve a 'Modern Architecture Review'. See how performing
These steps enable you to attend to the code that needs the most attention. Finally, create PBI's to make sure they get fixed in the next Sprint.
-Want to drive business value with IT Transformation? Check [SSW's Strategic Architecture consulting page](https://www.ssw.com.au/consulting/strategic-architecture).
\ No newline at end of file
+Want to drive business value with IT Transformation? Check [SSW's Strategic Architecture consulting page](https://www.ssw.com.au/consulting/strategic-architecture).
diff --git a/public/uploads/rules/awesome-readme/rule.mdx b/public/uploads/rules/awesome-readme/rule.mdx
index ae38be86df4..a97efaf124f 100644
--- a/public/uploads/rules/awesome-readme/rule.mdx
+++ b/public/uploads/rules/awesome-readme/rule.mdx
@@ -13,6 +13,7 @@ guid: d84cad17-a3d0-4e1f-aaba-f2cd7c950d86
related:
- rule: public/uploads/rules/awesome-documentation/rule.mdx
- rule: public/uploads/rules/use-readme-templates/rule.mdx
+- rule: public/uploads/rules/github-profile-readme/rule.mdx
seoDescription: Learn how to create an awesome README file that clearly communicates
your project's purpose, setup instructions, and usage guidelines.
title: Do you have an awesome README?
diff --git a/public/uploads/rules/github-profile-readme/bad-no-profile-readme.jpg b/public/uploads/rules/github-profile-readme/bad-no-profile-readme.jpg
new file mode 100644
index 00000000000..b9923f1deee
Binary files /dev/null and b/public/uploads/rules/github-profile-readme/bad-no-profile-readme.jpg differ
diff --git a/public/uploads/rules/github-profile-readme/create-special-repo.jpg b/public/uploads/rules/github-profile-readme/create-special-repo.jpg
new file mode 100644
index 00000000000..c30eb6154db
Binary files /dev/null and b/public/uploads/rules/github-profile-readme/create-special-repo.jpg differ
diff --git a/public/uploads/rules/github-profile-readme/good-profile-readme.jpg b/public/uploads/rules/github-profile-readme/good-profile-readme.jpg
new file mode 100644
index 00000000000..c1dd5d678a4
Binary files /dev/null and b/public/uploads/rules/github-profile-readme/good-profile-readme.jpg differ
diff --git a/public/uploads/rules/github-profile-readme/rule.mdx b/public/uploads/rules/github-profile-readme/rule.mdx
new file mode 100644
index 00000000000..1d6bce13c71
--- /dev/null
+++ b/public/uploads/rules/github-profile-readme/rule.mdx
@@ -0,0 +1,124 @@
+---
+authors:
+- title: Rob Weitz
+ url: https://www.ssw.com.au/people/rob-weitz
+created: 2026-07-31 02:35:01.254847+00:00
+guid: 70c7cdbd-9ac7-420a-9045-5b78b760cdf6
+related:
+- rule: public/uploads/rules/awesome-readme/rule.mdx
+- rule: public/uploads/rules/use-readme-templates/rule.mdx
+seoDescription: Learn how to add a README.md to your GitHub profile using a special
+ repository named after your username, so visitors see who you are instead of a bare
+ list of repos.
+title: Do you know how to add a README.md to your GitHub Profile?
+categories:
+ - category: categories/software-engineering/rules-to-better-architecture-and-code-review.mdx
+type: rule
+uri: github-profile-readme
+---
+
+Your repos should have an [awesome README](/awesome-readme) - but what about **you**?
+
+Your GitHub profile is often the first thing a recruiter, a client, or a potential collaborator sees. By default it's a wall of repository names and a contribution graph, which says nothing about who you are or what you're good at.
+
+GitHub has a hidden feature that fixes this: a **profile README** - a README.md that renders at the top of your profile page.
+
+
+
+## How it works
+
+The magic is a **special repository named exactly the same as your GitHub username**. When GitHub finds a public repo with that name containing a README.md, it renders it on your profile.
+
+E.g. If your username is `johnsmith`, create a repo called `johnsmith` containing a `README.md`.
+
+## Steps to create your profile README
+
+1. Go to [github.com/new](https://github.com/new)
+2. Set the **Repository name** to your GitHub username (GitHub will show a message confirming you've found the secret ✨)
+3. Set the visibility to **Public** - it won't render if it's private
+4. Tick **Add a README file**
+5. Click **Create repository**
+6. Edit `README.md` and commit
+7. Visit `github.com/` to see it live
+
+
+
+::: greybox
+**Warning:** The repo name must match your username **exactly**. A repo called `About-Me`, or one with a stray trailing character, will not render on your profile - it just sits there as an ordinary repository. If your README isn't showing up, check the repo name first, then check it's public.
+:::
+
+::: greybox
+**Tip:** GitHub also supports an **organization** profile README. Create a public repo called `.github` in your org, and add `profile/README.md` to it.
+:::
+
+## What to include
+
+Keep it short and scannable - this is a landing page, not a resume.
+
+- **Who you are** - your role, company, and the tech you work with
+- **What you're working on** - current projects or areas of focus
+- **What you're learning** - shows curiosity and invites conversation
+- **How to reach you** - LinkedIn, blog, X, email
+- **Links to your best repos** - point people at your strongest work
+- **(Optional) Stats and badges** - e.g. [github-readme-stats](https://github.com/anuraghazra/github-readme-stats) for language and contribution cards
+
+Avoid: walls of technology icons with no context, empty "coming soon" placeholders, and joke content that a client wouldn't appreciate.
+
+
+
+
+
+## Sample profile README
+
+```markdown
+# Hi, I'm John Smith 👋
+
+I'm a Software Engineer at [SSW](https://www.ssw.com.au), building enterprise apps with **.NET**, **Azure**, and **Angular**.
+
+## 🔭 What I'm working on
+
+- [SSW.CleanArchitecture](https://github.com/SSWConsulting/SSW.CleanArchitecture) - a .NET template for Clean Architecture
+- Speaking at user groups about AI-assisted development
+
+## 🌱 What I'm learning
+
+- Semantic Kernel and building agents on top of LLMs
+
+## 📫 Get in touch
+
+- [LinkedIn](https://www.linkedin.com/in/johnsmith)
+- [My blog](https://johnsmith.dev)
+```
+
+::: good
+Figure: Good example - Short, specific, and gives a visitor a reason to reach out
+:::
+
+## Keep it current
+
+A profile README that says "currently learning Angular 12" is worse than no README at all - it tells people you stopped caring.
+
+::: greybox
+**Tip:** Add a recurring reminder to review your profile README every 6 months, or automate the dynamic parts (latest blog posts, recent activity) with a [GitHub Action](https://github.com/gautamkrishnar/blog-post-workflow) so it updates itself.
+:::