From kde-plasma
Write or update a password / map / binary entry in KWallet. Creates the folder if it doesn't exist. Use to seed credentials for KDE apps that don't have their own input flow.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin kde-plasmaThis skill uses the workspace's default tool permissions.
```bash
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
WALLET="kdewallet"
APPID="claude-kde-plasma"
HANDLE=$(qdbus org.kde.kwalletd6 /modules/kwalletd6 open "$WALLET" 0 "$APPID")
[ "$HANDLE" = "-1" ] && { echo "User declined to unlock"; exit 1; }
FOLDER="Passwords"
qdbus org.kde.kwalletd6 /modules/kwalletd6 hasFolder "$HANDLE" "$FOLDER" "$APPID" \
| grep -q true || qdbus org.kde.kwalletd6 /modules/kwalletd6 createFolder "$HANDLE" "$FOLDER" "$APPID"
KEY="github-token"
VALUE="ghp_..."
qdbus org.kde.kwalletd6 /modules/kwalletd6 writePassword "$HANDLE" "$FOLDER" "$KEY" "$VALUE" "$APPID"
# Maps are serialised QMap<QString,QString> — easiest to write via kwallet-query
echo -e "user=foo\npass=bar" | kwallet-query -f "$FOLDER" -w "$KEY" "$WALLET"
qdbus org.kde.kwalletd6 /modules/kwalletd6 removeEntry "$HANDLE" "$FOLDER" "$KEY" "$APPID"
qdbus org.kde.kwalletd6 /modules/kwalletd6 close "$HANDLE" false "$APPID"
/proc/<pid>/cmdline. Read into a variable first via read -s, then pass.Stub skill — basic write is wired. Idempotent updates, batch import from 1Password / file, and dry-run are TODO.