@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.
- package/DUPLICATION-CLEANUP.md +104 -0
- package/dist/application.js +1 -2
- package/dist/application.js.map +1 -1
- package/dist/commands/audio-commit.js +1 -2
- package/dist/commands/audio-commit.js.map +1 -1
- package/dist/commands/clean.js +1 -2
- package/dist/commands/clean.js.map +1 -1
- package/dist/commands/commit.js +1 -2
- package/dist/commands/commit.js.map +1 -1
- package/dist/commands/review.js +1 -2
- package/dist/commands/review.js.map +1 -1
- package/dist/commands/tree.js +5 -5
- package/dist/commands/tree.js.map +1 -1
- package/dist/commands/versions.js.map +1 -1
- package/dist/constants.js +1 -1
- package/dist/content/diff.js +1 -1
- package/dist/content/diff.js.map +1 -1
- package/dist/content/log.js +1 -1
- package/dist/content/log.js.map +1 -1
- package/package.json +9 -7
- package/dist/error/CancellationError.js +0 -9
- package/dist/error/CancellationError.js.map +0 -1
- package/dist/error/CommandErrors.js +0 -63
- package/dist/error/CommandErrors.js.map +0 -1
- package/dist/error/ExitError.js +0 -9
- package/dist/error/ExitError.js.map +0 -1
- package/dist/execution/CommandValidator.js +0 -192
- package/dist/execution/CommandValidator.js.map +0 -1
- package/dist/execution/DependencyChecker.js +0 -102
- package/dist/execution/DependencyChecker.js.map +0 -1
- package/dist/execution/DynamicTaskPool.js +0 -661
- package/dist/execution/DynamicTaskPool.js.map +0 -1
- package/dist/execution/RecoveryManager.js +0 -584
- package/dist/execution/RecoveryManager.js.map +0 -1
- package/dist/execution/ResourceMonitor.js +0 -150
- package/dist/execution/ResourceMonitor.js.map +0 -1
- package/dist/execution/Scheduler.js +0 -98
- package/dist/execution/Scheduler.js.map +0 -1
- package/dist/execution/TreeExecutionAdapter.js +0 -225
- package/dist/execution/TreeExecutionAdapter.js.map +0 -1
- package/dist/ui/ProgressFormatter.js +0 -250
- package/dist/ui/ProgressFormatter.js.map +0 -1
- package/dist/util/checkpointManager.js +0 -166
- package/dist/util/checkpointManager.js.map +0 -1
- package/dist/util/dependencyGraph.js +0 -222
- package/dist/util/dependencyGraph.js.map +0 -1
- package/dist/util/mutex.js +0 -96
- package/dist/util/mutex.js.map +0 -1
package/dist/commands/review.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { Formatter } from '@riotprompt/riotprompt';
|
|
3
|
-
import { ValidationError, FileOperationError, CommandError } from '
|
|
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';
|