wolverine-ai 3.8.0 → 3.8.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolverine-ai",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "Self-healing Node.js server framework powered by AI. Catches crashes, diagnoses errors, generates fixes, verifies, and restarts — automatically.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -57,9 +57,9 @@ const HUMAN_REQUIRED_PATTERNS = [
57
57
  { pattern: /EACCES/i, category: "permission", hint: "Permission denied on file system" },
58
58
  { pattern: /EPERM/i, category: "permission", hint: "Operation not permitted — check file/process permissions" },
59
59
 
60
- // Environment
60
+ // Environment — only match system-level env issues, not app config files the agent can create
61
61
  { pattern: /not\s+set|undefined.*env|missing.*env/i, category: "env", hint: "Environment variable not configured" },
62
- { pattern: /missing.*config/i, category: "env", hint: "Configuration file or value missing" },
62
+ { pattern: /missing.*(\.env|environment|env\s*var)/i, category: "env", hint: "Environment variable or .env file missing" },
63
63
 
64
64
  // Disk
65
65
  { pattern: /ENOSPC/i, category: "disk", hint: "Disk space full" },