file-manager

file-manager is a skill for Claude Code, Codex from malue-ai/dazee-small. It costs 26 tokens per session (517 once invoked), scanned A, original, MIT.

A local file-and-folder helper for finding, creating, moving, organizing, and batch-renaming files on a computer.

In plain words
What is it for?
Use it to sort files by type, search by name or text, create folders, move files, and apply consistent names to groups of files.
Why use it?
It reduces repetitive file maintenance and helps keep folders organized. Before changes, it shows what will happen; deletions require confirmation and are preferably sent to the recycle bin.

Skill for Claude CodeCodex

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

Good fit Use it to sort files by type, search by name or text, create folders, move files, and apply consistent names to groups of files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/malue-ai/dazee-small/file-manager
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 file-manager
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 file-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/malue-ai/dazee-small/file-manager.svg)](https://agentmods.dev/skills/malue-ai/dazee-small/file-manager)
Your own site
<a href="https://agentmods.dev/skills/malue-ai/dazee-small/file-manager"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/file-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 517 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.00026 $0.00517
Opus 5 $0.00013 $0.00259
Sonnet 5 $0.00005 $0.00103
Haiku 4.5 $0.00003 $0.00052

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

Security

Grade A, and why

file-manager 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 7d 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/file-manager/SKILL.md · 82 lines

What it actually says

文件管理

帮助用户管理本地文件和文件夹:创建、整理、搜索、重命名、移动。

使用场景

  • 用户说「帮我整理下载文件夹」「把这些文件按类型分类」
  • 用户需要批量重命名文件
  • 用户想查找某个文件

执行方式

通过 bash 命令操作本地文件系统。

查看目录内容

ls -la "/path/to/dir"

创建文件夹

mkdir -p "/path/to/new/folder"

移动文件

mv "/source/file.txt" "/destination/"

按类型整理

将文件按扩展名分类到对应文件夹:

# 示例:按文件类型分类
for ext in pdf docx xlsx png jpg; do
  mkdir -p "$TARGET_DIR/$ext"
  mv "$SOURCE_DIR"/*.$ext "$TARGET_DIR/$ext/" 2>/dev/null
done

搜索文件

# 按名称搜索
find "/path" -name "*.pdf" -type f

# 按内容搜索(文本文件)
grep -rl "关键词" "/path" --include="*.txt" --include="*.md"

批量重命名

# 示例:添加日期前缀
for f in /path/*.pdf; do
  mv "$f" "/path/$(date +%Y%m%d)_$(basename "$f")"
done

安全规则

  • 删除操作前必须确认:使用 HITL 工具请求用户确认
  • 优先移动到回收站:macOS 用 trash 命令,避免直接 rm
  • 操作前展示预览:先列出将要操作的文件,用户确认后执行
  • 不操作系统目录:不修改 /System、/Library、/usr 等系统路径
  • 路径中有空格时正确引用:所有路径用双引号包裹
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. 7d ago First seen · 82 lines · 26 tokens per session scan A c912840c0883

Subscribe to this mod's changes

file-manager is a skill published in the GitHub repository malue-ai/dazee-small (36 stars, last pushed 5mo ago), licensed MIT. It adds 26 tokens to every session and 517 once invoked, about $0.0001 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-08-31.