@hexabot-ai/cli 3.2.1-alpha.0 → 3.2.2-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -141,7 +141,7 @@ const validateAdminPassword = (value) => {
141
141
  return 'Password is required.';
142
142
  }
143
143
  // Keep the rule simple and explicit for CLI UX. Complexity policies vary by org.
144
- const minLength = 12;
144
+ const minLength = 8;
145
145
  if (trimmed.length < minLength) {
146
146
  return `Password must be at least ${minLength} characters.`;
147
147
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexabot-ai/cli",
3
- "version": "3.2.1-alpha.0",
3
+ "version": "3.2.2-alpha.1",
4
4
  "description": "Official Hexabot CLI for creating and managing AI chatbot/agent projects built with Hexabot.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -213,7 +213,7 @@ const validateAdminPassword = (value: string) => {
213
213
  }
214
214
 
215
215
  // Keep the rule simple and explicit for CLI UX. Complexity policies vary by org.
216
- const minLength = 12;
216
+ const minLength = 8;
217
217
  if (trimmed.length < minLength) {
218
218
  return `Password must be at least ${minLength} characters.`;
219
219
  }