Agent skill
elnora-folders
Use this skill when the user asks about "Elnora folders", "project folders", "organize files", "move folder", "create folder", "rename folder", "delete folder", or any task involving folder management within Elnora projects.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/elnora-folders
SKILL.md
Elnora Folders
Manage folders within Elnora projects via MCP tools. Folders organize files hierarchically inside a project.
Organization Context
All folder tools accept an optional org_id parameter (UUID). When provided,
the operation targets that organization instead of the user's active org. The
user must be a member of the target org.
Core Concepts
- Folders exist within a project and organize files into a hierarchy.
- Folders can be nested — a folder can have a parent folder.
- Moving a folder to root means setting no parent.
- Deleting a folder is destructive — always confirm with the user before proceeding.
Tools Reference
| Tool | Purpose | Key Parameters |
|---|---|---|
elnora_list_folders |
List folders in a project | project_id |
elnora_create_folder |
Create a new folder | project_id, name, optional parent_id |
elnora_rename_folder |
Rename a folder | project_id, folder_id, name |
elnora_move_folder |
Move a folder to a new parent | project_id, folder_id, optional parent_id |
elnora_delete_folder |
Delete a folder | project_id, folder_id |
Parameter Details
project_id(required): The UUID of the project containing the folders.folder_id(required for rename/move/delete): The UUID of the target folder.parent_id(optional): The UUID of the parent folder. Omit to place at root level.name(required for create/rename): The folder name.
Common Workflows
Browse project folder structure
elnora_list_folderswithproject_idto see all folders and their hierarchy
Create a nested folder
elnora_list_foldersto find the parent folder's IDelnora_create_folderwithproject_id,name, andparent_id
Move a folder to root
elnora_move_folderwithproject_idandfolder_id, omittingparent_id
Reorganize folders
elnora_list_foldersto see current structureelnora_move_folderto relocate folders as neededelnora_rename_folderto update names if required
Delete a folder
- Confirm with the user first — deletion is destructive
elnora_delete_folderwithproject_idandfolder_id
ID Format
All IDs are UUIDs (e.g., bfdc6fbd-40ed-4042-9ea7-c79a5ec90085).
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?