查询目录

v1.0.0

列出 E:\work\custom 下所有客户文件夹名称。触发词包括"我的客户"、"列出客户"、"客户有哪些"、"支持的客户"、"客户列表"、"查看客户"、"custom客户"。

0· 104·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for 596655510-wang/mydir.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "查询目录" (596655510-wang/mydir) from ClawHub.
Skill page: https://clawhub.ai/596655510-wang/mydir
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install mydir

ClawHub CLI

Package manager switcher

npx clawhub@latest install mydir
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name and description say it will list customer folders under E:\work\custom, and the SKILL.md contains a single PowerShell command that exactly performs that action. There are no unrelated requirements or credentials.
Instruction Scope
Instructions are narrow and only run Get-ChildItem on E:\work\custom to return directory names. Note: the command assumes a Windows environment with PowerShell available and that the agent has filesystem access and permission to read that path. It does not instruct reading other files or sending results to external endpoints.
Install Mechanism
No install spec and no code files — instruction-only skill. This minimizes persistent footprint and disk writes.
Credentials
The skill declares no environment variables or credentials, which is proportionate. However, it does implicitly require PowerShell/Windows; that implicit dependency is not declared but is reasonable for the stated purpose.
Persistence & Privilege
always is false and the skill is user-invocable. The skill does not request persistent system privileges, nor does it modify other skills' configs.
Assessment
This skill is internally consistent: it simply runs a PowerShell command to list subfolders in E:\work\custom and asks for no credentials. Before installing, confirm: (1) the agent will run on Windows/has PowerShell available — otherwise the command will fail; (2) you are comfortable granting the agent read access to E:\work\custom (it will reveal directory names); (3) the path E:\work\custom actually exists and contains only information you are willing to expose to the agent. If you do not want any agent access to your local filesystem, do not install. If you need cross-platform behavior, request a version that includes alternative commands for non-Windows systems.

Like a lobster shell, security has layers — review code before you run it.

latestvk9765jpd0p3p5brc6z0qmk730s83qf0b
104downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Custom Clients

列出支持的客户列表。

使用方法

当需要列出支持的客户时,执行以下 PowerShell 命令:

[Console]::OutputEncoding = [System.Text.Encoding]::UTF8; Get-ChildItem -Path "E:\work\custom" -Directory | ForEach-Object { $_.Name }

这会返回 E:\work\custom 目录下所有子文件夹的名称(即客户名称)。

Comments

Loading comments...