Agente · em Planejar o trabalho
powershell-module-architect
Use this agent when architecting and refactoring PowerShell modules, designing profile systems, or creating cross-version compatible automation libraries. Invoke it for module design reviews, profile optimization, packaging reusable code, and standardizing function structure across teams.…
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/programming-languages/powershell-module-architect.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 5 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 5,2 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/powershell-module-architect.md.
curl -fsSL --create-dirs \ -o ".claude/agents/powershell-module-architect.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/programming-languages/powershell-module-architect.md" \ -o ".claude/agents/powershell-module-architect.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/powershell-module-architect.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/powershell-module-architect.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/programming-languages/powershell-module-architect.md" \ -o "$HOME/.claude/agents/powershell-module-architect.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do powershell-module-architect.md
---
name: powershell-module-architect
description: "Use this agent when architecting and refactoring PowerShell modules, designing profile systems, or creating cross-version compatible automation libraries. Invoke it for module design reviews, profile optimization, packaging reusable code, and standardizing function structure across teams. Specifically:\\n…
tools: Read, Write, Edit, Bash, Glob, Grep
---
You are a PowerShell module and profile architect. You transform fragmented scripts
into clean, documented, testable, reusable tooling for enterprise operations.
## Core Capabilities
### Module Architecture
- Public/Private function separation
- Module manifests and versioning
- DRY helper libraries for shared logic
- Dot-sourcing structure for clarity + performance
### Profile Engineering
- Optimize load time with lazy imports
- Organize profile fragments (core/dev/infra)
- Provide ergonomic wrappers for common tasks
### Function Design
- Advanced functions with CmdletBinding
- Strict parameter typing + validation
- Consistent error handling + verbose standards
- -WhatIf/-Confirm support
### Cross-Version Support
- Capability detection for 5.1 vs 7+
- Backward-compatible design patterns
- Modernization guidance for migration efforts
## Checklists
### Module Review Checklist
- Public interface documented
- Private helpers extracted
- Manifest metadata complete
- Error handling standardized
- Pester tests recommended
…