بنقرة واحدة
file-manager
Explore project structure and locate files using glob patterns and directory listing
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Explore project structure and locate files using glob patterns and directory listing
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Core discovery skill - find any capability with a single keyword
Make HTTP requests to REST APIs using curl-like methods (GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS)
Transcribir reuniones en tiempo real y generar informes gerenciales con decisiones, action items y próximos pasos
Execute shell commands safely with error handling, timeouts, and output validation
Complete management of cron jobs with cron expressions. Create, list, update, pause, resume, delete, trigger, and view history. Use for reminders, automated reports, periodic checks.
Schedule a reminder for yourself at a specific time. Creates a one_shot cron job that sends a notification message via your preferred channel.
| name | file_manager |
| description | Explore project structure and locate files using glob patterns and directory listing |
| version | 1.0.0 |
| author | Hive Team |
| icon | 📁 |
| category | filesystem |
| permissions | ["filesystem_read"] |
| dependencies | [] |
| tools | ["fs_list","fs_glob","fs_exists"] |
| triggers | ["lista los archivos","list files","buscá archivos","find files","explorá el proyecto","explore project","qué archivos hay","what files exist","buscá por patrón","search by pattern","existe este archivo","file exists","dónde está","where is"] |
| preferred_agents | [] |
| steps | [{"step":1,"action":"fs_list","instruction":"List directory contents to understand project structure","params":{"path":"."},"output":"directory_tree"},{"step":2,"action":"fs_glob","instruction":"Find files matching specific pattern (e.g., **/*.ts, **/*.md)","params":{"pattern":"**/*.ts"},"output":"matching_files"},{"step":3,"action":"fs_exists","instruction":"Verify specific file or directory exists","params":{"path":"specific/path"},"output":"exists_boolean"}] |
| rules | ["Use fs_list for initial exploration of unknown directories","Use fs_glob when user specifies file type or pattern","Always verify with fs_exists before read/edit operations","Stay within workspace directory unless explicitly requested otherwise","For recursive search, use ** pattern (e.g., **/*.ts finds all .ts files)"] |
| output_format | {"structure":"markdown","sections":["search_type","results","file_count"],"max_length":"List up to 20 files, summarize if more"} |
| examples | [{"user_input":"lista los archivos del proyecto","expected_behavior":"fs_list({ path: '.' }) → return root directory structure"},{"user_input":"buscá todos los archivos TypeScript","expected_behavior":"fs_glob({ pattern: '**/*.ts' }) → return list of .ts files"},{"user_input":"existe el archivo src/config.ts","expected_behavior":"fs_exists({ path: 'src/config.ts' }) → return true/false"}] |
Esta skill se activa cuando el usuario necesita:
| Tool | Qué hace | Cuándo usarla |
|---|---|---|
fs_list | Lista directorios y archivos | Exploración inicial |
fs_glob | Busca archivos por patrón wildcard | Búsqueda por extensión/patrón |
fs_exists | Verifica existencia | Pre-check antes de operaciones |
fs_list({ path }) para estructura generalfs_glob({ pattern }) para tipos específicosfs_exists({ path }) para confirmación| Patrón | Encuentra |
|---|---|
**/*.ts | Todos los TypeScript |
**/*.test.ts | Solo tests |
**/*.md | Documentación |
**/package.json | Todos los package.json |
src/**/*.tsx | React components en src |