vibecodingmachine-core 2026.3.10-1807 → 2026.3.14-1524

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.
Files changed (45) hide show
  1. package/package.json +1 -1
  2. package/src/agents/AgentAdditionService.js +1 -1
  3. package/src/agents/config/AgentConfigManager.js +1 -1
  4. package/src/agents/config-managers/DefaultConfig.js +1 -1
  5. package/src/auth/access-denied.html +119 -119
  6. package/src/auth/shared-auth-storage.js +267 -267
  7. package/src/autonomous-mode/feature-implementer.cjs +70 -70
  8. package/src/autonomous-mode/feature-implementer.js +425 -425
  9. package/src/beta-request.js +160 -160
  10. package/src/chat-management/chat-manager.cjs +71 -71
  11. package/src/chat-management/chat-manager.js +342 -342
  12. package/src/compliance/compliance-prompt.js +183 -183
  13. package/src/ide-integration/aider-cli-manager.cjs +850 -850
  14. package/src/ide-integration/applescript-manager.cjs +3225 -3215
  15. package/src/ide-integration/applescript-utils.js +314 -314
  16. package/src/ide-integration/cdp-manager.cjs +221 -221
  17. package/src/ide-integration/claude-code-cli-manager.cjs +456 -456
  18. package/src/ide-integration/cline-cli-manager.cjs +2252 -2252
  19. package/src/ide-integration/continue-cli-manager.js +431 -431
  20. package/src/ide-integration/provider-manager.cjs +664 -595
  21. package/src/ide-integration/quota-detector.cjs +399 -399
  22. package/src/ide-integration/windows-automation-manager.js +235 -87
  23. package/src/index.cjs +143 -142
  24. package/src/llm/direct-llm-manager.cjs +1299 -1299
  25. package/src/localization/index.js +147 -147
  26. package/src/quota-management/index.js +108 -108
  27. package/src/requirement-numbering.js +164 -164
  28. package/src/sync/aws-setup.js +445 -445
  29. package/src/ui/ButtonComponents.js +247 -247
  30. package/src/ui/ChatInterface.js +499 -499
  31. package/src/ui/StateManager.js +259 -259
  32. package/src/utils/audit-logger.cjs +116 -116
  33. package/src/utils/config-helpers.cjs +94 -94
  34. package/src/utils/config-helpers.js +94 -94
  35. package/src/utils/env-helpers.js +54 -54
  36. package/src/utils/error-reporter.js +117 -117
  37. package/src/utils/gcloud-auth.cjs +394 -394
  38. package/src/utils/git-branch-manager.js +278 -278
  39. package/src/utils/logger.cjs +193 -193
  40. package/src/utils/logger.js +191 -191
  41. package/src/utils/repo-helpers.cjs +120 -120
  42. package/src/utils/repo-helpers.js +120 -120
  43. package/src/utils/status-formatter.js +135 -0
  44. package/src/utils/update-checker.js +246 -246
  45. package/src/utils/version-checker.js +170 -170
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibecodingmachine-core",
3
- "version": "2026.03.10-1807",
3
+ "version": "2026.03.14-1524",
4
4
  "description": "Shared core logic for Vibe Coding Machine IDE integration",
5
5
  "main": "src/index.cjs",
6
6
  "module": "src/index.js",
@@ -21,7 +21,7 @@ class AgentAdditionService {
21
21
  this.configManager = options.configManager || new AgentConfigManager();
22
22
  this.validator = options.validator || new ConfigValidator();
23
23
  this.logger = options.logger || new AgentLogger();
24
- this.configPath = options.configPath || 'config/agents.json';
24
+ this.configPath = options.configPath || path.join(os.homedir(), '.vibecodingmachine', 'agents.json');
25
25
  }
26
26
 
27
27
  /**
@@ -21,7 +21,7 @@ class AgentConfigManager {
21
21
  * @param {string} options.projectRoot - Project root directory
22
22
  */
23
23
  constructor(options = {}) {
24
- this.configPath = options.configPath || path.join(process.cwd(), 'config', 'agents.json');
24
+ this.configPath = options.configPath || path.join(os.homedir(), '.vibecodingmachine', 'agents.json');
25
25
  this.projectRoot = options.projectRoot || process.cwd();
26
26
  this.agents = new Map();
27
27
  this.defaultsRegistry = new AgentDefaultsRegistry();
@@ -46,7 +46,7 @@ function getDefaultConfig() {
46
46
  flushInterval: 60000
47
47
  },
48
48
  agents: {
49
- defaultFile: './config/agents.json',
49
+ defaultFile: path.join(os.homedir(), '.vibecodingmachine', 'agents.json'),
50
50
  discoveryEnabled: true,
51
51
  autoUpdate: false
52
52
  }
@@ -1,119 +1,119 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="UTF-8">
5
- <title>Access Denied</title>
6
- <style>
7
- body {
8
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
9
- text-align: center;
10
- padding: 0;
11
- margin: 0;
12
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
13
- min-height: 100vh;
14
- display: flex;
15
- align-items: center;
16
- justify-content: center;
17
- }
18
- .container {
19
- background: white;
20
- padding: 50px;
21
- border-radius: 20px;
22
- box-shadow: 0 20px 60px rgba(0,0,0,0.3);
23
- max-width: 500px;
24
- position: relative;
25
- overflow: hidden;
26
- }
27
- .jail-bars {
28
- position: absolute;
29
- top: 0;
30
- left: 0;
31
- right: 0;
32
- height: 100%;
33
- display: flex;
34
- justify-content: space-around;
35
- padding: 0 30px;
36
- pointer-events: none;
37
- z-index: 10;
38
- }
39
- .bar {
40
- width: 8px;
41
- background: linear-gradient(to bottom, #555, #333);
42
- border-radius: 4px;
43
- box-shadow: 2px 0 4px rgba(0,0,0,0.3);
44
- }
45
- .content {
46
- position: relative;
47
- z-index: 5;
48
- animation: slideContent 8s ease-in-out infinite;
49
- }
50
- .emoji {
51
- font-size: 100px;
52
- margin: 20px 0;
53
- animation: shake 0.5s infinite;
54
- }
55
- @keyframes shake {
56
- 0%, 100% { transform: translateX(0); }
57
- 25% { transform: translateX(-5px); }
58
- 75% { transform: translateX(5px); }
59
- }
60
- @keyframes slideContent {
61
- 0%, 100% { transform: translateX(0); }
62
- 25% { transform: translateX(15px); }
63
- 50% { transform: translateX(0); }
64
- 75% { transform: translateX(-15px); }
65
- }
66
- h1 {
67
- color: #ef4444;
68
- margin: 20px 0;
69
- font-size: 32px;
70
- }
71
- p {
72
- color: #666;
73
- font-size: 18px;
74
- margin: 15px 0;
75
- }
76
- .beta-text {
77
- background: #fef3c7;
78
- border: 2px solid #f59e0b;
79
- border-radius: 10px;
80
- padding: 20px;
81
- margin: 25px 0;
82
- }
83
- .beta-text strong {
84
- color: #d97706;
85
- font-size: 20px;
86
- }
87
- .beta-text p {
88
- margin: 10px 0;
89
- }
90
- .close-text {
91
- margin-top: 30px;
92
- color: #999;
93
- font-size: 14px;
94
- }
95
- </style>
96
- </head>
97
- <body>
98
- <div class="container">
99
- <div class="jail-bars">
100
- <div class="bar"></div>
101
- <div class="bar"></div>
102
- <div class="bar"></div>
103
- <div class="bar"></div>
104
- <div class="bar"></div>
105
- <div class="bar"></div>
106
- </div>
107
- <div class="content">
108
- <div class="emoji">🔒</div>
109
- <h1>Access Denied!</h1>
110
- <div class="beta-text">
111
- <strong>Beta Access Only</strong>
112
- <p style="margin-top: 15px;">Vibe Coding Machine is currently in private beta.</p>
113
- <p>Want early access? Contact us to join the beta program!</p>
114
- </div>
115
- <p class="close-text">You can close this window now.</p>
116
- </div>
117
- </div>
118
- </body>
119
- </html>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Access Denied</title>
6
+ <style>
7
+ body {
8
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
9
+ text-align: center;
10
+ padding: 0;
11
+ margin: 0;
12
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
13
+ min-height: 100vh;
14
+ display: flex;
15
+ align-items: center;
16
+ justify-content: center;
17
+ }
18
+ .container {
19
+ background: white;
20
+ padding: 50px;
21
+ border-radius: 20px;
22
+ box-shadow: 0 20px 60px rgba(0,0,0,0.3);
23
+ max-width: 500px;
24
+ position: relative;
25
+ overflow: hidden;
26
+ }
27
+ .jail-bars {
28
+ position: absolute;
29
+ top: 0;
30
+ left: 0;
31
+ right: 0;
32
+ height: 100%;
33
+ display: flex;
34
+ justify-content: space-around;
35
+ padding: 0 30px;
36
+ pointer-events: none;
37
+ z-index: 10;
38
+ }
39
+ .bar {
40
+ width: 8px;
41
+ background: linear-gradient(to bottom, #555, #333);
42
+ border-radius: 4px;
43
+ box-shadow: 2px 0 4px rgba(0,0,0,0.3);
44
+ }
45
+ .content {
46
+ position: relative;
47
+ z-index: 5;
48
+ animation: slideContent 8s ease-in-out infinite;
49
+ }
50
+ .emoji {
51
+ font-size: 100px;
52
+ margin: 20px 0;
53
+ animation: shake 0.5s infinite;
54
+ }
55
+ @keyframes shake {
56
+ 0%, 100% { transform: translateX(0); }
57
+ 25% { transform: translateX(-5px); }
58
+ 75% { transform: translateX(5px); }
59
+ }
60
+ @keyframes slideContent {
61
+ 0%, 100% { transform: translateX(0); }
62
+ 25% { transform: translateX(15px); }
63
+ 50% { transform: translateX(0); }
64
+ 75% { transform: translateX(-15px); }
65
+ }
66
+ h1 {
67
+ color: #ef4444;
68
+ margin: 20px 0;
69
+ font-size: 32px;
70
+ }
71
+ p {
72
+ color: #666;
73
+ font-size: 18px;
74
+ margin: 15px 0;
75
+ }
76
+ .beta-text {
77
+ background: #fef3c7;
78
+ border: 2px solid #f59e0b;
79
+ border-radius: 10px;
80
+ padding: 20px;
81
+ margin: 25px 0;
82
+ }
83
+ .beta-text strong {
84
+ color: #d97706;
85
+ font-size: 20px;
86
+ }
87
+ .beta-text p {
88
+ margin: 10px 0;
89
+ }
90
+ .close-text {
91
+ margin-top: 30px;
92
+ color: #999;
93
+ font-size: 14px;
94
+ }
95
+ </style>
96
+ </head>
97
+ <body>
98
+ <div class="container">
99
+ <div class="jail-bars">
100
+ <div class="bar"></div>
101
+ <div class="bar"></div>
102
+ <div class="bar"></div>
103
+ <div class="bar"></div>
104
+ <div class="bar"></div>
105
+ <div class="bar"></div>
106
+ </div>
107
+ <div class="content">
108
+ <div class="emoji">🔒</div>
109
+ <h1>Access Denied!</h1>
110
+ <div class="beta-text">
111
+ <strong>Beta Access Only</strong>
112
+ <p style="margin-top: 15px;">Vibe Coding Machine is currently in private beta.</p>
113
+ <p>Want early access? Contact us to join the beta program!</p>
114
+ </div>
115
+ <p class="close-text">You can close this window now.</p>
116
+ </div>
117
+ </div>
118
+ </body>
119
+ </html>