From 74f64829e7e97052f4d7b35ed71acbb3389a4cfd Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Mon, 6 Jul 2026 08:27:55 +0200 Subject: [PATCH 1/2] Standardize README landing page --- README.md | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7bde73c..efd68fe 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,27 @@ -# Demo +# WoW -Demo repository for a PSModule +WoW is a PowerShell module containing utilities for World of Warcraft. + +## Installation + +Install the module from the PowerShell Gallery: + +```powershell +Install-PSResource -Name WoW +Import-Module -Name WoW +``` + +## Documentation + +Documentation is published at [psmodule.io/WoW](https://psmodule.io/WoW/). + +Use PowerShell help and command discovery for module details: + +```powershell +Get-Command -Module WoW +Get-Help -Examples +``` + +## Contributing + +Issues and pull requests are welcome. Please use the repository issue tracker to report bugs, request features, or discuss improvements. From 543ab45d265d30a66ae24fb178a7283f9cf6f248 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Mon, 6 Jul 2026 10:39:31 +0200 Subject: [PATCH 2/2] Address Copilot README review --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index efd68fe..fae80a8 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Use PowerShell help and command discovery for module details: ```powershell Get-Command -Module WoW -Get-Help -Examples +Get-Help Get-WoWAccount -Examples ``` ## Contributing