Best use case
File Manager is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Quản lý file và folder trên máy tính
Teams using File Manager should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/file_manager/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How File Manager Compares
| Feature / Agent | File Manager | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Quản lý file và folder trên máy tính
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# File Manager Extension
## Khả năng
Extension này cho phép AI tạo, xóa, di chuyển, sao chép và liệt kê file/folder trực tiếp trên máy tính của người dùng.
## Hành động có thể thực hiện
### 1. Tạo thư mục
```json
{"action": "file_action", "operation": "create_folder", "path": "~/Desktop/my_folder"}
```
### 2. Tạo file
```json
{"action": "file_action", "operation": "create_file", "path": "~/Desktop/note.txt", "content": "Nội dung file"}
```
### 3. Liệt kê file trong thư mục
```json
{"action": "file_action", "operation": "list", "path": "~/Desktop"}
```
### 4. Xóa file hoặc folder
```json
{"action": "file_action", "operation": "delete", "path": "~/Desktop/my_folder"}
```
### 5. Di chuyển / Đổi tên
```json
{"action": "file_action", "operation": "move", "path": "~/Desktop/old_name.txt", "destination": "~/Desktop/new_name.txt"}
```
### 6. Sao chép
```json
{"action": "file_action", "operation": "copy", "path": "~/Desktop/file.txt", "destination": "~/Documents/file_copy.txt"}
```
### 7. Đọc nội dung file
```json
{"action": "file_action", "operation": "read", "path": "~/Desktop/note.txt"}
```
## Vùng cho phép
Chỉ cho phép thao tác trong:
- `~/Desktop` — Màn hình chính
- `~/Documents` — Tài liệu
- `~/Downloads` — Tải về
- `data/` — Thư mục dữ liệu TubeCLI
## Lưu ý bảo mật
- KHÔNG được truy cập thư mục hệ thống (Windows, Program Files, etc.)
- KHÔNG được xóa file quan trọng mà không hỏi xác nhận
- Luôn thông báo cho người dùng trước khi xóa
## Workflow Node
Sử dụng node `file_manager` trong workflow builder:
- Input: `command` (lệnh dạng text), `path`, `content`, `destination`
- Output: `result` (kết quả thao tác), `status`Related Skills
Ollama Local Model Manager — AI Skill Guide
## Extension: ollama
calendar_manager
Manage Google Calendar — create, list, update, delete events with recurring & reminders
auth_manager
Manage OAuth credentials & tokens for Google, Facebook, TikTok
Universal Tracker
Cross-platform background monitor to auto-detect new videos/posts (YouTube, Douyin, Website) and run team workflows.
Multi-Agent Orchestration — AI Skill Guide
## Extension: multi_agents
SKILL.md — Video Downloader Extension
## Mô tả
Cloud API Management — AI Skill Guide
## Extension: cloud_api
Browser Automation
Quản lý browser profiles anti-detect, mở/đóng trình duyệt, tự động hóa web
TubeCLI System Guide
Complete guide for AI agents to understand, install, and operate TubeCLI
filesystem-context
Use for file-based context management, dynamic context discovery, and reducing context window bloat. Offload context to files for just-in-time loading.
file-uploads
Expert at handling file uploads and cloud storage. Covers S3, Cloudflare R2, presigned URLs, multipart uploads, and image optimization. Knows how to handle large files without blocking.
file-path-traversal
Identify and exploit file path traversal (directory traversal) vulnerabilities that allow attackers to read arbitrary files on the server, potentially including sensitive configuration files, credentials, and source code.