Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

powershell-style-guidepowershell 风格指南

Agent Skill

powershell-style-guide 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

240

周安装

10

GitHub Stars

5

下载量

80
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:powershell-style-guide(powershell 风格指南)
来源仓库:https://github.com/kentoshimizu/sw-agent-skills
仓库路径:skills/powershell-style-guide
安装命令:
npx skills add https://github.com/kentoshimizu/sw-agent-skills --skill powershell-style-guide
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kentoshimizu/sw-agent-skills --skill powershell-style-guide

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或代码变更进行整理时使用。

  • 适用于 PowerShell 风格指南相关的协作信息管理,可结合项目现有设计系统使用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议检查是否会触发联网、命令执行或文件读写,确保操作边界清晰。
  • powershell-style-guide 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PowerShell Style Guide

Scope Boundaries

  • Use this skill when the task matches the trigger condition described in description.
  • Do not use this skill when the primary task falls outside this skill's domain.

Use this skill to write and review PowerShell scripts that are predictable, secure, and maintainable for local automation and CI.

Trigger And Co-activation Reference

  • If available, use references/trigger-matrix.md for canonical co-activation rules.
  • If available, resolve style-guide activation from changed files with python3 scripts/resolve_style_guides.py <changed-path>....
  • If available, validate trigger matrix consistency with python3 scripts/validate_trigger_matrix_sync.py.

Quality Gate Command Reference

  • If available, use references/quality-gate-command-matrix.md for CI check-only and local autofix mapping.

Quick Start Snippets

Script skeleton with strict mode and fail-fast behavior

Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'

function Write-Failure {
    param(
        [string]$Message,
        [System.Exception]$Exception
    )

    Write-Error "$Message`n$($Exception.Message)"
}

try {
    # Main logic
    Write-Host 'Script started'
}
catch {
    Write-Failure -Message 'Unhandled failure' -Exception $_.Exception
    exit 1
}

Required environment variable check

$apiToken = $env:API_TOKEN
if ([string]::IsNullOrWhiteSpace($apiToken)) {
    throw 'API_TOKEN is required.'
}

Parameter validation and approved verbs

function Get-ReleaseArtifact {
    [CmdletBinding()]
    param(
        [Parameter(Mandatory)]
        [ValidateNotNullOrEmpty()]
        [string]$ArtifactId,

        [ValidateSet('dev', 'staging', 'prod')]
        [string]$Environment = 'dev'
    )

    # Implementation
    "artifact=$ArtifactId env=$Environment"
}

Bounded retry with backoff

function Invoke-WithRetry {
    param(
        [Parameter(Mandatory)]
        [scriptblock]$Operation,
        [int]$MaxAttempts = 5,
        [int]$DelaySeconds = 2
    )

    for ($attempt = 1; $attempt -le $MaxAttempts; $attempt++) {
        try {
            return & $Operation
        }
        catch {
            if ($attempt -eq $MaxAttempts) { throw }
            Start-Sleep -Seconds $DelaySeconds
        }
    }
}

Safe external command invocation

$arguments = @(
    '--fail'
    '--silent'
    '--show-error'
    '--header'; "Authorization: Bearer $env:API_TOKEN"
    'https://example.com/health'
)

& curl @arguments

Structure And Readability

  1. Use approved PowerShell verb-noun naming (Get-, Set-, Invoke-, Test-).
  2. Prefer functions with explicit parameters over global mutable state.
  3. Keep scripts orchestration-focused and move reusable logic to functions/modules.
  4. Replace magic numbers with named constants including units.
  5. Add short comments only where intent is non-obvious.

Parameters, Types, And Data Handling

  1. Use [CmdletBinding()] for advanced functions where appropriate.
  2. Validate input with ValidateNotNullOrEmpty, ValidateSet, or explicit checks.
  3. Use typed parameters/returns for non-trivial data.
  4. Avoid implicit string parsing when structured objects are available.
  5. Prefer splatting for complex command arguments.

Error Handling And Control Flow

  1. Set $ErrorActionPreference = 'Stop' for fail-fast scripts.
  2. Use try/catch/finally for boundary error handling and cleanup.
  3. Throw specific, actionable errors.
  4. Do not suppress failures without explicit rationale.
  5. Return non-zero exit codes for automation-visible failures.

Security And Operational Safety

  1. Treat all external input as untrusted.
  2. Avoid command injection by separating command and arguments.
  3. Never print secrets; redact sensitive values in logs.
  4. Use least privilege and avoid unnecessary elevation.
  5. Validate file paths and destructive command targets.

Performance And Scalability

  1. Prefer pipeline/object operations over repeated text parsing when feasible.
  2. Avoid unnecessary process spawning in loops.
  3. Use streaming (Get-Content -ReadCount, pipeline) for large inputs.
  4. Use bounded retries with explicit constants.

Testing And Verification

  1. Add Pester tests for critical behavior and failure paths.
  2. Cover edge cases: missing env vars, invalid parameters, timeout, transient errors.
  3. Document manual verification where environment dependencies exist.
  4. Validate idempotency for repeatable automation scripts.

Minimal Pester example

Describe 'Get-ReleaseArtifact' {
    It 'throws when ArtifactId is empty' {
        { Get-ReleaseArtifact -ArtifactId '' } | Should -Throw
    }
}

CI Required Quality Gates (check-only)

  1. Run Invoke-ScriptAnalyzer in check mode with fail-on-issue policy.
  2. Run formatting/lint check (Invoke-Formatter -Check or repository equivalent).
  3. Run Invoke-Pester.
  4. Reject changes that rely on implicit failures or silent fallbacks.

Optional Autofix Commands (local)

  1. Run Invoke-Formatter (or repository formatter autofix command).
  2. Apply safe Invoke-ScriptAnalyzer -Fix results, then rerun checks.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.57%
按下载量换算30

Claude

30.7%
按下载量换算25

Cursor

18.9%
按下载量换算15

Gemini CLI

9.56%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills