vibecodingmachine-cli 2026.1.24-1641 → 2026.1.29-1432

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 (41) hide show
  1. package/package.json +12 -4
  2. package/.allnightai/REQUIREMENTS.md +0 -11
  3. package/.eslintrc.js +0 -16
  4. package/__tests__/antigravity-js-handler.test.js +0 -23
  5. package/__tests__/provider-manager.test.js +0 -84
  6. package/__tests__/provider-rate-cache.test.js +0 -27
  7. package/jest.config.js +0 -8
  8. package/logs/audit/2025-11-07.jsonl +0 -2
  9. package/logs/audit/2025-12-24.jsonl +0 -2
  10. package/logs/audit/2025-12-27.jsonl +0 -1
  11. package/logs/audit/2026-01-03.jsonl +0 -2
  12. package/logs/audit/2026-01-23.jsonl +0 -2
  13. package/repro_open.js +0 -13
  14. package/reproduce_issue.js +0 -160
  15. package/reset_provider_order.js +0 -21
  16. package/scripts/README.md +0 -128
  17. package/scripts/auto-start-wrapper.sh +0 -92
  18. package/scripts/convert-requirements.js +0 -35
  19. package/scripts/debug-parse.js +0 -24
  20. package/src/commands/auto.js.bak +0 -710
  21. package/src/utils/auto-mode-ui.js.bak.blessed +0 -207
  22. package/tests/antigravity-js-handler.test.js +0 -23
  23. package/tests/auto-mode.test.js +0 -37
  24. package/tests/config.test.js +0 -34
  25. package/tests/home-bootstrap.test.js +0 -76
  26. package/tests/integration/health-tracking.integration.test.js +0 -284
  27. package/tests/provider-manager.test.js +0 -92
  28. package/tests/rate-limit-display.test.js +0 -44
  29. package/tests/requirements-bullet-parsing.test.js +0 -15
  30. package/tests/requirements-converter.test.js +0 -42
  31. package/tests/requirements-heading-count.test.js +0 -27
  32. package/tests/requirements-legacy-parsing.test.js +0 -15
  33. package/tests/requirements-navigator-buildtree-await.test.js +0 -28
  34. package/tests/requirements-parse-integration.test.js +0 -44
  35. package/tests/wait-for-ide-completion.test.js +0 -56
  36. package/tests/wait-for-ide-quota-detection-cursor-screenshot.test.js +0 -61
  37. package/tests/wait-for-ide-quota-detection-cursor.test.js +0 -60
  38. package/tests/wait-for-ide-quota-detection-negative.test.js +0 -45
  39. package/tests/wait-for-ide-quota-detection.test.js +0 -59
  40. package/verify_fix.js +0 -36
  41. package/verify_ui.js +0 -38
@@ -1,35 +0,0 @@
1
- #!/usr/bin/env node
2
- const fs = require('fs-extra');
3
- const path = require('path');
4
- const os = require('os');
5
- const { getRequirementsPath } = require('vibecodingmachine-core/src/utils/repo-helpers.cjs');
6
- const { convertPackageBlocksToHeadings } = require('../src/utils/requirements-converter');
7
-
8
- async function main() {
9
- try {
10
- const repoRoot = path.resolve(__dirname, '..', '..', '..');
11
- const reqPath = await getRequirementsPath(repoRoot, os.hostname());
12
- if (!reqPath || !await fs.pathExists(reqPath)) {
13
- console.error('Requirements file not found for this host:', reqPath);
14
- process.exit(1);
15
- }
16
-
17
- const content = await fs.readFile(reqPath, 'utf8');
18
- const converted = convertPackageBlocksToHeadings(content, 'todo', '⏳ Requirements not yet completed');
19
-
20
- // Backup
21
- const backupPath = `${reqPath}.bak.${Date.now()}`;
22
- await fs.copy(reqPath, backupPath);
23
- console.log('Backup created at', backupPath);
24
-
25
- await fs.writeFile(reqPath, converted, 'utf8');
26
- console.log('Converted requirements written to', reqPath);
27
- } catch (e) {
28
- console.error('Error converting requirements:', e);
29
- process.exit(1);
30
- }
31
- }
32
-
33
- if (require.main === module) {
34
- main();
35
- }
@@ -1,24 +0,0 @@
1
- const { parseRequirementsFromContent } = require('../src/utils/requirements-parser');
2
- const content = `# REQUIREMENTS
3
-
4
- ## ⏳ Requirements not yet completed
5
-
6
- PACKAGE: cli
7
- Add filter options to ` + "`vcm req:list`" + `: --computer <hostname>
8
-
9
- - Add
10
- - bullet one
11
- - bullet two
12
-
13
- ### Modify "Add Requirement" dialog to include computer selection dropdown. Show computer focus areas as hints. Allow selecting a computer.
14
-
15
- PACKAGE: electron-app
16
- Create modal dialog for resolving sync conflicts. Show side-by-side diff of local vs remote changes.
17
-
18
- - Create network status indicator
19
-
20
- `;
21
-
22
- const reqs = parseRequirementsFromContent(content, 'todo', '⏳ Requirements not yet completed');
23
- console.log('Parsed titles:', reqs.map(r => r.title));
24
- console.log('Full:', JSON.stringify(reqs, null, 2));