Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

windows-shell窗口外壳

Agent Skill

windows-shell 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

594

周安装

25

GitHub Stars

5

下载量

208
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nicoforclaude/claude-windows-shell --skill windows-shell

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 通过命令行工具调用,可直接集成到宿主环境中使用。
  • 安装命令:npx skills add https://github.com/nicoforclaude/claude-windows-shell --skill windows-shell。
  • 使用前请确认权限范围、维护状态及是否涉及联网或文件操作。

SKILL.md

Windows Shell Skill

This skill provides guidelines for handling Windows filesystem paths and commands to avoid common pitfalls when using Claude Code on Windows.

Core Principles

Path Formats

In Skills and Configuration:

  • Always use forward slashes (Unix-style): scripts/helper.py
  • Never use backslashes in Skills: scripts\helper.py
  • This ensures cross-platform compatibility

In Bash Commands:

  • Always quote paths with spaces or backslashes: cd "C:\KolyaRepositories\project"
  • Without quotes, backslashes are lost: cd C:\KolyaRepositories\project
  • Result: /usr/bin/bash: line 1: cd: C:KolyaRepositoriesproject: No such file or directory

Shell Command Patterns

Good patterns:

# Quoted paths work reliably
cd "C:\KolyaRepositories\repo" && git status

# Multiple commands in sequence
cd "C:\KolyaRepositories\repo" && git rev-parse --abbrev-ref HEAD && git status --short

# Direct git commands without piping
git status --short

Bad patterns:

# Unquoted paths fail
cd C:\KolyaRepositories\repo && git status

# Piping to findstr after cd fails
cd "C:\KolyaRepositories\repo" && git status --short | findstr /R "."
# Error: FINDSTR: Cannot open repo

# PowerShell via -Command loses cd context
cd "C:\KolyaRepositories\repo" && powershell -Command "git status --short | Where-Object { $_ }"
# Error: The term 'C:\KolyaRepositories\repo' is not recognized

Common Pitfalls

1. Findstr After Directory Change

Problem: findstr interprets the directory name as a file argument when piped after cd.

# Fails
cd "C:\KolyaRepositories\calc" && git status --short | findstr /R "."
# Error: FINDSTR: Cannot open calc

Solution: Use direct commands without unnecessary pipes.

# Works
cd "C:\KolyaRepositories\calc" && git status --short

2. PowerShell Context Loss

Problem: Using powershell -Command after cd causes the shell context to be misinterpreted.

# Fails
cd "C:\KolyaRepositories\calc" && powershell -Command "git status --short | Where-Object { $_ }"
# Error: The term 'C:\KolyaRepositories\calc' is not recognized

Solution: Either use PowerShell directly from the start, or avoid PowerShell piping after bash cd.

# Works - all in PowerShell
powershell -Command "cd 'C:\KolyaRepositories\calc'; git status --short"

# Works - no PowerShell piping
cd "C:\KolyaRepositories\calc" && git status --short

3. Unquoted Paths in Bash

Problem: Bash strips backslashes from unquoted Windows paths.

# Fails
cd C:\KolyaRepositories\calc
# Error: cd: C:KolyaRepositoriescalc: No such file or directory

Solution: Always quote paths containing backslashes.

# Works
cd "C:\KolyaRepositories\calc"

4. Output Redirection to Null Device

Context: Claude Code uses Git Bash on Windows, which provides Unix-like paths.

In Git Bash (Claude Code default):

# CORRECT - Git Bash provides /dev/null
command > /dev/null 2>&1

# WRONG - creates a literal file named "nul" in working directory!
command >nul 2>&1

WARNING: Using >nul in Git Bash creates a file that pollutes git status. Always use /dev/null in Git Bash.

In PowerShell:

command 2>$null
command | Out-Null

5. PowerShell Special Character Escaping

Problem A - Negation Operator: When passing PowerShell commands via Bash, the exclamation mark character gets escaped to backslash-exclamation.

# Fails - ! becomes \!
powershell -Command "if (!(Test-Path 'file.txt')) { Write-Output 'missing' }"
# Error: \! is not recognized

Solution: Use -not instead of exclamation mark for negation.

# Works
powershell -Command "if (-not (Test-Path 'file.txt')) { Write-Output 'missing' }"

Problem B - Variable Interpolation: PowerShell $variable syntax gets stripped when passed through Bash.

# Fails - $pdf and $sizeKB are empty
powershell -Command "$pdf = Get-Item 'file.pdf'; $sizeKB = [math]::Round($pdf.Length / 1KB, 1); Write-Output $sizeKB"
# Output: (empty or partial)

Solution: Use .ps1 script files for complex operations, or pipe output between simple commands.

# Works - use script file
powershell -ExecutionPolicy Bypass -File "script.ps1" -Path "file.pdf"

# Works - simple piped commands
powershell -Command "Get-Item 'file.pdf' | Select-Object Length"

Summary for inline PowerShell:

  • Use -not instead of exclamation mark
  • Use script files for complex logic with variables
  • Keep inline commands simple (single operation, pipe output)

Best Practices for Multi-Repo Operations

When iterating over multiple repositories (e.g., for status checks):

Pattern 1 - Sequential commands with &&:

cd "C:\KolyaRepositories\repo1" && git status --short
cd "C:\KolyaRepositories\repo2" && git status --short

Pattern 2 - Self-contained commands:

git -C "C:\KolyaRepositories\repo1" status --short
git -C "C:\KolyaRepositories\repo2" status --short

Pattern 3 - Parallel tool calls: Use multiple Bash tool calls in a single message for independent operations:

  • Bash tool 1: cd "C:\repo1" && git status
  • Bash tool 2: cd "C:\repo2" && git status
  • Bash tool 3: cd "C:\repo3" && git status

PowerShell vs Bash on Windows

When to Use PowerShell

Use PowerShell for:

  • Windows-specific operations (registry, services, etc.)
  • Complex filtering with Where-Object, Select-Object
  • Working with.NET objects
  • Windows system administration tasks
# PowerShell example
powershell -Command "Get-ChildItem -Path 'C:\KolyaRepositories' -Directory | Select-Object Name"

When to Use Bash (Git Bash/WSL)

Use Bash for:

  • Git operations
  • Standard Unix tools (grep, sed, awk)
  • Cross-platform scripts
  • Most development tooling (npm, docker, etc.)
# Bash example
cd "C:\KolyaRepositories\repo" && git status --short

Tools to Prefer Over Bash

For file operations, use specialized Claude Code tools instead of bash commands:

OperationUse ToolNot Bash
Read filesRead toolcat, head, tail
Search filesGlob toolfind, ls
Search contentGrep toolgrep, rg
Edit filesEdit toolsed, awk
Write filesWrite toolecho >, cat <<EOF

Reserve Bash for actual terminal operations: git, npm, docker, build commands, etc.

Summary Checklist

Before running Windows filesystem commands:

  • Paths with backslashes are quoted: "C:\Path\To\Dir"
  • Using /dev/null for output redirection in Git Bash (NOT >nul which creates a file)
  • No unnecessary pipes after cd (especially findstr, Where-Object)
  • Using specialized tools (Read, Glob, Grep) instead of bash for file ops
  • Multiple independent operations use parallel tool calls
  • Skills use forward slashes: scripts/helper.py
  • PowerShell used for Windows-specific tasks, Bash for Unix-style operations
  • Using -not instead of exclamation mark for PowerShell negation
  • Complex PowerShell logic in .ps1 files, not inline commands

Examples from Real Errors

Common Error Patterns:

  1. findstr after cd → FINDSTR: Cannot open [dirname]
  2. PowerShell pipe after cd → The term 'C:...' is not recognized
  3. Unquoted path → cd: C:KolyaRepositories... (backslashes stripped)
  4. Using >nul in Git Bash → creates a literal file named "nul" polluting git status
  5. Using exclamation mark in PowerShell via Bash → backslash-exclamation is not recognized
  6. Inline $variable in PowerShell → variables are empty/stripped

Resolution: All resolved by following the patterns in this skill:

  • Quote paths: cd "C:\KolyaRepositories\repo"
  • Avoid pipes after cd: git status --short (no | findstr)
  • Use /dev/null in Git Bash: command > /dev/null 2>&1 (NOT >nul)
  • Use -not instead of exclamation mark for negation
  • Use .ps1 script files for complex PowerShell logic

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.8%
按下载量换算72

Claude

32.21%
按下载量换算67

Cursor

20.93%
按下载量换算44

Gemini CLI

9.34%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/nicoforclaude/claude-windows-shell --skill windows-shell 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills