account_manager

Store and manage user credentials with get, list, add, and remove operations.

3|Updated Jan 9, 2026
One-click install
npx skills add https://github.com/glwlg/X-bot --skill account-manager
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: account_manager
Source: https://github.com/glwlg/X-bot/tree/main/skills/builtin/account_manager
Command: npx skills add https://github.com/glwlg/X-bot --skill account-manager

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pyotp, and includes scripts (resource) components.

What problem does it solve?

This Skill securely stores, retrieves, and manages user credentials (passwords, API keys, cookies), helping you keep sensitive data organized and private.

Core Features & Use Cases

  • Secure storage: encrypted persistence for credentials per user.
  • Query, list, add, remove: supports actions get/list/add/remove with MFA support if mfa_secret present.
  • MFA support: if data contains mfa_secret, generates current TOTP.

Quick Start

Save a Netflix account with username "user" and password "pass".

Frequently Asked Questions about account_manager

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

FAQPage Schema
How do I securely store and manage API keys and passwords for multiple services?

Secure credential storage allows you to add, list, get, and remove passwords and API keys per user across services. It keeps sensitive data organized in an encrypted format within your existing environment.

Can I generate TOTP codes from an MFA secret stored alongside my passwords?

Yes, if a stored credential entry contains an mfa_secret, the system generates current TOTP codes automatically. This requires the pyotp library to be installed and available in the running environment.

Do I need the pyotp library to use secure credential storage and management?

The pyotp library is only required for generating TOTP codes from stored MFA secrets. Basic credential storage, retrieval, and management of passwords and API keys function independently without this dependency installed.

What is the best way to organize and retrieve per-user credentials like cookies and passwords?

Per-user credential management isolates sensitive data like cookies and passwords by user profile. You use targeted list and get operations to retrieve specific service credentials, ensuring data remains private and correctly scoped.

How do I add and remove stored passwords for specific services like Netflix?

You use the add and remove actions to save or delete service credentials. For example, adding a Netflix account requires specifying the service name with the corresponding username and password for persistent storage.