vibecodingmachine-core 1.0.2 โ 2025.11.2-7.1302
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/.babelrc +13 -13
- package/README.md +28 -28
- package/__tests__/applescript-manager-claude-fix.test.js +286 -286
- package/__tests__/requirement-2-auto-start-looping.test.js +69 -69
- package/__tests__/requirement-3-auto-start-looping.test.js +69 -69
- package/__tests__/requirement-4-auto-start-looping.test.js +69 -69
- package/__tests__/requirement-6-auto-start-looping.test.js +73 -73
- package/__tests__/requirement-7-status-tracking.test.js +332 -332
- package/jest.config.js +18 -18
- package/jest.setup.js +12 -12
- package/package.json +48 -48
- package/src/auth/access-denied.html +119 -119
- package/src/auth/shared-auth-storage.js +230 -230
- package/src/autonomous-mode/feature-implementer.cjs +70 -70
- package/src/autonomous-mode/feature-implementer.js +425 -425
- package/src/chat-management/chat-manager.cjs +71 -71
- package/src/chat-management/chat-manager.js +342 -342
- package/src/ide-integration/__tests__/applescript-manager-thread-closure.test.js +227 -227
- package/src/ide-integration/aider-cli-manager.cjs +850 -850
- package/src/ide-integration/applescript-manager.cjs +1088 -1088
- package/src/ide-integration/applescript-manager.js +2802 -2802
- package/src/ide-integration/applescript-utils.js +306 -306
- package/src/ide-integration/cdp-manager.cjs +221 -221
- package/src/ide-integration/cdp-manager.js +321 -321
- package/src/ide-integration/claude-code-cli-manager.cjs +301 -301
- package/src/ide-integration/cline-cli-manager.cjs +2252 -2252
- package/src/ide-integration/continue-cli-manager.js +431 -431
- package/src/ide-integration/provider-manager.cjs +354 -354
- package/src/ide-integration/quota-detector.cjs +34 -34
- package/src/ide-integration/quota-detector.js +349 -349
- package/src/ide-integration/windows-automation-manager.js +262 -262
- package/src/index.cjs +47 -43
- package/src/index.js +17 -17
- package/src/llm/direct-llm-manager.cjs +609 -609
- package/src/ui/ButtonComponents.js +247 -247
- package/src/ui/ChatInterface.js +499 -499
- package/src/ui/StateManager.js +259 -259
- package/src/utils/audit-logger.cjs +116 -116
- package/src/utils/config-helpers.cjs +94 -94
- package/src/utils/config-helpers.js +94 -94
- package/src/utils/electron-update-checker.js +113 -85
- package/src/utils/gcloud-auth.cjs +394 -394
- package/src/utils/logger.cjs +193 -193
- package/src/utils/logger.js +191 -191
- package/src/utils/repo-helpers.cjs +120 -120
- package/src/utils/repo-helpers.js +120 -120
- package/src/utils/requirement-helpers.js +432 -432
- package/src/utils/update-checker.js +227 -167
- package/src/utils/version-checker.js +169 -0
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
// @vibecodingmachine/core - Quota Detector (CommonJS) - Stub
|
|
2
|
-
// Handles quota detection for different IDEs using CDP and AppleScript
|
|
3
|
-
|
|
4
|
-
class QuotaDetector {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.logger = console;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
async detectQuotaWarning(ide = 'vscode') {
|
|
10
|
-
this.logger.log(`๐ Quota detection stub for ${ide}`);
|
|
11
|
-
return {
|
|
12
|
-
hasQuotaWarning: false,
|
|
13
|
-
method: 'stub',
|
|
14
|
-
note: 'Quota detection not implemented in stub'
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
async getAvailableIdes(ides = ['vscode', 'cursor', 'windsurf']) {
|
|
19
|
-
this.logger.log('๐ Available IDEs stub');
|
|
20
|
-
return ides;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
async testQuotaDetection(ide) {
|
|
24
|
-
this.logger.log(`๐งช Quota detection test stub for ${ide}`);
|
|
25
|
-
return {
|
|
26
|
-
ide,
|
|
27
|
-
success: true,
|
|
28
|
-
hasQuotaWarning: false,
|
|
29
|
-
method: 'stub'
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
module.exports = { QuotaDetector };
|
|
1
|
+
// @vibecodingmachine/core - Quota Detector (CommonJS) - Stub
|
|
2
|
+
// Handles quota detection for different IDEs using CDP and AppleScript
|
|
3
|
+
|
|
4
|
+
class QuotaDetector {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.logger = console;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
async detectQuotaWarning(ide = 'vscode') {
|
|
10
|
+
this.logger.log(`๐ Quota detection stub for ${ide}`);
|
|
11
|
+
return {
|
|
12
|
+
hasQuotaWarning: false,
|
|
13
|
+
method: 'stub',
|
|
14
|
+
note: 'Quota detection not implemented in stub'
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
async getAvailableIdes(ides = ['vscode', 'cursor', 'windsurf']) {
|
|
19
|
+
this.logger.log('๐ Available IDEs stub');
|
|
20
|
+
return ides;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
async testQuotaDetection(ide) {
|
|
24
|
+
this.logger.log(`๐งช Quota detection test stub for ${ide}`);
|
|
25
|
+
return {
|
|
26
|
+
ide,
|
|
27
|
+
success: true,
|
|
28
|
+
hasQuotaWarning: false,
|
|
29
|
+
method: 'stub'
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
module.exports = { QuotaDetector };
|