windows-explorer-advanced

windows-explorer-advanced is a skill for Claude Code, Codex from malue-ai/dazee-small. It costs 30 tokens per session (1,611 once invoked), scanned A, original, MIT.

A Windows File Explorer tool for inspecting files and folders, managing Quick Access, finding recent files, and checking disk or folder usage.

In plain words
What is it for?
Useful for finding recently opened files, checking sizes and timestamps, verifying file hashes, reviewing free disk space, and locating large or old files.
Why use it?
It makes file details and storage usage available without browsing folders and properties by hand.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Useful for finding recently opened files, checking sizes and timestamps, verifying file hashes, reviewing free disk space, and locating large or old files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/malue-ai/dazee-small/windows-explorer-advanced
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add malue-ai/dazee-small --skill windows-explorer-advanced
Clone the repo
git clone --depth 1 https://github.com/malue-ai/dazee-small

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for windows-explorer-advanced

README.md
[![agentmods](https://agentmods.dev/badge/skills/malue-ai/dazee-small/windows-explorer-advanced/github.svg)](https://agentmods.dev/skills/malue-ai/dazee-small/windows-explorer-advanced)
Your own site
<a href="https://agentmods.dev/skills/malue-ai/dazee-small/windows-explorer-advanced"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/windows-explorer-advanced/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for windows-explorer-advanced

Your own site · 80×15
<a href="https://agentmods.dev/skills/malue-ai/dazee-small/windows-explorer-advanced"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/windows-explorer-advanced.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,611 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.01611
Opus 5 $0.00015 $0.00805
Sonnet 5 $0.00006 $0.00322
Haiku 4.5 $0.00003 $0.00161

Measured 9d ago against content hash c9d5b47fb331, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

windows-explorer-advanced scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

instances/xiaodazi/skills/windows-explorer-advanced/SKILL.md · 148 lines

How it starts

The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Windows 文件资源管理器高级操作

文件资源管理器高级操作:快速访问管理、文件属性查看、磁盘分析、最近文件、文件夹统计。 等同于 macOS 的 Finder 高级操作(macos-finder)。

使用场景

  • 用户说「看看最近打开的文件」「这个文件多大」「磁盘还剩多少空间」
  • 用户需要整理快速访问/收藏夹
  • 用户需要查看文件夹占用统计
  • 用户需要清理大文件或过期文件

命令参考

文件详细信息

# 查看文件属性
Get-Item "C:\path\to\file.pdf" | Select-Object Name, Length, CreationTime, LastWriteTime, LastAccessTime, Attributes

# 人类可读的文件大小
$file = Get-Item "C:\path\to\file.pdf"
$size = switch ($file.Length) {
    { $_ -gt 1GB } { "{0:N2} GB" -f ($_ / 1GB); break }
    { $_ -gt 1MB } { "{0:N2} MB" -f ($_ / 1MB); break }
    { $_ -gt 1KB } { "{0:N2} KB" -f ($_ / 1KB); break }
    default { "$_ bytes" }
}
Write-Output "$($file.Name): $size, 修改于 $($file.LastWriteTime.ToString('yyyy-MM-dd HH:mm'))"

# 文件哈希(验证完整性)
Get-FileHash "C:\path\to\file.zip" -Algorithm SHA256

最近使用的文件

# 最近打开的文件(Windows Recent 文件夹)
Get-ChildItem "$env:APPDATA\Microsoft\Windows\Recent\*.lnk" |
    Sort-Object LastWriteTime -Descending |
    Select-Object -First 20 |
    ForEach-Object {
        $shell = New-Object -ComObject WScript.Shell
        $target = $shell.CreateShortcut($_.FullName).TargetPath
        Write-Output "$($_.LastWriteTime.ToString('MM-dd HH:mm')) — $target"
    }

# 最近修改的文件(指定目录)
Get-ChildItem "$env:USERPROFILE\Documents" -Recurse -File -ErrorAction SilentlyContinue |
    Where-Object { $_.LastWriteTime -gt (Get-Date).AddDays(-7) } |
    Sort-Object LastWriteTime -Descending |
    Select-Object -First 20 Name, @{N='Size';E={'{0:N1} KB' -f ($_.Length/1KB)}}, LastWriteTime, DirectoryName

快速访问管理

# 将文件夹固定到快速访问
$shell = New-Object -ComObject Shell.Application
$shell.Namespace("C:\Users\$env:USERNAME\Projects").Self.InvokeVerb("pintohome")

# 列出快速访问项目
$shell = New-Object -ComObject Shell.Application
$quickAccess = $shell.Namespace("shell:::{679f85cb-0220-4080-b29b-5540cc05aab6}")
$quickAccess.Items() | ForEach-Object { Write-Output "$($_.Name) — $($_.Path)" }

磁盘空间分析

# 磁盘总体使用情况
Get-PSDrive -PSProvider FileSystem | Select-Object Name,
    @{N='Total(GB)';E={[math]::Round(($_.Used+$_.Free)/1GB,1)}},
    @{N='Used(GB)';E={[math]::Round($_.Used/1GB,1)}},
    @{N='Free(GB)';E={[math]::Round($_.Free/1GB,1)}},
    @{N='Usage%';E={[math]::Round($_.Used/($_.Used+$_.Free)*100,1)}}

# 子目录大小排序(前 10 大目录)
Get-ChildItem "C:\Users\$env:USERNAME" -Directory -ErrorAction SilentlyContinue | ForEach-Object {
    $size = (Get-ChildItem $_.FullName -Recurse -File -ErrorAction SilentlyContinue | Measure-Object -Property Length -Sum).Sum
    [PSCustomObject]@{
        Name = $_.Name
        SizeGB = [math]::Round($size/1GB, 2)
    }
} | Sort-Object SizeGB -Descending | Select-Object -First 10

# 查找大文件(>100MB)
Get-ChildItem "C:\Users\$env:USERNAME" -Recurse -File -ErrorAction SilentlyContinue |
    Where-Object { $_.Length -gt 100MB } |
    Sort-Object Length -Descending |
    Select-Object -First 20 Name, @{N='Size(MB)';E={[math]::Round($_.Length/1MB,1)}}, FullName

Read the full file on GitHub · 148 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 148 lines · 30 tokens per session scan A c9d5b47fb331

Subscribe to this mod's changes

windows-explorer-advanced is a skill published in the GitHub repository malue-ai/dazee-small (36 stars, last pushed 5mo ago), licensed MIT. It adds 30 tokens to every session and 1,611 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories