@eldrforge/kodrdriv 1.2.129 → 1.2.131

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 (48) hide show
  1. package/DUPLICATION-CLEANUP.md +104 -0
  2. package/dist/application.js +1 -2
  3. package/dist/application.js.map +1 -1
  4. package/dist/commands/audio-commit.js +1 -2
  5. package/dist/commands/audio-commit.js.map +1 -1
  6. package/dist/commands/clean.js +1 -2
  7. package/dist/commands/clean.js.map +1 -1
  8. package/dist/commands/commit.js +1 -2
  9. package/dist/commands/commit.js.map +1 -1
  10. package/dist/commands/review.js +1 -2
  11. package/dist/commands/review.js.map +1 -1
  12. package/dist/commands/tree.js +5 -5
  13. package/dist/commands/tree.js.map +1 -1
  14. package/dist/commands/versions.js.map +1 -1
  15. package/dist/constants.js +1 -1
  16. package/dist/content/diff.js +1 -1
  17. package/dist/content/diff.js.map +1 -1
  18. package/dist/content/log.js +1 -1
  19. package/dist/content/log.js.map +1 -1
  20. package/package.json +9 -7
  21. package/dist/error/CancellationError.js +0 -9
  22. package/dist/error/CancellationError.js.map +0 -1
  23. package/dist/error/CommandErrors.js +0 -63
  24. package/dist/error/CommandErrors.js.map +0 -1
  25. package/dist/error/ExitError.js +0 -9
  26. package/dist/error/ExitError.js.map +0 -1
  27. package/dist/execution/CommandValidator.js +0 -192
  28. package/dist/execution/CommandValidator.js.map +0 -1
  29. package/dist/execution/DependencyChecker.js +0 -102
  30. package/dist/execution/DependencyChecker.js.map +0 -1
  31. package/dist/execution/DynamicTaskPool.js +0 -661
  32. package/dist/execution/DynamicTaskPool.js.map +0 -1
  33. package/dist/execution/RecoveryManager.js +0 -584
  34. package/dist/execution/RecoveryManager.js.map +0 -1
  35. package/dist/execution/ResourceMonitor.js +0 -150
  36. package/dist/execution/ResourceMonitor.js.map +0 -1
  37. package/dist/execution/Scheduler.js +0 -98
  38. package/dist/execution/Scheduler.js.map +0 -1
  39. package/dist/execution/TreeExecutionAdapter.js +0 -225
  40. package/dist/execution/TreeExecutionAdapter.js.map +0 -1
  41. package/dist/ui/ProgressFormatter.js +0 -250
  42. package/dist/ui/ProgressFormatter.js.map +0 -1
  43. package/dist/util/checkpointManager.js +0 -166
  44. package/dist/util/checkpointManager.js.map +0 -1
  45. package/dist/util/dependencyGraph.js +0 -222
  46. package/dist/util/dependencyGraph.js.map +0 -1
  47. package/dist/util/mutex.js +0 -96
  48. package/dist/util/mutex.js.map +0 -1
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { Formatter } from '@riotprompt/riotprompt';
3
- import { ValidationError, FileOperationError, CommandError } from '../error/CommandErrors.js';
3
+ import { ValidationError, FileOperationError, CommandError, createStorage } from '@eldrforge/shared';
4
4
  import { getLogger } from '../logging.js';
5
5
  import { getUserChoice, createReviewPrompt, createCompletion } from '@eldrforge/ai-service';
6
6
  import { toAIConfig } from '../util/aiAdapter.js';
@@ -11,7 +11,6 @@ import { getReviewExcludedPatterns, getRecentDiffsForReview } from '../content/d
11
11
  import { handleIssueCreation, getReleaseNotesContent, getIssuesContent } from '@eldrforge/github-tools';
12
12
  import { DEFAULT_EXCLUDED_PATTERNS, DEFAULT_OUTPUT_DIRECTORY } from '../constants.js';
13
13
  import { getTimestampedReviewNotesFilename, getOutputPath, getTimestampedReviewFilename, getTimestampedResponseFilename, getTimestampedRequestFilename } from '../util/general.js';
14
- import { createStorage } from '@eldrforge/shared';
15
14
  import path__default from 'path';
16
15
  import os__default from 'os';
17
16
  import { spawn } from 'child_process';