Skip to content

Commit 137e26f

Browse files
authored
Revise sections for clarity and organization
1 parent 8e69303 commit 137e26f

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This minimalist architecture provides maximum flexibility while maintaining simp
2323
### What Makes It Powerful
2424

2525
**🤝 Shared Console Experience**
26-
- You and AI work together in the same PowerShell session
26+
- You and AI collaborate in the same PowerShell session
2727
- Every command the AI executes appears in your console in real-time
2828
- PowerShell cmdlets display colorful output
2929
- You can respond to input requests from AI-executed commands directly in the console
@@ -50,13 +50,12 @@ This minimalist architecture provides maximum flexibility while maintaining simp
5050
- Verbose and debug streams display naturally in the console under user control, and can be shared manually when needed
5151
- Clear execution statistics for every command: duration, error count, warning count, and info count
5252

53-
**📝 LLM-Optimized Text File Operations**
54-
- Traditional Get/Set-Content cmdlets frequently fail for LLMs due to line number confusion and poor performance
55-
- To address this, PowerShell.MCP includes 6 specialized cmdlets designed specifically for AI assistants to handle text file operations reliably
56-
- Single-pass processing architecture enables up to 100x faster performance than Get/Set-Content on large files
57-
- 1-based line numbering eliminates array index confusion and matches compiler error messages
58-
- Automatic encoding detection and preservation (UTF-8/16/32, Shift-JIS, line endings)
59-
- Pattern matching with regex support and capture groups
53+
**🌐 Universal Modules & CLI Integration**
54+
- PowerShell.MCP acts as a universal bridge, instantly making any PowerShell modules or CLI tools available as fully functional MCP servers
55+
- Access the vast ecosystem of PowerShell Gallery with over 3,000 pre-built modules, instantly integrating with everything from cloud services like [Azure](https://www.powershellgallery.com/packages/Az), [AWS](https://www.powershellgallery.com/packages/AWSPowerShell.NetCore), [Google Cloud](https://www.powershellgallery.com/packages/GoogleCloud) or [UiPath Orchestrator](https://www.powershellgallery.com/packages/UiPathOrch) to enterprise tools like [Active Directory](https://learn.microsoft.com/powershell/module/activedirectory/), [Exchange](https://www.powershellgallery.com/packages/ExchangeOnlineManagement) or [SQL Server](https://www.powershellgallery.com/packages/SqlServer)
56+
- Uses `Get-Help` to automatically learn each cmdlet's syntax, parameters, and usage patterns for immediate productive use
57+
- AI effectively leverages well-known command-line tools like [Git](https://git-scm.com/) or [Docker](https://www.docker.com/)
58+
- PowerShell.MCP fundamentally transforms the MCP ecosystem by making virtually any command-line tool AI-accessible without custom development
6059

6160
**🔗 PowerShell Pipeline Composability**
6261
- PowerShell naturally chains commands together, passing rich data between them
@@ -66,12 +65,13 @@ This minimalist architecture provides maximum flexibility while maintaining simp
6665
- You describe what you want in natural language - AI constructs the optimal pipeline automatically
6766
- No need to understand pipeline syntax yourself - just tell AI what you need
6867

69-
**🌐 Universal Modules & CLI Tools Integration**
70-
- PowerShell.MCP acts as a universal bridge, instantly making any PowerShell modules or CLI tools available as fully functional MCP servers
71-
- Access the vast ecosystem of PowerShell Gallery with over 3,000 pre-built modules, instantly integrating with everything from cloud services like [Azure](https://www.powershellgallery.com/packages/Az), [AWS](https://www.powershellgallery.com/packages/AWSPowerShell.NetCore), [Google Cloud](https://www.powershellgallery.com/packages/GoogleCloud) or [UiPath Orchestrator](https://www.powershellgallery.com/packages/UiPathOrch) to enterprise tools like [Active Directory](https://learn.microsoft.com/powershell/module/activedirectory/), [Exchange](https://www.powershellgallery.com/packages/ExchangeOnlineManagement) or [SQL Server](https://www.powershellgallery.com/packages/SqlServer)
72-
- Uses `Get-Help` to automatically learn each cmdlet's syntax, parameters, and usage patterns for immediate productive use
73-
- AI effectively leverages well-known command-line tools like [Git](https://git-scm.com/) or [Docker](https://www.docker.com/)
74-
- PowerShell.MCP fundamentally transforms the MCP ecosystem by making virtually any command-line tool AI-accessible without custom development
68+
**📝 LLM-Optimized Text File Operations**
69+
- Traditional Get/Set-Content cmdlets frequently fail for LLMs due to line number confusion and poor performance
70+
- To address this, PowerShell.MCP includes 6 specialized cmdlets designed specifically for AI assistants to handle text file operations reliably
71+
- Single-pass processing architecture enables up to 100x faster performance than Get/Set-Content on large files
72+
- 1-based line numbering eliminates array index confusion and matches compiler error messages
73+
- Automatic encoding detection and preservation (UTF-8/16/32, Shift-JIS, line endings)
74+
- Pattern matching with regex support and capture groups
7575

7676
**📚 No RAG or Context Grounding Required**
7777
- Simply gather necessary documents and files in a folder

0 commit comments

Comments
 (0)