@eldrforge/kodrdriv 1.2.125 → 1.2.126
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/README.md +11 -0
- package/dist/arguments.js +9 -3
- package/dist/arguments.js.map +1 -1
- package/dist/commands/commit.js +1 -1
- package/dist/commands/commit.js.map +1 -1
- package/dist/commands/release.js +221 -9
- package/dist/commands/release.js.map +1 -1
- package/dist/commands/tree.js +51 -0
- package/dist/commands/tree.js.map +1 -1
- package/dist/constants.js +1 -1
- package/package.json +2 -2
package/dist/commands/commit.js
CHANGED
|
@@ -24,7 +24,7 @@ import { createLoggerAdapter } from '../util/loggerAdapter.js';
|
|
|
24
24
|
async function generateSelfReflection(agenticResult, outputDirectory, storage, logger) {
|
|
25
25
|
try {
|
|
26
26
|
const timestamp = new Date().toISOString().replace(/[:.]/g, '-').split('.')[0];
|
|
27
|
-
const reflectionPath = getOutputPath(outputDirectory, `agentic-reflection-${timestamp}.md`);
|
|
27
|
+
const reflectionPath = getOutputPath(outputDirectory, `agentic-reflection-commit-${timestamp}.md`);
|
|
28
28
|
// Calculate tool effectiveness metrics
|
|
29
29
|
const toolMetrics = agenticResult.toolMetrics || [];
|
|
30
30
|
const toolStats = new Map();
|