Passwords Skill

Encrypt and decrypt Bitwarden master passwords with Fernet symmetric encryption.

1|Updated Feb 24, 2026
One-click install
npx skills add https://github.com/victor-brechbill/claw-kernel --skill passwords-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Passwords Skill
Source: https://github.com/victor-brechbill/claw-kernel/tree/main/skills/passwords
Command: npx skills add https://github.com/victor-brechbill/claw-kernel --skill passwords-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill provides a secure and automated way to manage your Bitwarden master password, ensuring sensitive credentials are not exposed.

Core Features & Use Cases

  • Secure Storage: Encrypts and stores your Bitwarden master password locally.
  • Safe Retrieval: Decrypts the password and offers options to copy to clipboard, pipe to Bitwarden CLI, or print to stdout (with warnings).
  • Sub-agent Integration: Facilitates loading credentials into environment variables for use by other agents without direct exposure.

Quick Start

Encrypt your Bitwarden master password by running the encrypt script with your password.

Frequently Asked Questions about Passwords Skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I securely store my Bitwarden master password locally for automation?

You can securely store your Bitwarden master password locally by encrypting it with Fernet symmetric encryption and saving it to a local vault file with restricted file permissions.

What is the best way to manage secrets and credentials for automated sub-agents?

Managing secrets for sub-agents involves loading decrypted credentials directly into environment variables. This skill facilitates secure credential retrieval, preventing direct exposure while allowing operational use by other agents.

How does Fernet symmetric encryption protect sensitive credentials in a local vault?

Fernet symmetric encryption protects credentials by generating a cryptographic key to encrypt the Bitwarden master password. The encrypted data is stored locally, ensuring sensitive information remains secure without direct exposure.

Can I pipe decrypted Bitwarden credentials directly to the Bitwarden CLI?

Yes, you can pipe decrypted Bitwarden credentials directly to the Bitwarden CLI. The skill provides safe retrieval methods that decrypt the password and offer options to copy to clipboard, pipe to CLI, or print to stdout.

Does this credential management approach work without external secrets management dependencies?

Yes, this credential management approach works without external dependencies. It handles key generation, Fernet symmetric encryption, and secure file permissions independently to manage your Bitwarden credentials locally.