AgentStack
SKILL unreviewed Apache-2.0 Self-run

Elnora Folders

skill-elnora-ai-elnora-plugins-elnora-folders · by Elnora-AI

>

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add skill-elnora-ai-elnora-plugins-elnora-folders

Open-source listing — not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

1 finding(s); flagged for manual review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures
  • high Pipes remote content directly into a shell (remote code execution).

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Elnora Folders? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

CLI="elnora"

Commands

List Folders

$CLI --compact folders list 

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

Create Folder

$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

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

Move Folder

$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

$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:

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:

$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.

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

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.