AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Openlist

skill-vaayne-agent-kit-openlist · by vaayne

Manage files on an OpenList (AList-compatible) cloud storage server. Use when the user wants to list, search, copy, move, rename, delete, upload, or download files on cloud storage managed by OpenList/AList. Triggers on phrases like "openlist", "alist", "manage cloud storage", "network drive", or file operations against a self-hosted file server. Also use when the user mentions Emby, Jellyfin, or…

— No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-vaayne-agent-kit-openlist

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ● Filesystem access Used
  • ✓ 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vaayne-agent-kit-openlist)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Openlist? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

OpenList File Manager

Manage files on an OpenList server via its REST API. OpenList is an AList-compatible multi-storage file listing program.

Setup

{project} is the git repo name (if in a git repo) or the basename of the current working directory.

Copy both SDK and CLI to ~/.agents/sessions/{project}/scripts/, then load env vars:

cp skills/openlist/scripts/openlist_client.py skills/openlist/scripts/openlist.py ~/.agents/sessions/{project}/scripts/
source ~/.zshenv

Environment variables

| Variable | Required | Notes | | ------------------- | --------------- | ------------------------------------- | | OPENLIST_URL | Yes | Base URL e.g. http://localhost:5244 | | OPENLIST_TOKEN | One of these | Pre-issued JWT token (preferred) | | OPENLIST_USERNAME | One of these | Username for login | | OPENLIST_PASSWORD | If USERNAME set | Password for login |

Workflow

  1. Verify env vars are set (OPENLIST_URL + auth).
  2. Clarify the target path(s), operation, and any dry-run requirement.
  3. Pick the right approach:

| Scenario | Approach | | ---------------------------------------------------------- | ------------------------- | | Single operation (ls, rename, mv, mkdir, rm, regex-rename) | Bundled CLI directly | | Multi-step workflow (mkdir → move → rename → cleanup) | Task script importing SDK | | Needs dry-run preview of a complex plan | Task script | | Needs retry logic (e.g. Quark async moves) | Task script |

  1. For task scripts: lint with uvx ruff check --fix, run with uv run --script.
  2. Report results.

Bundled CLI & SDK

  • scripts/openlist_client.py — OpenListClient class + size_fmt helper. Import in custom scripts:

```python import sys from pathlib import Path

sys.path.insert(0, str(Path(__file__).parent)) from openlist_client import OpenListClient ```

  • scripts/openlist.py — CLI wrapper covering all endpoints. Run as:

``bash SCRIPT="uv run --script ~/.agents/sessions/{project}/scripts/openlist.py" $SCRIPT ls "/quark/来自:分享/TVs" $SCRIPT rename "/path/to/old" "new-name" ``

References

| File | When to read | | ------------------------------- | ---------------------------------------- | | references/use-cases.md | Emby/Jellyfin naming, common CLI recipes | | references/client-template.md | Writing custom task scripts with SDK | | references/api.md | Full API endpoint details |

When the user mentions Emby, Jellyfin, or media library organization, read references/use-cases.md first.

Script conventions

  • Save task scripts to ~/.agents/sessions/{project}/scripts/{script_name}.py
  • Always offer --dry-run for destructive operations
  • Print a summary table (via rich.table) before executing
  • Quark storage moves are async — add retry/delay between move and rename steps

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.