ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Login

Store, retrieve, and manage login credentials securely using bash and Python with local encryption. Use when saving website logins, API keys, or generating secure passwords.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/bytesagain/login
Or

Login — Credential Manager & Password Vault

A local credential management tool for storing website logins, API keys, and service credentials securely. Features include password generation, credential search, strength checking, and encrypted export. All data is stored locally in JSONL format with optional field-level obfuscation.

Prerequisites

  • Python 3.6+
  • Bash 4+

Data Storage

All credential records are stored in ~/.login/data.jsonl. Each record is a JSON object with fields including id, type (credential, note), service, username, password (base64-obfuscated), url, tags, created_at, updated_at, and optional metadata.

Commands

Run via: bash scripts/script.sh <command> [options]

CommandDescription
addAdd a new credential entry with service name, username, password, and URL
listList all stored credentials (passwords masked by default)
getRetrieve a specific credential by ID or service name (shows password)
updateUpdate an existing credential's username, password, URL, or tags
deleteRemove a credential entry by ID
searchSearch credentials by service name, username, URL, or tags
generateGenerate a secure random password with configurable length and rules
strengthCheck the strength of a given password and provide improvement tips
duplicateFind credentials with duplicate or similar passwords
expireList credentials older than a specified number of days
exportExport credentials to encrypted JSON or CSV format
importImport credentials from a JSON or CSV file
helpShow usage information
versionPrint the tool version

Usage Examples

# Add a new credential
bash scripts/script.sh add --service "GitHub" --username "myuser" --password "s3cureP@ss" --url "https://github.com" --tags "dev,git"

# List all credentials (passwords masked)
bash scripts/script.sh list

# Get a specific credential (shows password)
bash scripts/script.sh get --service "GitHub"

# Get by ID
bash scripts/script.sh get --id abc123

# Update a credential
bash scripts/script.sh update --id abc123 --password "newP@ssw0rd!" --tags "dev,git,work"

# Delete a credential
bash scripts/script.sh delete --id abc123

# Search by tag
bash scripts/script.sh search --tag "dev"

# Search by service name
bash scripts/script.sh search --query "git"

# Generate a 20-character password
bash scripts/script.sh generate --length 20 --symbols --numbers --uppercase

# Generate without ambiguous characters
bash scripts/script.sh generate --length 16 --no-ambiguous

# Check password strength
bash scripts/script.sh strength --password "mypassword123"

# Find duplicate passwords
bash scripts/script.sh duplicate

# Find credentials older than 90 days
bash scripts/script.sh expire --days 90

# Export encrypted
bash scripts/script.sh export --format json --output credentials.json

Metadata

Stars3500
Views0
Updated2026-03-27
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-bytesagain-login": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.