powershell

PowerShell Development Skill

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "powershell" with this command: npx skills add sillsdev/fieldworks/sillsdev-fieldworks-powershell

PowerShell Development Skill

Conventions and safety patterns for PowerShell scripts in scripts/ and CI.

Style and Linting

  • Use pwsh /PowerShell Core syntax where possible and Set-StrictMode -Version Latest .

  • Use Write-Host sparingly; prefer Write-Output and Write-Error for correct streams.

  • Use -ErrorAction Stop in helper functions when errors should abort execution.

  • No Unicode icons or emojis in output messages (e.g., ✓ , ✗ , ⚠ , 🔧 ). Use plain ASCII text like [OK] , [FAIL] , [WARN] , ERROR: instead. Unicode causes encoding issues in CI logs.

Security

  • Avoid embedding secrets in scripts; read from env vars and prefer platform secret stores.

  • Do not commit credential tokens in any scripts or docs.

Testing and Execution

  • Use pwsh -NoProfile -ExecutionPolicy Bypass -File in CI wrappers.

  • Add small smoke test steps to validate paths and required tools are present.

Auto-Approval Patterns

CRITICAL: Agent terminal security blocks complex commands. The following require manual approval:

  • Pipes (| )

  • Semicolons (; ) or &&

  • Redirection (2>&1 )

ALWAYS use scripts/Agent/ wrapper scripts for these operations. Do not attempt raw commands.

See terminal.instructions.md for the complete transformation table.

Examples

Good: simple commands auto-approve

.\build.ps1 git status

Good: use wrapper scripts (ALWAYS for git with pipes)

.\scripts\Agent\Git-Search.ps1 -Action show -Ref "release/9.3" -Path "file.h" -HeadLines 20 .\scripts\Agent\Git-Search.ps1 -Action log -HeadLines 20 .\scripts\Agent\Read-FileContent.ps1 -Path "file.cs" -HeadLines 50 -LineNumbers

BAD: these require manual approval - NEVER USE

git log --oneline | head -20

Get-Content file.cs | Select-Object -First 50

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

atlassian-skills

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

atlassian-readonly-skills

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

openspec-bulk-archive-change

No summary provided by upstream source.

Repository SourceNeeds Review