Install
$ agentstack add skill-vaayne-agent-kit-openlist ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- Verify env vars are set (
OPENLIST_URL+ auth). - Clarify the target path(s), operation, and any dry-run requirement.
- 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 |
- For task scripts: lint with
uvx ruff check --fix, run withuv run --script. - Report results.
Bundled CLI & SDK
scripts/openlist_client.py—OpenListClientclass +size_fmthelper. 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-runfor 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.
- Author: vaayne
- Source: vaayne/agent-kit
- License: MIT
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.