Install
$ agentstack add skill-elnora-ai-elnora-plugins-elnora-projects Open-source listing — not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 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.
About
Elnora Projects
Manage projects on the Elnora AI Platform. Projects are containers for tasks, files, and folders.
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 Projects
$CLI --compact projects list
$CLI --compact projects list --page 2 --page-size 50
$CLI --compact --fields "id,name" projects list
Response:
{"items":[{"id":"","name":"...","description":"...","isDefault":false,"isArchived":false,"memberCount":1,"myRole":"owner","createdAt":"..."}],"page":1,"totalCount":N,"hasNextPage":false}
Get Project
$CLI --compact projects get
Returns project detail with members array.
Create Project
$CLI --compact projects create --name "Protocol Lab" --description "PCR protocols" --icon "lab"
| Flag | Required | Notes | |------|----------|-------| | --name | Yes | Project name | | --description | No | Project description | | --icon | No | Project icon |
Update Project
$CLI --compact projects update --name "New Name"
$CLI --compact projects update --description "Updated description"
Must provide at least one of --name, --description, or --icon.
Archive Project
$CLI --compact projects archive
# -> {"archived":true,"projectId":""}
Destructive — confirm with user before running.
List Members
$CLI --compact projects members
Add Member
$CLI --compact projects add-member --role Member
Both ` and are positional (projectId and userId). --role` defaults to "Member".
Update Member Role
$CLI --compact projects update-role --role Admin
Both positional. --role is required.
Remove Member
$CLI --compact projects remove-member
# -> {"removed":true}
Both positional. Destructive — confirm with user before running.
Leave Project
$CLI --compact projects leave
Removes the current user from the project.
Choosing a Project
Many commands require a project ID. Resolve it once per session, then reuse.
$CLI --compact --fields "id,name" projects list
Decision tree:
- One project → use it automatically, don't ask.
- 2–5 projects → show the list, ask the user to pick by name or number. Remember the choice.
- 6+ projects → ask the user to name or describe their project. Match by name. Don't dump the full list.
- Zero projects → tell the user to create one:
$CLI projects create --name "My Project".
Never re-list projects for every command. Cache the project ID after the first lookup. If the user says "switch to project X", re-list then.
MCP Tool Names
| CLI command | MCP tool name | |-------------|---------------| | projects list | elnora_projects_list | | projects get | elnora_projects_get | | projects create | elnora_projects_create | | projects update | elnora_projects_update | | projects archive | elnora_projects_archive | | projects members | elnora_projects_members | | projects add-member | elnora_projects_addMember | | projects update-role | elnora_projects_updateRole | | projects remove-member | elnora_projects_removeMember | | projects leave | elnora_projects_leave |
Agent Recipes
Full project setup with members:
PROJECT=$($CLI --compact projects create --name "New Lab" | jq -r '.id')
$CLI --compact projects add-member "$PROJECT" --role Member
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
- Source: Elnora-AI/elnora-plugins
- License: Apache-2.0
- Homepage: https://elnora.ai
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.