specweave 0.22.8 → 0.22.10
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/CLAUDE.md +56 -4
- package/dist/src/cli/commands/check-hooks.js.map +1 -1
- package/dist/src/cli/commands/detect-project.js +4 -0
- package/dist/src/cli/commands/detect-project.js.map +1 -1
- package/dist/src/cli/commands/import-docs.d.ts.map +1 -1
- package/dist/src/cli/commands/import-docs.js.map +1 -1
- package/dist/src/cli/commands/install.d.ts.map +1 -1
- package/dist/src/cli/commands/install.js +4 -0
- package/dist/src/cli/commands/install.js.map +1 -1
- package/dist/src/cli/commands/migrate-to-multiproject.d.ts.map +1 -1
- package/dist/src/cli/commands/migrate-to-multiproject.js.map +1 -1
- package/dist/src/cli/commands/plan-command.d.ts.map +1 -1
- package/dist/src/cli/commands/plan-command.js +4 -0
- package/dist/src/cli/commands/plan-command.js.map +1 -1
- package/dist/src/cli/commands/qa.d.ts.map +1 -1
- package/dist/src/cli/commands/qa.js.map +1 -1
- package/dist/src/cli/commands/revert-wip-limit.d.ts.map +1 -1
- package/dist/src/cli/commands/revert-wip-limit.js +4 -0
- package/dist/src/cli/commands/revert-wip-limit.js.map +1 -1
- package/dist/src/cli/commands/switch-project.d.ts.map +1 -1
- package/dist/src/cli/commands/switch-project.js +4 -0
- package/dist/src/cli/commands/switch-project.js.map +1 -1
- package/dist/src/cli/commands/sync-spec-commits.js +4 -0
- package/dist/src/cli/commands/sync-spec-commits.js.map +1 -1
- package/dist/src/cli/commands/sync-spec-content.js +4 -0
- package/dist/src/cli/commands/sync-spec-content.js.map +1 -1
- package/dist/src/cli/commands/validate-jira.d.ts.map +1 -1
- package/dist/src/cli/commands/validate-jira.js +4 -0
- package/dist/src/cli/commands/validate-jira.js.map +1 -1
- package/dist/src/core/repo-structure/prompt-consolidator.d.ts +2 -2
- package/dist/src/core/repo-structure/prompt-consolidator.d.ts.map +1 -1
- package/dist/src/core/repo-structure/prompt-consolidator.js +19 -3
- package/dist/src/core/repo-structure/prompt-consolidator.js.map +1 -1
- package/dist/src/core/repo-structure/repo-id-generator.d.ts +31 -10
- package/dist/src/core/repo-structure/repo-id-generator.d.ts.map +1 -1
- package/dist/src/core/repo-structure/repo-id-generator.js +113 -18
- package/dist/src/core/repo-structure/repo-id-generator.js.map +1 -1
- package/dist/src/core/repo-structure/repo-structure-manager.d.ts +5 -1
- package/dist/src/core/repo-structure/repo-structure-manager.d.ts.map +1 -1
- package/dist/src/core/repo-structure/repo-structure-manager.js +54 -29
- package/dist/src/core/repo-structure/repo-structure-manager.js.map +1 -1
- package/package.json +1 -1
- package/plugins/specweave/commands/specweave-increment.md +2 -2
- package/plugins/specweave/hooks/post-task-completion.sh +20 -4
- package/plugins/specweave/lib/hooks/sync-living-docs.js +47 -24
- package/plugins/specweave/skills/increment-planner/SKILL.md +2 -2
- package/plugins/specweave-release/hooks/.specweave/logs/dora-tracking.log +180 -0
|
@@ -204,7 +204,11 @@ if command -v node &> /dev/null; then
|
|
|
204
204
|
|
|
205
205
|
# Determine which sync script to use (project local or global)
|
|
206
206
|
SYNC_SCRIPT=""
|
|
207
|
-
if [ -f "$PROJECT_ROOT/
|
|
207
|
+
if [ -f "$PROJECT_ROOT/plugins/specweave/lib/hooks/sync-living-docs.js" ]; then
|
|
208
|
+
# Development: Use in-place compiled hooks (esbuild, not tsc)
|
|
209
|
+
SYNC_SCRIPT="$PROJECT_ROOT/plugins/specweave/lib/hooks/sync-living-docs.js"
|
|
210
|
+
echo "[$(date)] Using in-place compiled hook: $SYNC_SCRIPT" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
211
|
+
elif [ -f "$PROJECT_ROOT/dist/plugins/specweave/lib/hooks/sync-living-docs.js" ]; then
|
|
208
212
|
# Development: Use project's compiled files (has node_modules)
|
|
209
213
|
SYNC_SCRIPT="$PROJECT_ROOT/dist/plugins/specweave/lib/hooks/sync-living-docs.js"
|
|
210
214
|
echo "[$(date)] Using local dist: $SYNC_SCRIPT" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
@@ -243,7 +247,11 @@ if command -v node &> /dev/null; then
|
|
|
243
247
|
|
|
244
248
|
# Determine which AC update script to use (project local or global)
|
|
245
249
|
UPDATE_AC_SCRIPT=""
|
|
246
|
-
if [ -f "$PROJECT_ROOT/
|
|
250
|
+
if [ -f "$PROJECT_ROOT/plugins/specweave/lib/hooks/update-ac-status.js" ]; then
|
|
251
|
+
# Development: Use in-place compiled hooks (esbuild, not tsc)
|
|
252
|
+
UPDATE_AC_SCRIPT="$PROJECT_ROOT/plugins/specweave/lib/hooks/update-ac-status.js"
|
|
253
|
+
echo "[$(date)] Using in-place compiled hook: $UPDATE_AC_SCRIPT" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
254
|
+
elif [ -f "$PROJECT_ROOT/dist/plugins/specweave/lib/hooks/update-ac-status.js" ]; then
|
|
247
255
|
# Development: Use project's compiled files (has node_modules)
|
|
248
256
|
UPDATE_AC_SCRIPT="$PROJECT_ROOT/dist/plugins/specweave/lib/hooks/update-ac-status.js"
|
|
249
257
|
echo "[$(date)] Using local dist: $UPDATE_AC_SCRIPT" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
@@ -278,7 +286,11 @@ if command -v node &> /dev/null; then
|
|
|
278
286
|
|
|
279
287
|
# Determine which translation script to use (project local or global)
|
|
280
288
|
TRANSLATE_SCRIPT=""
|
|
281
|
-
if [ -f "$PROJECT_ROOT/
|
|
289
|
+
if [ -f "$PROJECT_ROOT/plugins/specweave/lib/hooks/translate-living-docs.js" ]; then
|
|
290
|
+
# Development: Use in-place compiled hooks (esbuild, not tsc)
|
|
291
|
+
TRANSLATE_SCRIPT="$PROJECT_ROOT/plugins/specweave/lib/hooks/translate-living-docs.js"
|
|
292
|
+
echo "[$(date)] Using in-place compiled hook: $TRANSLATE_SCRIPT" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
293
|
+
elif [ -f "$PROJECT_ROOT/dist/plugins/specweave/lib/hooks/translate-living-docs.js" ]; then
|
|
282
294
|
# Development: Use project's compiled files (has node_modules)
|
|
283
295
|
TRANSLATE_SCRIPT="$PROJECT_ROOT/dist/plugins/specweave/lib/hooks/translate-living-docs.js"
|
|
284
296
|
echo "[$(date)] Using local dist: $TRANSLATE_SCRIPT" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
@@ -337,7 +349,11 @@ if command -v node &> /dev/null; then
|
|
|
337
349
|
if [ -n "$LATEST_TASK" ]; then
|
|
338
350
|
# Determine which reflection script to use (project local or global)
|
|
339
351
|
REFLECTION_SCRIPT=""
|
|
340
|
-
if [ -f "$PROJECT_ROOT/
|
|
352
|
+
if [ -f "$PROJECT_ROOT/plugins/specweave/lib/hooks/prepare-reflection-context.js" ]; then
|
|
353
|
+
# Development: Use in-place compiled hooks (esbuild, not tsc)
|
|
354
|
+
REFLECTION_SCRIPT="$PROJECT_ROOT/plugins/specweave/lib/hooks/prepare-reflection-context.js"
|
|
355
|
+
echo "[$(date)] Using in-place compiled hook: $REFLECTION_SCRIPT" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
356
|
+
elif [ -f "$PROJECT_ROOT/dist/plugins/specweave/lib/hooks/prepare-reflection-context.js" ]; then
|
|
341
357
|
# Development: Use project's compiled files (has node_modules)
|
|
342
358
|
REFLECTION_SCRIPT="$PROJECT_ROOT/dist/plugins/specweave/lib/hooks/prepare-reflection-context.js"
|
|
343
359
|
echo "[$(date)] Using local dist: $REFLECTION_SCRIPT" >> "$DEBUG_LOG" 2>/dev/null || true
|
|
@@ -50,42 +50,65 @@ async function intelligentSyncLivingDocs(incrementId, config) {
|
|
|
50
50
|
}
|
|
51
51
|
async function hierarchicalDistribution(incrementId) {
|
|
52
52
|
try {
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
// ============================================================================
|
|
54
|
+
// LONG-TERM FIX (2025-11-19): Use LivingDocsSync instead of old SpecDistributor
|
|
55
|
+
// ============================================================================
|
|
56
|
+
//
|
|
57
|
+
// Why this change:
|
|
58
|
+
// - Old SpecDistributor.distribute() method no longer exists (removed in v3.0.0)
|
|
59
|
+
// - LivingDocsSync is the official, stable API for syncing increments
|
|
60
|
+
// - Used by /specweave:sync-docs command - battle-tested and maintained
|
|
61
|
+
// - Future-proof: Won't break when internal APIs change
|
|
62
|
+
//
|
|
63
|
+
// Architecture:
|
|
64
|
+
// - LivingDocsSync delegates to FeatureIDManager, TaskProjectSpecificGenerator, etc.
|
|
65
|
+
// - Handles greenfield/brownfield detection automatically
|
|
66
|
+
// - Returns consistent SyncResult interface
|
|
67
|
+
//
|
|
68
|
+
// Previous broken code:
|
|
69
|
+
// const { SpecDistributor } = await import("../../../../dist/src/core/living-docs/index.js");
|
|
70
|
+
// const distributor = new SpecDistributor(projectRoot, { overwriteExisting: false, createBackups: true });
|
|
71
|
+
// const result = await distributor.distribute(incrementId); // ❌ Method doesn't exist
|
|
72
|
+
//
|
|
73
|
+
// ============================================================================
|
|
74
|
+
|
|
75
|
+
const { LivingDocsSync } = await import("../../../../dist/src/core/living-docs/living-docs-sync.js");
|
|
76
|
+
|
|
77
|
+
console.log(" \u{1F4CA} Syncing increment to living docs structure...");
|
|
55
78
|
const projectRoot = process.cwd();
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
79
|
+
|
|
80
|
+
// Create logger adapter for LivingDocsSync
|
|
81
|
+
const logger = {
|
|
82
|
+
log: (msg) => console.log(` ${msg}`),
|
|
83
|
+
error: (msg, err) => console.error(` ${msg}`, err || ''),
|
|
84
|
+
warn: (msg) => console.warn(` ${msg}`)
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
const sync = new LivingDocsSync(projectRoot, { logger });
|
|
88
|
+
const result = await sync.syncIncrement(incrementId, {
|
|
89
|
+
dryRun: false,
|
|
90
|
+
force: false
|
|
59
91
|
});
|
|
60
|
-
|
|
92
|
+
|
|
61
93
|
if (!result.success) {
|
|
62
|
-
console.error(` \u274C
|
|
94
|
+
console.error(` \u274C Sync failed with errors:`);
|
|
63
95
|
for (const error of result.errors) {
|
|
64
96
|
console.error(` - ${error}`);
|
|
65
97
|
}
|
|
66
98
|
return { success: false, changedFiles: [] };
|
|
67
99
|
}
|
|
68
|
-
|
|
69
|
-
console.log(`
|
|
70
|
-
console.log(`
|
|
71
|
-
console.log(` Files created: ${result.
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
if (result.warnings.length > 0) {
|
|
75
|
-
console.log(` \u26A0\uFE0F Warnings:`);
|
|
76
|
-
for (const warning of result.warnings) {
|
|
77
|
-
console.log(` - ${warning}`);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
console.log(" \u{1F4CA} Updating acceptance criteria status from completed tasks...");
|
|
81
|
-
await distributor.updateAcceptanceCriteriaStatus(incrementId);
|
|
82
|
-
const changedFiles = [result.epicPath, ...result.userStoryPaths];
|
|
100
|
+
|
|
101
|
+
console.log(` \u2705 Living docs sync complete:`);
|
|
102
|
+
console.log(` Feature ID: ${result.featureId}`);
|
|
103
|
+
console.log(` Files created/updated: ${result.filesCreated.length + result.filesUpdated.length}`);
|
|
104
|
+
|
|
105
|
+
const changedFiles = [...result.filesCreated, ...result.filesUpdated];
|
|
83
106
|
return {
|
|
84
107
|
success: true,
|
|
85
108
|
changedFiles
|
|
86
109
|
};
|
|
87
110
|
} catch (error) {
|
|
88
|
-
console.error(` \u274C
|
|
111
|
+
console.error(` \u274C Living docs sync failed: ${error}`);
|
|
89
112
|
console.error(error.stack);
|
|
90
113
|
console.error(" \u26A0\uFE0F Living docs sync skipped due to error");
|
|
91
114
|
console.error(" \u{1F4A1} Tip: Run /specweave:sync-docs manually to retry");
|
|
@@ -218,7 +241,7 @@ async function syncToGitHub(incrementId, changedDocs) {
|
|
|
218
241
|
collectLivingDocs,
|
|
219
242
|
updateIssueLivingDocs,
|
|
220
243
|
postArchitectureComment
|
|
221
|
-
} = await import("
|
|
244
|
+
} = await import("../../../../dist/plugins/specweave-github/lib/github-issue-updater.js");
|
|
222
245
|
const metadata = await loadIncrementMetadata(incrementId);
|
|
223
246
|
if (!metadata?.github?.issue) {
|
|
224
247
|
console.log("\u2139\uFE0F No GitHub issue linked, skipping GitHub sync");
|
|
@@ -264,7 +264,7 @@ STEP 3: Invoke PM Agent (🚨 MANDATORY - USE TASK TOOL)
|
|
|
264
264
|
YOU MUST USE THE TASK TOOL - DO NOT SKIP:
|
|
265
265
|
|
|
266
266
|
Task(
|
|
267
|
-
subagent_type: "pm",
|
|
267
|
+
subagent_type: "specweave:pm:pm",
|
|
268
268
|
description: "PM product strategy",
|
|
269
269
|
prompt: "Create product strategy for: [user feature description]
|
|
270
270
|
|
|
@@ -317,7 +317,7 @@ STEP 4: Invoke Architect Agent (🚨 MANDATORY - USE TASK TOOL)
|
|
|
317
317
|
YOU MUST USE THE TASK TOOL - DO NOT SKIP:
|
|
318
318
|
|
|
319
319
|
Task(
|
|
320
|
-
subagent_type: "architect",
|
|
320
|
+
subagent_type: "specweave:architect:architect",
|
|
321
321
|
description: "Architect technical design",
|
|
322
322
|
prompt: "Create technical architecture for: [user feature description]
|
|
323
323
|
|
|
@@ -5260,3 +5260,183 @@
|
|
|
5260
5260
|
[2025-11-19 04:34:57] 🎯 Post-Increment-Completion Hook Triggered
|
|
5261
5261
|
[2025-11-19 04:34:57] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5262
5262
|
[2025-11-19 04:34:57] Run: npm run build
|
|
5263
|
+
[2025-11-19 04:40:06] 🎯 Post-Increment-Completion Hook Triggered
|
|
5264
|
+
[2025-11-19 04:40:06] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5265
|
+
[2025-11-19 04:40:06] Run: npm run build
|
|
5266
|
+
[2025-11-19 04:40:06] 🎯 Post-Increment-Completion Hook Triggered
|
|
5267
|
+
[2025-11-19 04:40:06] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5268
|
+
[2025-11-19 04:40:06] Run: npm run build
|
|
5269
|
+
[2025-11-19 04:40:06] 🎯 Post-Increment-Completion Hook Triggered
|
|
5270
|
+
[2025-11-19 04:40:06] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5271
|
+
[2025-11-19 04:40:06] Run: npm run build
|
|
5272
|
+
[2025-11-19 04:40:06] 🎯 Post-Increment-Completion Hook Triggered
|
|
5273
|
+
[2025-11-19 04:40:06] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5274
|
+
[2025-11-19 04:40:06] Run: npm run build
|
|
5275
|
+
[2025-11-19 04:40:12] 🎯 Post-Increment-Completion Hook Triggered
|
|
5276
|
+
[2025-11-19 04:40:12] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5277
|
+
[2025-11-19 04:40:12] Run: npm run build
|
|
5278
|
+
[2025-11-19 04:40:18] 🎯 Post-Increment-Completion Hook Triggered
|
|
5279
|
+
[2025-11-19 04:40:18] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5280
|
+
[2025-11-19 04:40:18] Run: npm run build
|
|
5281
|
+
[2025-11-19 04:40:24] 🎯 Post-Increment-Completion Hook Triggered
|
|
5282
|
+
[2025-11-19 04:40:24] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5283
|
+
[2025-11-19 04:40:24] Run: npm run build
|
|
5284
|
+
[2025-11-19 04:40:31] 🎯 Post-Increment-Completion Hook Triggered
|
|
5285
|
+
[2025-11-19 04:40:31] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5286
|
+
[2025-11-19 04:40:31] Run: npm run build
|
|
5287
|
+
[2025-11-19 04:44:50] 🎯 Post-Increment-Completion Hook Triggered
|
|
5288
|
+
[2025-11-19 04:44:50] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5289
|
+
[2025-11-19 04:44:50] Run: npm run build
|
|
5290
|
+
[2025-11-19 04:44:57] 🎯 Post-Increment-Completion Hook Triggered
|
|
5291
|
+
[2025-11-19 04:44:57] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5292
|
+
[2025-11-19 04:44:57] Run: npm run build
|
|
5293
|
+
[2025-11-19 04:45:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
5294
|
+
[2025-11-19 04:45:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5295
|
+
[2025-11-19 04:45:03] Run: npm run build
|
|
5296
|
+
[2025-11-19 04:45:09] 🎯 Post-Increment-Completion Hook Triggered
|
|
5297
|
+
[2025-11-19 04:45:09] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5298
|
+
[2025-11-19 04:45:09] Run: npm run build
|
|
5299
|
+
[2025-11-19 04:45:15] 🎯 Post-Increment-Completion Hook Triggered
|
|
5300
|
+
[2025-11-19 04:45:15] 🎯 Post-Increment-Completion Hook Triggered
|
|
5301
|
+
[2025-11-19 04:45:15] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5302
|
+
[2025-11-19 04:45:15] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5303
|
+
[2025-11-19 04:45:15] Run: npm run build
|
|
5304
|
+
[2025-11-19 04:45:15] Run: npm run build
|
|
5305
|
+
[2025-11-19 04:45:22] 🎯 Post-Increment-Completion Hook Triggered
|
|
5306
|
+
[2025-11-19 04:45:22] 🎯 Post-Increment-Completion Hook Triggered
|
|
5307
|
+
[2025-11-19 04:45:22] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5308
|
+
[2025-11-19 04:45:22] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5309
|
+
[2025-11-19 04:45:22] Run: npm run build
|
|
5310
|
+
[2025-11-19 04:45:22] Run: npm run build
|
|
5311
|
+
[2025-11-19 04:45:28] 🎯 Post-Increment-Completion Hook Triggered
|
|
5312
|
+
[2025-11-19 04:45:28] 🎯 Post-Increment-Completion Hook Triggered
|
|
5313
|
+
[2025-11-19 04:45:28] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5314
|
+
[2025-11-19 04:45:28] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5315
|
+
[2025-11-19 04:45:28] Run: npm run build
|
|
5316
|
+
[2025-11-19 04:45:28] Run: npm run build
|
|
5317
|
+
[2025-11-19 04:45:35] 🎯 Post-Increment-Completion Hook Triggered
|
|
5318
|
+
[2025-11-19 04:45:35] 🎯 Post-Increment-Completion Hook Triggered
|
|
5319
|
+
[2025-11-19 04:45:35] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5320
|
+
[2025-11-19 04:45:35] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5321
|
+
[2025-11-19 04:45:35] Run: npm run build
|
|
5322
|
+
[2025-11-19 04:45:35] Run: npm run build
|
|
5323
|
+
[2025-11-19 04:50:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
5324
|
+
[2025-11-19 04:50:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5325
|
+
[2025-11-19 04:50:00] Run: npm run build
|
|
5326
|
+
[2025-11-19 04:50:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
5327
|
+
[2025-11-19 04:50:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5328
|
+
[2025-11-19 04:50:00] Run: npm run build
|
|
5329
|
+
[2025-11-19 04:50:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
5330
|
+
[2025-11-19 04:50:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5331
|
+
[2025-11-19 04:50:00] Run: npm run build
|
|
5332
|
+
[2025-11-19 04:50:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
5333
|
+
[2025-11-19 04:50:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5334
|
+
[2025-11-19 04:50:00] Run: npm run build
|
|
5335
|
+
[2025-11-19 04:50:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
5336
|
+
[2025-11-19 04:50:00] 🎯 Post-Increment-Completion Hook Triggered
|
|
5337
|
+
[2025-11-19 04:50:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5338
|
+
[2025-11-19 04:50:00] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5339
|
+
[2025-11-19 04:50:00] Run: npm run build
|
|
5340
|
+
[2025-11-19 04:50:00] Run: npm run build
|
|
5341
|
+
[2025-11-19 04:50:01] 🎯 Post-Increment-Completion Hook Triggered
|
|
5342
|
+
[2025-11-19 04:50:01] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5343
|
+
[2025-11-19 04:50:01] Run: npm run build
|
|
5344
|
+
[2025-11-19 04:50:01] 🎯 Post-Increment-Completion Hook Triggered
|
|
5345
|
+
[2025-11-19 04:50:01] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5346
|
+
[2025-11-19 04:50:01] Run: npm run build
|
|
5347
|
+
[2025-11-19 04:50:05] 🎯 Post-Increment-Completion Hook Triggered
|
|
5348
|
+
[2025-11-19 04:50:05] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5349
|
+
[2025-11-19 04:50:05] Run: npm run build
|
|
5350
|
+
[2025-11-19 04:50:10] 🎯 Post-Increment-Completion Hook Triggered
|
|
5351
|
+
[2025-11-19 04:50:10] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5352
|
+
[2025-11-19 04:50:10] Run: npm run build
|
|
5353
|
+
[2025-11-19 04:50:16] 🎯 Post-Increment-Completion Hook Triggered
|
|
5354
|
+
[2025-11-19 04:50:16] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5355
|
+
[2025-11-19 04:50:16] Run: npm run build
|
|
5356
|
+
[2025-11-19 04:50:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
5357
|
+
[2025-11-19 04:50:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5358
|
+
[2025-11-19 04:50:21] Run: npm run build
|
|
5359
|
+
[2025-11-19 05:04:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
5360
|
+
[2025-11-19 05:04:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5361
|
+
[2025-11-19 05:04:21] Run: npm run build
|
|
5362
|
+
[2025-11-19 05:04:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
5363
|
+
[2025-11-19 05:04:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5364
|
+
[2025-11-19 05:04:26] Run: npm run build
|
|
5365
|
+
[2025-11-19 05:04:32] 🎯 Post-Increment-Completion Hook Triggered
|
|
5366
|
+
[2025-11-19 05:04:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5367
|
+
[2025-11-19 05:04:32] Run: npm run build
|
|
5368
|
+
[2025-11-19 05:04:37] 🎯 Post-Increment-Completion Hook Triggered
|
|
5369
|
+
[2025-11-19 05:04:37] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5370
|
+
[2025-11-19 05:04:37] Run: npm run build
|
|
5371
|
+
[2025-11-19 05:06:15] 🎯 Post-Increment-Completion Hook Triggered
|
|
5372
|
+
[2025-11-19 05:06:15] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5373
|
+
[2025-11-19 05:06:15] Run: npm run build
|
|
5374
|
+
[2025-11-19 05:06:21] 🎯 Post-Increment-Completion Hook Triggered
|
|
5375
|
+
[2025-11-19 05:06:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5376
|
+
[2025-11-19 05:06:21] Run: npm run build
|
|
5377
|
+
[2025-11-19 05:06:26] 🎯 Post-Increment-Completion Hook Triggered
|
|
5378
|
+
[2025-11-19 05:06:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5379
|
+
[2025-11-19 05:06:26] Run: npm run build
|
|
5380
|
+
[2025-11-19 05:06:32] 🎯 Post-Increment-Completion Hook Triggered
|
|
5381
|
+
[2025-11-19 05:06:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5382
|
+
[2025-11-19 05:06:32] Run: npm run build
|
|
5383
|
+
[2025-11-19 05:07:02] 🎯 Post-Increment-Completion Hook Triggered
|
|
5384
|
+
[2025-11-19 05:07:02] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5385
|
+
[2025-11-19 05:07:02] Run: npm run build
|
|
5386
|
+
[2025-11-19 05:07:07] 🎯 Post-Increment-Completion Hook Triggered
|
|
5387
|
+
[2025-11-19 05:07:07] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5388
|
+
[2025-11-19 05:07:07] Run: npm run build
|
|
5389
|
+
[2025-11-19 05:07:13] 🎯 Post-Increment-Completion Hook Triggered
|
|
5390
|
+
[2025-11-19 05:07:13] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5391
|
+
[2025-11-19 05:07:13] Run: npm run build
|
|
5392
|
+
[2025-11-19 05:07:18] 🎯 Post-Increment-Completion Hook Triggered
|
|
5393
|
+
[2025-11-19 05:07:18] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5394
|
+
[2025-11-19 05:07:18] Run: npm run build
|
|
5395
|
+
[2025-11-19 05:07:37] 🎯 Post-Increment-Completion Hook Triggered
|
|
5396
|
+
[2025-11-19 05:07:37] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5397
|
+
[2025-11-19 05:07:37] Run: npm run build
|
|
5398
|
+
[2025-11-19 05:07:43] 🎯 Post-Increment-Completion Hook Triggered
|
|
5399
|
+
[2025-11-19 05:07:43] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5400
|
+
[2025-11-19 05:07:43] Run: npm run build
|
|
5401
|
+
[2025-11-19 05:07:48] 🎯 Post-Increment-Completion Hook Triggered
|
|
5402
|
+
[2025-11-19 05:07:48] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5403
|
+
[2025-11-19 05:07:48] Run: npm run build
|
|
5404
|
+
[2025-11-19 05:07:54] 🎯 Post-Increment-Completion Hook Triggered
|
|
5405
|
+
[2025-11-19 05:07:54] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5406
|
+
[2025-11-19 05:07:54] Run: npm run build
|
|
5407
|
+
[2025-11-19 05:15:57] 🎯 Post-Increment-Completion Hook Triggered
|
|
5408
|
+
[2025-11-19 05:15:57] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5409
|
+
[2025-11-19 05:15:57] Run: npm run build
|
|
5410
|
+
[2025-11-19 05:16:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
5411
|
+
[2025-11-19 05:16:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5412
|
+
[2025-11-19 05:16:03] Run: npm run build
|
|
5413
|
+
[2025-11-19 05:16:08] 🎯 Post-Increment-Completion Hook Triggered
|
|
5414
|
+
[2025-11-19 05:16:08] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5415
|
+
[2025-11-19 05:16:08] Run: npm run build
|
|
5416
|
+
[2025-11-19 05:16:14] 🎯 Post-Increment-Completion Hook Triggered
|
|
5417
|
+
[2025-11-19 05:16:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5418
|
+
[2025-11-19 05:16:14] Run: npm run build
|
|
5419
|
+
[2025-11-19 05:17:58] 🎯 Post-Increment-Completion Hook Triggered
|
|
5420
|
+
[2025-11-19 05:17:58] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5421
|
+
[2025-11-19 05:17:58] Run: npm run build
|
|
5422
|
+
[2025-11-19 05:17:59] 🎯 Post-Increment-Completion Hook Triggered
|
|
5423
|
+
[2025-11-19 05:17:59] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5424
|
+
[2025-11-19 05:17:59] Run: npm run build
|
|
5425
|
+
[2025-11-19 05:17:59] 🎯 Post-Increment-Completion Hook Triggered
|
|
5426
|
+
[2025-11-19 05:17:59] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5427
|
+
[2025-11-19 05:17:59] Run: npm run build
|
|
5428
|
+
[2025-11-19 05:17:59] 🎯 Post-Increment-Completion Hook Triggered
|
|
5429
|
+
[2025-11-19 05:17:59] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5430
|
+
[2025-11-19 05:17:59] Run: npm run build
|
|
5431
|
+
[2025-11-19 05:18:04] 🎯 Post-Increment-Completion Hook Triggered
|
|
5432
|
+
[2025-11-19 05:18:04] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5433
|
+
[2025-11-19 05:18:04] Run: npm run build
|
|
5434
|
+
[2025-11-19 05:18:11] 🎯 Post-Increment-Completion Hook Triggered
|
|
5435
|
+
[2025-11-19 05:18:11] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5436
|
+
[2025-11-19 05:18:11] Run: npm run build
|
|
5437
|
+
[2025-11-19 05:18:17] 🎯 Post-Increment-Completion Hook Triggered
|
|
5438
|
+
[2025-11-19 05:18:17] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5439
|
+
[2025-11-19 05:18:17] Run: npm run build
|
|
5440
|
+
[2025-11-19 05:18:23] 🎯 Post-Increment-Completion Hook Triggered
|
|
5441
|
+
[2025-11-19 05:18:23] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
5442
|
+
[2025-11-19 05:18:23] Run: npm run build
|