n8n-password-reset

Reset n8n account passwords by modifying the SQLite database.

2|7|Updated Jun 19, 2026
One-click install
npx skills add https://github.com/humanerd-drew/opencode-drewgent --skill n8n-password-reset
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: n8n-password-reset
Source: https://github.com/humanerd-drew/opencode-drewgent/tree/main/skills/automation/n8n-password-reset
Command: npx skills add https://github.com/humanerd-drew/opencode-drewgent --skill n8n-password-reset

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

This Skill provides a method to reset passwords for n8n accounts directly through SQLite database manipulation, bypassing the need for the n8n user CLI.

Core Features & Use Cases

  • Direct Password Reset: Resets n8n account passwords by modifying the SQLite database.
  • Bypass CLI: Utilizes direct database manipulation to reset passwords, as the n8n user CLI is not available.
  • Use Case: Ideal for resetting passwords for locked n8n accounts when the n8n user CLI is not accessible.

Quick Start

Reset the password for the n8n account with the email '[email protected]' using this Skill.

Frequently Asked Questions about n8n-password-reset

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

FAQPage Schema
How do I reset an n8n account password without using the user CLI?

Resetting an n8n password without the user CLI requires direct SQLite database manipulation to update the user credential record. This method bypasses the standard CLI tool by modifying the underlying database table directly.

Can I use direct database manipulation to unlock n8n accounts when CLI is unavailable?

Yes, direct SQLite database manipulation can unlock n8n accounts when the CLI is unavailable. You modify the database directly to reset the password, which is ideal for recovering locked accounts in restricted n8n environments.

Do I need to know SQL and bcrypt to reset n8n passwords directly?

Yes, resetting n8n passwords directly requires knowledge of SQL and bcrypt hashing. You must generate a bcrypt hash for the new password and use SQL commands to update the SQLite database accordingly.

What is the best way to change n8n credentials if the user CLI is missing?

The best way to change n8n credentials without the user CLI is through direct SQLite database manipulation. This method modifies the database records directly, providing a reliable administrative password reset alternative for n8n environments.

Are there limitations to resetting n8n passwords by editing the SQLite database directly?

The main limitation of resetting n8n passwords by editing the SQLite database directly is the requirement for SQL and bcrypt expertise. This approach is designed specifically for administrative password reset tasks when CLI access is unavailable.