File Manager

Quản lý file và folder trên máy tính

138 stars

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

$curl -o ~/.claude/skills/file_manager/SKILL.md --create-dirs "https://raw.githubusercontent.com/tubecreate/tubecli/main/tubecli/extensions/file_manager/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/file_manager/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How File Manager Compares

Feature / AgentFile ManagerStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/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

138
from tubecreate/tubecli

## Extension: ollama

calendar_manager

138
from tubecreate/tubecli

Manage Google Calendar — create, list, update, delete events with recurring & reminders

auth_manager

138
from tubecreate/tubecli

Manage OAuth credentials & tokens for Google, Facebook, TikTok

Universal Tracker

138
from tubecreate/tubecli

Cross-platform background monitor to auto-detect new videos/posts (YouTube, Douyin, Website) and run team workflows.

Multi-Agent Orchestration — AI Skill Guide

138
from tubecreate/tubecli

## Extension: multi_agents

SKILL.md — Video Downloader Extension

138
from tubecreate/tubecli

## Mô tả

Cloud API Management — AI Skill Guide

138
from tubecreate/tubecli

## Extension: cloud_api

Browser Automation

138
from tubecreate/tubecli

Quản lý browser profiles anti-detect, mở/đóng trình duyệt, tự động hóa web

TubeCLI System Guide

138
from tubecreate/tubecli

Complete guide for AI agents to understand, install, and operate TubeCLI

filesystem-context

31392
from sickn33/antigravity-awesome-skills

Use for file-based context management, dynamic context discovery, and reducing context window bloat. Offload context to files for just-in-time loading.

Memory & Context ManagementClaude

file-uploads

31392
from sickn33/antigravity-awesome-skills

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

31392
from sickn33/antigravity-awesome-skills

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.

Web Security TestingClaude