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.
npx skills add malue-ai/dazee-small --skill file-managergit clone --depth 1 https://github.com/malue-ai/dazee-smallWrote 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.
[](https://agentmods.dev/skills/malue-ai/dazee-small/file-manager)<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>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.
| Model | Per session | Once 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 |
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.
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 等系统路径
- 路径中有空格时正确引用:所有路径用双引号包裹
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.
- 7d ago First seen · 82 lines · 26 tokens per session scan A c912840c0883
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.
Other skills, from other repositories
orbit-notion
Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…
Cortex
Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.
peekaboo
Capture and automate macOS UI with the Peekaboo CLI.
mochi-remind
Handle due reminders — notify the user with natural language and mark them done.