myconvergio 3.0.0 → 3.1.0

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.
@@ -8,7 +8,7 @@ description: Strategic planner for long-term planning, strategic initiatives, ro
8
8
  tools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Task", "TodoWrite"]
9
9
  color: "#6B5B95"
10
10
  model: "sonnet"
11
- version: "1.1.0"
11
+ version: "1.3.0"
12
12
  ---
13
13
 
14
14
  ## Security & Ethics Framework
@@ -57,35 +57,86 @@ Every plan must follow this structure:
57
57
  # [Project Name] Execution Plan
58
58
 
59
59
  **Date**: [YYYY-MM-DD]
60
+ **Last Update**: [YYYY-MM-DD HH:MM TZ] ← USE `date +"%Y-%m-%d %H:%M %Z"` for accuracy!
60
61
  **Version**: [X.Y.Z]
61
62
  **Objective**: [Clear goal statement]
62
63
  **Analyzed by**: [Agent/Team]
63
64
 
64
65
  ---
65
66
 
67
+ ## 📊 PROGRESS DASHBOARD
68
+
69
+ **Overall**: ████████░░░░░░░░░░░░ **X%** (X/Y tasks)
70
+ **Elapsed**: Xh Xm | **Started**: [HH:MM TZ] or [MM-DD HH:MM TZ]
71
+
72
+ | Wave | Tasks | Progress | Started | Ended | Time | Status |
73
+ |:----:|:-----:|----------|:-------:|:-----:|:----:|:------:|
74
+ | W0 | X/Y | ██████████ 100% | 10:00 | 10:45 | 45m | ✅ |
75
+ | W1 | X/Y | ████████░░ 80% | 10:45 | 11:50 | 1h05m | ✅ |
76
+ | W2 | X/Y | ███░░░░░░░ 35% | 11:50 | - | 45m+ | 🔄 |
77
+ | W3 | X/Y | ░░░░░░░░░░ 0% | - | - | - | ⏳ |
78
+
79
+ > **Time format**: Same day = `HH:MM`, different day = `MM-DD HH:MM`
80
+ > **Progress bar**: Each █ = 10%, use `█` for complete, `░` for remaining
81
+
82
+ | Current Wave | Blockers | Active | Next Up |
83
+ |:------------:|----------|:------:|---------|
84
+ | Wave X | None | C2, C3 | T-XX |
85
+
86
+ ---
87
+
66
88
  ## OPERATING INSTRUCTIONS
67
89
  > This plan MUST be updated at every completed step.
68
90
  > After each task:
69
91
  > 1. Update status (`⬜` → `✅✅`)
70
- > 2. Add completion timestamp
92
+ > 2. Add completion timestamp with DATE AND TIME
71
93
  > 3. Save the file
94
+ > 4. ALWAYS use shell for accurate time: `date +"%Y-%m-%d %H:%M %Z"`
72
95
 
73
96
  ---
74
97
 
75
98
  ## PROGRESS STATUS
76
- **Last update**: [YYYY-MM-DD HH:MM]
99
+ **Last update**: [YYYY-MM-DD HH:MM TZ]
77
100
  **Current wave**: [WAVE X]
78
101
  **Total progress**: [X/Y tasks (Z%)]
79
102
 
80
103
  ### WAVE 0 - Prerequisites
81
- | ID | Task | Branch | Status | Completed |
82
- |----|------|--------|--------|-----------|
83
- | W0A | [Task] | [branch] | ⬜/🔄/✅✅ | [timestamp] |
104
+ | Status | ID | Task | Assignee | Est | Started | Ended | Actual |
105
+ |:------:|-----|------|----------|:---:|---------|-------|:------:|
106
+ | ⬜ | W0A | [Task] | **CLAUDE 2** | 1h | | | |
84
107
 
85
108
  **Wave 0 Status**: X/Y completed
86
109
 
87
110
  ---
88
111
 
112
+ ## 📋 ISSUE TRACKING
113
+
114
+ | Issue | Title | Tasks | Progress | Owner | Started | Ended | Time |
115
+ |:-----:|-------|:-----:|----------|:-----:|---------|-------|:----:|
116
+ | #XX | [Issue title] | T-01, T-02 | ████░░░░░░ 40% | C2 | 10:00 | - | 1h+ |
117
+
118
+ > **Legend**: C2=Claude 2, C3=Claude 3, C4=Claude 4
119
+
120
+ ---
121
+
122
+ ## 📊 TIME STATISTICS
123
+
124
+ ### Estimated vs Actual
125
+ | Phase | Estimated | Actual | Variance |
126
+ |-------|:---------:|:------:|:--------:|
127
+ | Wave 0 | Xh | Yh | +Z% |
128
+ | Wave 1 | Xh | - | - |
129
+ | **TOTAL** | **Xh** | **Yh** | **+Z%** |
130
+
131
+ ### Per-Claude Performance
132
+ | Claude | Tasks | Time Spent | Avg/Task |
133
+ |--------|:-----:|:----------:|:--------:|
134
+ | CLAUDE 2 | X | Yh | Zm |
135
+ | CLAUDE 3 | X | Yh | Zm |
136
+ | CLAUDE 4 | X | Yh | Zm |
137
+
138
+ ---
139
+
89
140
  ## SUMMARY BY WAVE
90
141
  | Wave | Description | Tasks | Done | Status |
91
142
  |:----:|-------------|:-----:|:----:|:------:|
@@ -152,6 +203,110 @@ Every plan must follow this structure:
152
203
  4. Document decisions as ADRs
153
204
  5. Report blockers immediately
154
205
 
206
+ ---
207
+
208
+ ## 🚨 NON-NEGOTIABLE RULES FOR ALL CLAUDE INSTANCES
209
+
210
+ Include this section in EVERY multi-Claude plan:
211
+
212
+ ```markdown
213
+ ## 🚨 NON-NEGOTIABLE CODING RULES
214
+
215
+ ### Zero Tolerance
216
+ Zero tolerance for: bullshit, technical debt, errors, warnings, forgotten TODOs, debug console.logs, commented code, temporary files, unused dependencies. If you see something wrong, FIX IT NOW.
217
+
218
+ ### Mandatory Verification for EVERY Task
219
+ \`\`\`bash
220
+ npm run lint # MUST be 0 errors, 0 warnings
221
+ npm run typecheck # MUST compile without errors
222
+ npm run build # MUST build successfully
223
+ \`\`\`
224
+
225
+ ### Testing Rules
226
+ - If tests exist → they MUST pass
227
+ - If you add functionality → add tests
228
+ - Use Explore agent to find existing test patterns
229
+
230
+ ### Honest Behavior
231
+ - "It works" = tests pass + no errors + verified output shown
232
+ - "It's done" = code written + tests pass + committed (if requested)
233
+ - "It's fixed" = bug reproduced + fix applied + test proves fix works
234
+ - NO CLAIM WITHOUT EVIDENCE
235
+
236
+ ### Plan Updates (MANDATORY after each task)
237
+ 1. Update Status from ⬜ to ✅
238
+ 2. Fill in timestamps: Started, Ended, Actual time
239
+ 3. ALWAYS use shell for accurate time: \`date +"%Y-%m-%d %H:%M %Z"\`
240
+ 4. Update PROGRESS DASHBOARD percentages
241
+ 5. Update ISSUE TRACKING progress bars
242
+
243
+ ### GitHub Issue Closure
244
+ - Link tasks to issues: T-01 → #XX
245
+ - When all tasks for an issue are ✅, issue CAN be closed
246
+ - Add issue number in commit message: \`fix: complete T-01 for #XX\`
247
+ ```
248
+
249
+ ---
250
+
251
+ ## 🎭 CLAUDE ROLES STRUCTURE
252
+
253
+ Every multi-Claude plan MUST include this table:
254
+
255
+ ```markdown
256
+ ## 🎭 CLAUDE ROLES
257
+
258
+ | Claude | Role | Assigned Tasks | Files (NO OVERLAP!) |
259
+ |--------|------|----------------|---------------------|
260
+ | **CLAUDE 1** | 🎯 COORDINATOR | Monitor plan, verify consistency, aggregate results | - |
261
+ | **CLAUDE 2** | 👨‍💻 IMPLEMENTER | [Task IDs] | [file patterns] |
262
+ | **CLAUDE 3** | 👨‍💻 IMPLEMENTER | [Task IDs] | [file patterns] |
263
+ | **CLAUDE 4** | 👨‍💻 IMPLEMENTER | [Task IDs] | [file patterns] |
264
+
265
+ > **MAX 4 CLAUDE** - Beyond becomes unmanageable and increases git conflict risk
266
+ ```
267
+
268
+ ### Role Descriptions
269
+
270
+ **CLAUDE 1 (COORDINATOR)**:
271
+ 1. Monitor plan file every 10 minutes
272
+ 2. Verify lint/typecheck/build pass at all times
273
+ 3. Unlock gates when blocking phases complete
274
+ 4. Help if another Claude gets stuck
275
+ 5. Prepare final merge when all tasks are ✅
276
+
277
+ **CLAUDE 2, 3, 4 (IMPLEMENTERS)**:
278
+ 1. Read ENTIRE plan before starting
279
+ 2. Find tasks assigned to you (search "CLAUDE X")
280
+ 3. For EACH task: read files → implement → verify → update plan
281
+ 4. NEVER say "done" without running verification commands
282
+ 5. If blocked: ASK instead of inventing solutions
283
+
284
+ ---
285
+
286
+ ## 📊 EXECUTION TRACKER STRUCTURE
287
+
288
+ Every phase MUST have this table format:
289
+
290
+ ```markdown
291
+ ### Phase X: [Name] — 0/N [BLOCKS/Parallel with...]
292
+
293
+ | Status | ID | Task | Assignee | Issue | Est | Started | Ended | Actual |
294
+ |:------:|-----|------|----------|:-----:|:---:|---------|-------|:------:|
295
+ | ⬜ | T-01 | [Description] | **CLAUDE 2** | #XX | 2h | | | |
296
+ | 🔄 | T-02 | [Description] | **CLAUDE 3** | #XX | 1h | 2025-01-01 10:00 | | |
297
+ | ✅ | T-03 | [Description] | **CLAUDE 2** | #XX | 1h | 2025-01-01 09:00 | 2025-01-01 09:45 | 45m |
298
+
299
+ > ⚠️ **NOTES**: Any special instructions or dependencies
300
+ ```
301
+
302
+ ### Time Tracking Columns
303
+ - **Est**: Estimated time (1h, 2h, 30m)
304
+ - **Started**: Timestamp when work began (`date +"%Y-%m-%d %H:%M %Z"`)
305
+ - **Ended**: Timestamp when verified and complete
306
+ - **Actual**: Real time spent (calculate from Started/Ended)
307
+
308
+ ---
309
+
155
310
  ## Status Indicators
156
311
  - ⬜ Not started
157
312
  - 🔄 In progress
@@ -351,7 +506,88 @@ kitty @ send-text --match title:Claude-3 "Leggi [plan], sei CLAUDE 3, esegui i t
351
506
  └── kitty-check.sh # Verify setup
352
507
  ```
353
508
 
509
+ ## Synchronization Protocol
510
+
511
+ ### Phase Gates
512
+ When a phase BLOCKS other phases, use this mechanism to coordinate parallel Claude instances:
513
+
514
+ #### 1. Add PHASE GATES Section to Plan
515
+ ```markdown
516
+ ## 🚦 PHASE GATES
517
+
518
+ | Gate | Blocking Phase | Waiting Phases | Status | Unlocked By |
519
+ |------|----------------|----------------|--------|-------------|
520
+ | GATE-1 | Phase 0 (Safety) | Phase 1A, 1B, 1C | 🔴 LOCKED | CLAUDE 2 |
521
+ | GATE-2 | Phase 1 (All) | Phase 2 | 🔴 LOCKED | CLAUDE 1 |
522
+ ```
523
+
524
+ #### 2. Gate Status Values
525
+ - 🔴 LOCKED - Waiting phases cannot start
526
+ - 🟢 UNLOCKED - Waiting phases can proceed
527
+
528
+ #### 3. Unlock Protocol (for Claude completing blocking phase)
529
+ When ALL tasks in the blocking phase are ✅:
530
+ 1. Update plan file - change gate status from 🔴 LOCKED to 🟢 UNLOCKED
531
+ 2. Notify waiting Claude instances:
532
+ ```bash
533
+ kitty @ send-text --match title:Claude-3 "🟢 GATE-1 UNLOCKED! Start your Phase 1 tasks now."
534
+ kitty @ send-text --match title:Claude-4 "🟢 GATE-1 UNLOCKED! Start your Phase 1 tasks now."
535
+ ```
536
+
537
+ #### 4. Polling Protocol (for waiting Claude instances)
538
+ ```bash
539
+ # Check gate status every 5 minutes:
540
+ grep "GATE-1" [plan_path] | grep -q "🟢 UNLOCKED" && echo "GO!" || echo "Still waiting..."
541
+
542
+ # Full polling loop (run in background):
543
+ while ! grep "GATE-1" [plan_path] | grep -q "🟢 UNLOCKED"; do
544
+ echo "$(date): Waiting for GATE-1..."
545
+ sleep 300 # 5 minutes
546
+ done
547
+ echo "🟢 GATE-1 UNLOCKED! Starting work..."
548
+ ```
549
+
550
+ ### Coordinator Responsibilities (CLAUDE 1)
551
+
552
+ ```
553
+ CLAUDE 1 MUST:
554
+ 1. Monitor all gates every 10 minutes
555
+ 2. Verify gate unlocks are legitimate (all tasks ✅)
556
+ 3. If a Claude forgets to unlock, do it for them
557
+ 4. Track elapsed time per phase
558
+ 5. Alert if a phase takes >2x estimated time
559
+ ```
560
+
561
+ ### Plan Template Addition
562
+
563
+ Add this to every plan with blocking phases:
564
+
565
+ ```markdown
566
+ ## 🚦 PHASE GATES
567
+
568
+ | Gate | Blocks | Unlocks | Status | Unlocked At |
569
+ |------|--------|---------|--------|-------------|
570
+ | GATE-0 | Phase 0 | Phase 1A, 1B, 1C | 🔴 LOCKED | |
571
+
572
+ ### Gate Instructions
573
+
574
+ **CLAUDE completing blocking phase**:
575
+ After your last task is ✅, update the gate status above to 🟢 UNLOCKED and run:
576
+ \`\`\`bash
577
+ kitty @ send-text --match title:Claude-3 "🟢 GATE UNLOCKED! Proceed."
578
+ kitty @ send-text --match title:Claude-4 "🟢 GATE UNLOCKED! Proceed."
579
+ \`\`\`
580
+
581
+ **CLAUDE waiting for gate**:
582
+ Poll every 5 min OR wait for kitty notification:
583
+ \`\`\`bash
584
+ watch -n 300 'grep "GATE-0" plan.md'
585
+ \`\`\`
586
+ ```
587
+
354
588
  ## Changelog
355
589
 
590
+ - **1.3.0** (2025-12-29): Replaced ASCII box dashboard with clean Markdown tables, added elapsed time tracking per wave
591
+ - **1.2.0** (2025-12-29): Added Synchronization Protocol with Phase Gates for multi-Claude coordination
356
592
  - **1.1.0** (2025-12-28): Added Kitty parallel orchestration support
357
593
  - **1.0.0** (2025-12-15): Initial security framework and model optimization
package/VERSION CHANGED
@@ -3,7 +3,7 @@
3
3
  # Follows Semantic Versioning 2.0.0 (https://semver.org/)
4
4
 
5
5
  # System Version
6
- SYSTEM_VERSION=3.0.0
6
+ SYSTEM_VERSION=3.1.0
7
7
 
8
8
  # Version Schema
9
9
  # AGENT_NAME=MAJOR.MINOR.PATCH[-PRERELEASE] TIMESTAMP
@@ -24,6 +24,6 @@ evan-ic6da=0.1.0 2025-12-15T09:09:44Z
24
24
  marcello-pm=0.1.0 2025-12-15T09:09:45Z
25
25
  anna-executive-assistant=0.1.0 2025-12-15T09:09:45Z
26
26
  oliver-pm=0.1.0 2025-12-15T09:09:45Z
27
- strategic-planner=1.1.0 2025-12-28T18:00:00Z
27
+ strategic-planner=1.3.0 2025-12-29T10:00:00Z
28
28
  taskmaster-strategic-task-decomposition-master=1.0.3 2025-12-28T13:14:06Z
29
29
  davide-project-manager=1.0.3 2025-12-28T13:14:06Z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myconvergio",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "description": "Enterprise Agent Suite: 57 specialized AI agents for strategy, development, compliance, and operations - Claude Code Plugin",
5
5
  "keywords": [
6
6
  "claude",