# Elnora Folders

> >

- **Type:** Skill
- **Install:** `agentstack add skill-elnora-ai-elnora-plugins-elnora-folders`
- **Verified:** Pending review
- **Seller:** [Elnora-AI](https://agentstack.voostack.com/s/elnora-ai)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** Apache-2.0
- **Upstream author:** [Elnora-AI](https://github.com/Elnora-AI)
- **Source:** https://github.com/Elnora-AI/elnora-plugins/tree/main/elnora/skills/elnora-folders
- **Website:** https://elnora.ai

## Install

```sh
agentstack add skill-elnora-ai-elnora-plugins-elnora-folders
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Elnora Folders

Manage the folder tree within Elnora projects.

## Tool Access

Elnora is available via two methods. Use whichever is configured.

**Option A — CLI via Bash (preferred)**

Run commands via your Bash/Shell tool as `elnora   ...`. Verify with `elnora --version`. CLI uses ~5× fewer tokens than MCP.

**Option B — MCP tools (when CLI isn't installed)**

Look for tools prefixed `mcp__elnora__` in your available tools. Call them with structured parameters (camelCase — e.g. `projectId`, not `project-id`). See the "MCP Tool Names" table below for the mapping.

**If neither is available, tell the user to install one:**

- CLI: `curl -fsSL https://cli.elnora.ai/install.sh | bash` (macOS/Linux)
  or `irm https://cli.elnora.ai/install.ps1 | iex` (Windows)
- MCP: `claude mcp add elnora --transport http --scope user https://mcp.elnora.ai/mcp`
  then `/mcp` to authenticate.

**Never fabricate tool names.** Valid commands are in the Commands section; their MCP equivalents are in the MCP Tool Names table.

## Invocation

```bash
CLI="elnora"
```

## Commands

### List Folders

```bash
$CLI --compact folders list 
```

`` is positional (`projectId`). Returns the folder tree for the project.

### Create Folder

```bash
$CLI --compact folders create  --name "Experiments"
$CLI --compact folders create  --name "Sub Folder" --parent-id 
```

| Flag/Arg | Required | Notes |
|----------|----------|-------|
| `` | Yes | Positional — project UUID |
| `--name` | Yes | Folder name |
| `--parent-id` | No | Parent folder UUID for nesting (optional, so it's a flag) |

### Rename Folder

```bash
$CLI --compact folders rename  --name "New Name"
```

### Move Folder

```bash
$CLI --compact folders move  
$CLI --compact folders move  root
```

Both `` and `` are positional (`folderId` and `parentId`). Use `root` to move to the project root level.

### Delete Folder

```bash
$CLI --compact folders delete 
# -> {"deleted":true,"folderId":""}
```

Destructive — confirm with user before running.

## MCP Tool Names

| CLI command | MCP tool name |
|-------------|---------------|
| `folders list` | `elnora_folders_list` |
| `folders create` | `elnora_folders_create` |
| `folders rename` | `elnora_folders_rename` |
| `folders move` | `elnora_folders_move` |
| `folders delete` | `elnora_folders_delete` |

## Agent Recipes

**Set up folder structure for a new project:**

```bash
PROJECT=""
$CLI --compact folders create "$PROJECT" --name "Protocols"
$CLI --compact folders create "$PROJECT" --name "Data"
$CLI --compact folders create "$PROJECT" --name "Reports"
```

**Move a file into a folder:**

```bash
$CLI --compact folders list 
$CLI --compact files update  --folder 
```

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [Elnora-AI](https://github.com/Elnora-AI)
- **Source:** [Elnora-AI/elnora-plugins](https://github.com/Elnora-AI/elnora-plugins)
- **License:** Apache-2.0
- **Homepage:** https://elnora.ai

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** yes
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: flagged — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-elnora-ai-elnora-plugins-elnora-folders
- Seller: https://agentstack.voostack.com/s/elnora-ai
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
