一键导入
kwallet-list
List wallets, folders within a wallet, and entries within a folder. Use to enumerate what's stored in KWallet without revealing values.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
List wallets, folders within a wallet, and entries within a folder. Use to enumerate what's stored in KWallet without revealing values.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Inspect, pause, resume, and reset the Baloo file indexer. Use when search is missing files, indexing is hammering disk/CPU, or the user wants to add/remove indexed paths.
Pair, list, ping, find, and send files / SMS / clipboard via kdeconnect-cli to phones and other KDE Connect devices. Use for scripted phone↔desktop interactions.
Inspect and edit KGlobalAccel keyboard shortcuts (global hotkeys) on KDE Plasma. Use when the user wants to bind, unbind, or audit a Meta/Ctrl/Alt key combination, or troubleshoot a shortcut that stopped firing.
Read, clear, and push entries to the Klipper clipboard history via D-Bus. Use when the user wants to inspect what's been copied recently, clear sensitive history, or programmatically stage clipboard content.
Read a single password / map / binary entry from KWallet by wallet name, folder, and key. Triggers a user consent prompt the first time the calling app id is seen.
Check whether kwalletd is running, which wallets exist, whether the default wallet is open, and whether KWallet is enabled at all. Use as the first step before any other kwallet skill.
| name | kwallet-list |
| description | List wallets, folders within a wallet, and entries within a folder. Use to enumerate what's stored in KWallet without revealing values. |
Read-only enumeration. Does not reveal entry values — use kwallet-read for that.
qdbus org.kde.kwalletd6 /modules/kwalletd6 wallets
WALLET="kdewallet"
HANDLE=$(qdbus org.kde.kwalletd6 /modules/kwalletd6 open "$WALLET" 0 "claude-kde-plasma")
echo "$HANDLE"
A handle of -1 means the user cancelled the unlock prompt.
qdbus org.kde.kwalletd6 /modules/kwalletd6 folderList "$HANDLE" "claude-kde-plasma"
FOLDER="Passwords"
qdbus org.kde.kwalletd6 /modules/kwalletd6 entryList "$HANDLE" "$FOLDER" "claude-kde-plasma"
qdbus org.kde.kwalletd6 /modules/kwalletd6 close "$HANDLE" false "claude-kde-plasma"
"claude-kde-plasma" is the app id — KWallet uses it for access control. Reuse the same id across this plugin's skills so the user only sees one consent prompt.Passwords, Form Data, Network Management, Chromium Keys.Stub skill — listing implemented. Search/filter, output formats, and bulk export need to be built out.