specweave 0.24.1 → 0.24.6
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 +42 -0
- package/dist/src/cli/commands/init.d.ts.map +1 -1
- package/dist/src/cli/commands/init.js +80 -41
- package/dist/src/cli/commands/init.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/types.d.ts +1 -1
- package/dist/src/cli/helpers/issue-tracker/types.d.ts.map +1 -1
- package/dist/src/config/types.d.ts +24 -24
- package/dist/src/core/config/types.d.ts +25 -0
- package/dist/src/core/config/types.d.ts.map +1 -1
- package/dist/src/core/config/types.js +6 -0
- package/dist/src/core/config/types.js.map +1 -1
- package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts +33 -0
- package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts.map +1 -0
- package/dist/src/core/repo-structure/repo-bulk-discovery.js +275 -0
- package/dist/src/core/repo-structure/repo-bulk-discovery.js.map +1 -0
- package/dist/src/core/repo-structure/repo-structure-manager.d.ts +9 -0
- package/dist/src/core/repo-structure/repo-structure-manager.d.ts.map +1 -1
- package/dist/src/core/repo-structure/repo-structure-manager.js +185 -50
- package/dist/src/core/repo-structure/repo-structure-manager.js.map +1 -1
- package/dist/src/init/architecture/types.d.ts +6 -6
- package/dist/src/utils/plugin-validator.d.ts.map +1 -1
- package/dist/src/utils/plugin-validator.js +15 -14
- package/dist/src/utils/plugin-validator.js.map +1 -1
- package/package.json +4 -4
- package/plugins/specweave/.claude-plugin/plugin.json +4 -4
- package/plugins/specweave/agents/pm/AGENT.md +2 -0
- package/plugins/specweave/commands/specweave-do.md +0 -47
- package/plugins/specweave/commands/specweave-increment.md +0 -82
- package/plugins/specweave/commands/specweave-next.md +0 -47
- package/plugins/specweave/hooks/post-task-completion.sh +67 -6
- package/plugins/specweave/hooks/pre-edit-spec.sh +11 -0
- package/plugins/specweave/hooks/pre-task-completion.sh +69 -2
- package/plugins/specweave/hooks/pre-write-spec.sh +11 -0
- package/plugins/specweave/skills/increment-planner/SKILL.md +124 -4
- package/plugins/specweave-github/hooks/.specweave/logs/hooks-debug.log +132 -0
|
@@ -28,13 +28,14 @@ This skill creates comprehensive, well-structured implementation plans for SpecW
|
|
|
28
28
|
The increment-planner skill automates the creation of implementation plans for ANY type of work:
|
|
29
29
|
- Auto-numbered increment directories (`0001-9999` 4-digit format)
|
|
30
30
|
- Duplicate detection (prevents creating 0002 when 0002 already exists)
|
|
31
|
-
- Complete increment artifacts (spec.md, plan.md, tasks.md with embedded tests)
|
|
31
|
+
- Complete increment artifacts (spec.md, plan.md, tasks.md with embedded tests, **metadata.json**)
|
|
32
32
|
- Proper context manifests for selective loading
|
|
33
33
|
- Constitutional compliance
|
|
34
34
|
- Separation of WHAT/WHY (spec) from HOW (plan) from STEPS (tasks with test plans)
|
|
35
35
|
- **v0.7.0+**: Test-Aware Planning (bidirectional AC↔Task↔Test linking)
|
|
36
36
|
- **v0.8.0+**: Multi-Project Support (specs organized by project/team)
|
|
37
37
|
- **v0.18.0+**: Bidirectional Task↔User Story Linking (automatic during `/specweave:done`)
|
|
38
|
+
- **v0.24.5+**: **MANDATORY metadata.json creation** (enables status tracking, WIP limits, external tool sync)
|
|
38
39
|
|
|
39
40
|
## Bidirectional Linking (v0.18.0+)
|
|
40
41
|
|
|
@@ -593,11 +594,18 @@ Generate the complete feature directory with all required files:
|
|
|
593
594
|
├── spec.md # Feature specification (WHAT and WHY)
|
|
594
595
|
├── plan.md # Implementation plan (HOW)
|
|
595
596
|
├── tasks.md # Executable tasks (STEPS) with embedded test plans (v0.7.0+)
|
|
597
|
+
├── metadata.json # Increment metadata (MANDATORY - v0.24.5+)
|
|
596
598
|
└── context-manifest.yaml # Context loading specification
|
|
597
599
|
```
|
|
598
600
|
|
|
599
601
|
**v0.7.0 Change**: tests.md eliminated - tests are now embedded in each task in tasks.md
|
|
600
602
|
|
|
603
|
+
**⚠️ CRITICAL (v0.24.5+)**: `metadata.json` is **MANDATORY** regardless of invocation method (natural language prompt or `/specweave:increment`). Without it:
|
|
604
|
+
- ❌ Status line shows nothing (no active increment tracking)
|
|
605
|
+
- ❌ WIP limits don't work (can't count active increments)
|
|
606
|
+
- ❌ External sync breaks (no GitHub/JIRA/ADO links)
|
|
607
|
+
- ❌ All increment management commands fail (`/status`, `/pause`, `/resume`, `/done`)
|
|
608
|
+
|
|
601
609
|
### Step 5: Generate spec.md
|
|
602
610
|
|
|
603
611
|
**Purpose**: Define WHAT this feature does and WHY it's needed.
|
|
@@ -1060,7 +1068,89 @@ tags:
|
|
|
1060
1068
|
- Token budget to prevent bloat
|
|
1061
1069
|
- Related features for dependency tracking
|
|
1062
1070
|
|
|
1063
|
-
### Step
|
|
1071
|
+
### Step 11: Generate metadata.json (⚠️ MANDATORY - v0.24.5+)
|
|
1072
|
+
|
|
1073
|
+
**Purpose**: Create increment metadata for status tracking, WIP limits, and external tool sync.
|
|
1074
|
+
|
|
1075
|
+
**CRITICAL**: This step is **NON-NEGOTIABLE** regardless of how the increment was created (natural language prompt, `/specweave:increment`, or any other method).
|
|
1076
|
+
|
|
1077
|
+
**Execution Workflow (MUST USE TOOLS)**:
|
|
1078
|
+
|
|
1079
|
+
**STEP 1: Check if metadata.json exists**
|
|
1080
|
+
```
|
|
1081
|
+
Use Read tool:
|
|
1082
|
+
file_path: .specweave/increments/{incrementId}/metadata.json
|
|
1083
|
+
```
|
|
1084
|
+
|
|
1085
|
+
**STEP 2: If missing (file not found), create it immediately**
|
|
1086
|
+
```
|
|
1087
|
+
Use Write tool:
|
|
1088
|
+
file_path: .specweave/increments/{incrementId}/metadata.json
|
|
1089
|
+
content: {
|
|
1090
|
+
"id": "{incrementId}",
|
|
1091
|
+
"status": "planned",
|
|
1092
|
+
"type": "{type}",
|
|
1093
|
+
"priority": "{priority}",
|
|
1094
|
+
"created": "{ISO-8601-timestamp}",
|
|
1095
|
+
"lastActivity": "{ISO-8601-timestamp}",
|
|
1096
|
+
"testMode": "TDD",
|
|
1097
|
+
"coverageTarget": 95,
|
|
1098
|
+
"feature_id": null,
|
|
1099
|
+
"epic_id": null,
|
|
1100
|
+
"externalLinks": {}
|
|
1101
|
+
}
|
|
1102
|
+
```
|
|
1103
|
+
|
|
1104
|
+
**Field Extraction (from spec.md frontmatter)**:
|
|
1105
|
+
- `id`: Increment directory name (e.g., "0001-user-authentication")
|
|
1106
|
+
- `type`: Extract from `type:` in spec.md frontmatter OR default to "feature"
|
|
1107
|
+
- `priority`: Extract from `priority:` in spec.md frontmatter OR default to "P1"
|
|
1108
|
+
- `created`/`lastActivity`: Current timestamp in ISO-8601 format (e.g., "2025-11-22T19:30:00Z")
|
|
1109
|
+
- `testMode`: Extract from `test_mode:` in spec.md frontmatter OR default to "TDD"
|
|
1110
|
+
- `coverageTarget`: Extract from `coverage_target:` in spec.md frontmatter OR default to 95
|
|
1111
|
+
|
|
1112
|
+
**STEP 3: Validate creation succeeded**
|
|
1113
|
+
```
|
|
1114
|
+
Use Read tool again:
|
|
1115
|
+
file_path: .specweave/increments/{incrementId}/metadata.json
|
|
1116
|
+
```
|
|
1117
|
+
|
|
1118
|
+
If Read succeeds, output:
|
|
1119
|
+
```
|
|
1120
|
+
✅ metadata.json created successfully
|
|
1121
|
+
Status: planned
|
|
1122
|
+
Type: {type}
|
|
1123
|
+
Ready for /specweave:do
|
|
1124
|
+
```
|
|
1125
|
+
|
|
1126
|
+
**Why This Cannot Be Skipped**:
|
|
1127
|
+
Without metadata.json, the increment is **effectively broken**:
|
|
1128
|
+
- Status line won't show it as active
|
|
1129
|
+
- WIP limit enforcement fails (infinite increments possible!)
|
|
1130
|
+
- All increment commands fail (`/status`, `/pause`, `/resume`, `/done`)
|
|
1131
|
+
- External tool sync (GitHub/JIRA/ADO) completely broken
|
|
1132
|
+
- Hooks can't detect the increment
|
|
1133
|
+
|
|
1134
|
+
**Example metadata.json**:
|
|
1135
|
+
```json
|
|
1136
|
+
{
|
|
1137
|
+
"id": "0001-user-authentication",
|
|
1138
|
+
"status": "planned",
|
|
1139
|
+
"type": "feature",
|
|
1140
|
+
"priority": "P1",
|
|
1141
|
+
"created": "2025-11-22T19:30:00Z",
|
|
1142
|
+
"lastActivity": "2025-11-22T19:30:00Z",
|
|
1143
|
+
"testMode": "TDD",
|
|
1144
|
+
"coverageTarget": 95,
|
|
1145
|
+
"feature_id": null,
|
|
1146
|
+
"epic_id": null,
|
|
1147
|
+
"externalLinks": {}
|
|
1148
|
+
}
|
|
1149
|
+
```
|
|
1150
|
+
|
|
1151
|
+
**⚠️ ENFORCEMENT**: If you complete increment creation without creating metadata.json, you have **failed the task**. This is not optional.
|
|
1152
|
+
|
|
1153
|
+
### Step 12: Validate and Finalize
|
|
1064
1154
|
|
|
1065
1155
|
Before completing:
|
|
1066
1156
|
|
|
@@ -1074,6 +1164,7 @@ Before completing:
|
|
|
1074
1164
|
- plan.md has sufficient technical detail + test strategy
|
|
1075
1165
|
- tasks.md has exact file paths + embedded test plans (BDD format)
|
|
1076
1166
|
- tasks.md covers all P1 AC-IDs with test cases
|
|
1167
|
+
- **metadata.json exists and is valid** (v0.24.5+ MANDATORY)
|
|
1077
1168
|
- context-manifest.yaml is precise
|
|
1078
1169
|
|
|
1079
1170
|
3. **Update Features Index**:
|
|
@@ -1260,11 +1351,39 @@ max_context_tokens: 8000
|
|
|
1260
1351
|
priority: high
|
|
1261
1352
|
```
|
|
1262
1353
|
|
|
1263
|
-
**Step 10**:
|
|
1354
|
+
**Step 10**: Generate metadata.json (⚠️ MANDATORY v0.24.5+)
|
|
1355
|
+
```typescript
|
|
1356
|
+
// Use Read tool to check if exists
|
|
1357
|
+
Read({ file_path: ".specweave/increments/0003-stripe-payment-integration/metadata.json" });
|
|
1358
|
+
|
|
1359
|
+
// If missing, use Write tool to create
|
|
1360
|
+
Write({
|
|
1361
|
+
file_path: ".specweave/increments/0003-stripe-payment-integration/metadata.json",
|
|
1362
|
+
content: JSON.stringify({
|
|
1363
|
+
"id": "0003-stripe-payment-integration",
|
|
1364
|
+
"status": "planned",
|
|
1365
|
+
"type": "feature",
|
|
1366
|
+
"priority": "P1",
|
|
1367
|
+
"created": "2025-11-22T19:30:00Z",
|
|
1368
|
+
"lastActivity": "2025-11-22T19:30:00Z",
|
|
1369
|
+
"testMode": "TDD",
|
|
1370
|
+
"coverageTarget": 95,
|
|
1371
|
+
"feature_id": null,
|
|
1372
|
+
"epic_id": null,
|
|
1373
|
+
"externalLinks": {}
|
|
1374
|
+
}, null, 2)
|
|
1375
|
+
});
|
|
1376
|
+
|
|
1377
|
+
// Validate creation succeeded
|
|
1378
|
+
Read({ file_path: ".specweave/increments/0003-stripe-payment-integration/metadata.json" });
|
|
1379
|
+
```
|
|
1380
|
+
|
|
1381
|
+
**Step 11**: Validate
|
|
1264
1382
|
- ✅ spec.md is technology-agnostic with AC-IDs
|
|
1265
1383
|
- ✅ plan.md documents Stripe SDK choice + test strategy
|
|
1266
1384
|
- ✅ tasks.md has embedded test plans (BDD format)
|
|
1267
1385
|
- ✅ tasks.md covers all P1 AC-IDs with tests
|
|
1386
|
+
- ✅ **metadata.json exists and is valid** (v0.24.5+ MANDATORY)
|
|
1268
1387
|
- ✅ Constitutional compliance verified
|
|
1269
1388
|
|
|
1270
1389
|
**Output**:
|
|
@@ -1276,12 +1395,13 @@ Files created:
|
|
|
1276
1395
|
- spec.md (12 user stories, 34 AC-IDs)
|
|
1277
1396
|
- plan.md (5 phases, architecture diagrams, test strategy)
|
|
1278
1397
|
- tasks.md (23 tasks with embedded tests, 85% coverage target)
|
|
1398
|
+
- metadata.json ✅ (status: planned, type: feature)
|
|
1279
1399
|
- context-manifest.yaml
|
|
1280
1400
|
|
|
1281
1401
|
Next steps:
|
|
1282
1402
|
1. Review spec.md - verify user stories and acceptance criteria
|
|
1283
1403
|
2. Approve plan.md - validate technical approach
|
|
1284
|
-
3. Start implementation: specweave
|
|
1404
|
+
3. Start implementation: /specweave:do 0003
|
|
1285
1405
|
```
|
|
1286
1406
|
|
|
1287
1407
|
## Helper Scripts
|
|
@@ -226,3 +226,135 @@
|
|
|
226
226
|
[Sat Nov 22 17:55:39 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
227
227
|
[Sat Nov 22 17:56:38 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
228
228
|
[Sat Nov 22 17:56:38 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
229
|
+
[Sat Nov 22 18:03:49 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
230
|
+
[Sat Nov 22 18:03:49 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
231
|
+
[Sat Nov 22 18:04:56 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
232
|
+
[Sat Nov 22 18:04:56 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
233
|
+
[Sat Nov 22 18:04:56 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
234
|
+
[Sat Nov 22 18:04:56 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
235
|
+
[Sat Nov 22 18:05:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
236
|
+
[Sat Nov 22 18:05:43 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
237
|
+
[Sat Nov 22 18:06:24 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
238
|
+
[Sat Nov 22 18:06:24 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
239
|
+
[Sat Nov 22 18:07:46 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
240
|
+
[Sat Nov 22 18:07:46 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
241
|
+
[Sat Nov 22 18:11:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
242
|
+
[Sat Nov 22 18:11:26 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
243
|
+
[Sat Nov 22 18:12:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
244
|
+
[Sat Nov 22 18:12:13 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
245
|
+
[Sat Nov 22 18:12:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
246
|
+
[Sat Nov 22 18:12:35 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
247
|
+
[Sat Nov 22 18:13:12 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
248
|
+
[Sat Nov 22 18:13:12 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
249
|
+
[Sat Nov 22 18:13:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
250
|
+
[Sat Nov 22 18:13:28 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
251
|
+
[Sat Nov 22 18:13:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
252
|
+
[Sat Nov 22 18:13:47 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
253
|
+
[Sat Nov 22 18:14:08 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
254
|
+
[Sat Nov 22 18:14:08 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
255
|
+
[Sat Nov 22 18:14:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
256
|
+
[Sat Nov 22 18:14:28 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
257
|
+
[Sat Nov 22 18:14:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
258
|
+
[Sat Nov 22 18:14:52 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
259
|
+
[Sat Nov 22 18:15:25 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
260
|
+
[Sat Nov 22 18:15:25 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
261
|
+
[Sat Nov 22 18:15:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
262
|
+
[Sat Nov 22 18:15:52 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
263
|
+
[Sat Nov 22 18:18:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
264
|
+
[Sat Nov 22 18:18:19 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
265
|
+
[Sat Nov 22 18:18:30 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
266
|
+
[Sat Nov 22 18:18:30 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
267
|
+
[Sat Nov 22 18:18:40 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
268
|
+
[Sat Nov 22 18:18:40 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
269
|
+
[Sat Nov 22 18:18:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
270
|
+
[Sat Nov 22 18:18:52 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
271
|
+
[Sat Nov 22 18:19:08 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
272
|
+
[Sat Nov 22 18:19:08 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
273
|
+
[Sat Nov 22 18:19:11 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
274
|
+
[Sat Nov 22 18:19:11 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
275
|
+
[Sat Nov 22 18:19:27 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
276
|
+
[Sat Nov 22 18:19:27 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
277
|
+
[Sat Nov 22 18:19:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
278
|
+
[Sat Nov 22 18:19:52 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
279
|
+
[Sat Nov 22 18:19:56 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
280
|
+
[Sat Nov 22 18:19:56 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
281
|
+
[Sat Nov 22 18:20:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
282
|
+
[Sat Nov 22 18:20:13 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
283
|
+
[Sat Nov 22 18:20:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
284
|
+
[Sat Nov 22 18:20:13 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
285
|
+
[Sat Nov 22 18:20:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
286
|
+
[Sat Nov 22 18:20:13 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
287
|
+
[Sat Nov 22 18:20:39 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
288
|
+
[Sat Nov 22 18:20:39 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
289
|
+
[Sat Nov 22 18:20:59 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
290
|
+
[Sat Nov 22 18:20:59 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
291
|
+
[Sat Nov 22 18:21:30 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
292
|
+
[Sat Nov 22 18:21:30 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
293
|
+
[Sat Nov 22 18:21:59 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
294
|
+
[Sat Nov 22 18:21:59 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
295
|
+
[Sat Nov 22 18:22:10 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
296
|
+
[Sat Nov 22 18:22:10 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
297
|
+
[Sat Nov 22 18:22:27 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
298
|
+
[Sat Nov 22 18:22:27 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
299
|
+
[Sat Nov 22 18:22:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
300
|
+
[Sat Nov 22 18:22:43 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
301
|
+
[Sat Nov 22 18:22:46 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
302
|
+
[Sat Nov 22 18:22:46 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
303
|
+
[Sat Nov 22 18:23:12 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
304
|
+
[Sat Nov 22 18:23:12 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
305
|
+
[Sat Nov 22 18:23:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
306
|
+
[Sat Nov 22 18:23:28 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
307
|
+
[Sat Nov 22 18:24:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
308
|
+
[Sat Nov 22 18:24:09 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
309
|
+
[Sat Nov 22 18:34:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
310
|
+
[Sat Nov 22 18:34:35 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
311
|
+
[Sat Nov 22 18:35:23 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
312
|
+
[Sat Nov 22 18:35:23 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
313
|
+
[Sat Nov 22 18:38:02 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
314
|
+
[Sat Nov 22 18:38:02 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
315
|
+
[Sat Nov 22 18:38:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
316
|
+
[Sat Nov 22 18:38:28 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
317
|
+
[Sat Nov 22 18:38:49 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
318
|
+
[Sat Nov 22 18:38:49 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
319
|
+
[Sat Nov 22 18:39:05 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
320
|
+
[Sat Nov 22 18:39:05 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
321
|
+
[Sat Nov 22 18:39:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
322
|
+
[Sat Nov 22 18:39:26 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
323
|
+
[Sat Nov 22 18:39:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
324
|
+
[Sat Nov 22 18:39:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
325
|
+
[Sat Nov 22 18:40:38 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
326
|
+
[Sat Nov 22 18:40:38 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
327
|
+
[Sat Nov 22 18:41:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
328
|
+
[Sat Nov 22 18:41:15 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
329
|
+
[Sat Nov 22 18:41:57 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
330
|
+
[Sat Nov 22 18:41:57 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
331
|
+
[Sat Nov 22 18:44:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
332
|
+
[Sat Nov 22 18:44:15 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
333
|
+
[Sat Nov 22 18:44:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
334
|
+
[Sat Nov 22 18:44:15 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
335
|
+
[Sat Nov 22 18:45:56 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
336
|
+
[Sat Nov 22 18:45:56 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
337
|
+
[Sat Nov 22 18:49:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
338
|
+
[Sat Nov 22 18:49:26 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
339
|
+
[Sat Nov 22 18:49:51 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
340
|
+
[Sat Nov 22 18:49:51 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
341
|
+
[Sat Nov 22 18:49:51 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
342
|
+
[Sat Nov 22 18:49:51 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
343
|
+
[Sat Nov 22 18:50:10 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
344
|
+
[Sat Nov 22 18:50:10 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
345
|
+
[Sat Nov 22 18:50:30 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
346
|
+
[Sat Nov 22 18:50:30 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
347
|
+
[Sat Nov 22 18:51:48 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
348
|
+
[Sat Nov 22 18:51:48 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
349
|
+
[Sat Nov 22 18:52:22 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
350
|
+
[Sat Nov 22 18:52:22 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
351
|
+
[Sat Nov 22 18:52:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
352
|
+
[Sat Nov 22 18:52:42 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
353
|
+
[Sat Nov 22 18:58:30 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
354
|
+
[Sat Nov 22 18:58:30 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
355
|
+
[Sat Nov 22 18:58:46 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
356
|
+
[Sat Nov 22 18:58:46 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
357
|
+
[Sat Nov 22 18:58:46 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
358
|
+
[Sat Nov 22 18:58:46 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
359
|
+
[Sat Nov 22 18:59:53 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
360
|
+
[Sat Nov 22 18:59:53 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|