myconvergio 3.1.0 → 3.3.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.
|
|
11
|
+
version: "1.4.0"
|
|
12
12
|
---
|
|
13
13
|
|
|
14
14
|
## Security & Ethics Framework
|
|
@@ -109,6 +109,22 @@ Every plan must follow this structure:
|
|
|
109
109
|
|
|
110
110
|
---
|
|
111
111
|
|
|
112
|
+
### WAVE FINAL - Documentation & Deployment (MANDATORY)
|
|
113
|
+
| Status | ID | Task | Assignee | Est | Started | Ended | Actual |
|
|
114
|
+
|:------:|-----|------|----------|:---:|---------|-------|:------:|
|
|
115
|
+
| ⬜ | WF-01 | Update CHANGELOG.md | **CLAUDE 1** | 15m | | | |
|
|
116
|
+
| ⬜ | WF-02 | Create/update ADRs for architecture decisions | **CLAUDE 1** | 30m | | | |
|
|
117
|
+
| ⬜ | WF-03 | Update README if new features | **CLAUDE 1** | 20m | | | |
|
|
118
|
+
| ⬜ | WF-04 | Update API docs if endpoints changed | **CLAUDE 1** | 20m | | | |
|
|
119
|
+
| ⬜ | WF-05 | Final lint/typecheck/build verification | **CLAUDE 1** | 10m | | | |
|
|
120
|
+
| ⬜ | WF-06 | Create release commit and tag | **CLAUDE 1** | 10m | | | |
|
|
121
|
+
|
|
122
|
+
> ⚠️ **WAVE FINAL is NOT optional** - Skip = incomplete delivery
|
|
123
|
+
|
|
124
|
+
**Wave FINAL Status**: X/Y completed
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
112
128
|
## 📋 ISSUE TRACKING
|
|
113
129
|
|
|
114
130
|
| Issue | Title | Tasks | Progress | Owner | Started | Ended | Time |
|
|
@@ -244,6 +260,23 @@ npm run build # MUST build successfully
|
|
|
244
260
|
- Link tasks to issues: T-01 → #XX
|
|
245
261
|
- When all tasks for an issue are ✅, issue CAN be closed
|
|
246
262
|
- Add issue number in commit message: \`fix: complete T-01 for #XX\`
|
|
263
|
+
|
|
264
|
+
### Documentation Rules (MANDATORY)
|
|
265
|
+
- Every plan MUST include documentation tasks in WAVE FINAL
|
|
266
|
+
- If architecture changes → create/update ADR
|
|
267
|
+
- If API changes → update API docs
|
|
268
|
+
- If new feature → update README/user docs
|
|
269
|
+
- If behavior changes → update CHANGELOG
|
|
270
|
+
- Documentation debt = technical debt = ZERO TOLERANCE
|
|
271
|
+
|
|
272
|
+
### Engineering Fundamentals (MANDATORY)
|
|
273
|
+
- ALWAYS apply Microsoft ISE Engineering Fundamentals: https://microsoft.github.io/code-with-engineering-playbook/
|
|
274
|
+
- Code Reviews: required before merge
|
|
275
|
+
- Testing: unit, integration, e2e as appropriate
|
|
276
|
+
- CI/CD: automated pipelines
|
|
277
|
+
- Security: OWASP Top 10 compliance
|
|
278
|
+
- Observability: logging, metrics, tracing
|
|
279
|
+
- Agile: iterative delivery with feedback loops
|
|
247
280
|
```
|
|
248
281
|
|
|
249
282
|
---
|
|
@@ -475,6 +508,84 @@ This agent can orchestrate **parallel execution** with multiple Claude instances
|
|
|
475
508
|
| CLAUDE 4 | IMPLEMENTER | T-05, T-06 | src/lib/*.ts |
|
|
476
509
|
```
|
|
477
510
|
|
|
511
|
+
### Inter-Claude Communication Protocol
|
|
512
|
+
|
|
513
|
+
All Claude instances can communicate with each other using Kitty remote control. This enables:
|
|
514
|
+
- Coordinator → Worker commands
|
|
515
|
+
- Worker → Coordinator status updates
|
|
516
|
+
- Worker → Worker synchronization
|
|
517
|
+
- Broadcast notifications
|
|
518
|
+
|
|
519
|
+
#### Communication Command Pattern
|
|
520
|
+
```bash
|
|
521
|
+
# Universal pattern for ALL inter-Claude communication:
|
|
522
|
+
kitty @ send-text --match title:Claude-X "messaggio" && kitty @ send-key --match title:Claude-X Return
|
|
523
|
+
```
|
|
524
|
+
|
|
525
|
+
#### Communication Scenarios
|
|
526
|
+
|
|
527
|
+
**1. Coordinator → Worker (Task Assignment)**
|
|
528
|
+
```bash
|
|
529
|
+
# CLAUDE 1 assigns work to CLAUDE 3
|
|
530
|
+
kitty @ send-text --match title:Claude-3 "Leggi il piano, sei CLAUDE 3, inizia T-05" && kitty @ send-key --match title:Claude-3 Return
|
|
531
|
+
```
|
|
532
|
+
|
|
533
|
+
**2. Worker → Coordinator (Status Report)**
|
|
534
|
+
```bash
|
|
535
|
+
# CLAUDE 3 reports completion to CLAUDE 1
|
|
536
|
+
kitty @ send-text --match title:Claude-1 "CLAUDE 3: ✅ T-05 completato, piano aggiornato" && kitty @ send-key --match title:Claude-1 Return
|
|
537
|
+
```
|
|
538
|
+
|
|
539
|
+
**3. Worker → Worker (Direct Sync)**
|
|
540
|
+
```bash
|
|
541
|
+
# CLAUDE 2 notifies CLAUDE 4 about shared dependency
|
|
542
|
+
kitty @ send-text --match title:Claude-4 "CLAUDE 2: Ho finito types.ts, puoi procedere con api.ts" && kitty @ send-key --match title:Claude-4 Return
|
|
543
|
+
```
|
|
544
|
+
|
|
545
|
+
**4. Broadcast (One → All)**
|
|
546
|
+
```bash
|
|
547
|
+
# CLAUDE 1 broadcasts to all workers
|
|
548
|
+
for i in 2 3 4; do
|
|
549
|
+
kitty @ send-text --match title:Claude-$i "🚨 STOP! Conflitto git rilevato. Attendere." && kitty @ send-key --match title:Claude-$i Return
|
|
550
|
+
done
|
|
551
|
+
```
|
|
552
|
+
|
|
553
|
+
**5. Gate Unlock Notification**
|
|
554
|
+
```bash
|
|
555
|
+
# CLAUDE 2 unlocks gate and notifies waiting Claudes
|
|
556
|
+
kitty @ send-text --match title:Claude-3 "🟢 GATE-1 UNLOCKED! Procedi con Phase 1B" && kitty @ send-key --match title:Claude-3 Return
|
|
557
|
+
kitty @ send-text --match title:Claude-4 "🟢 GATE-1 UNLOCKED! Procedi con Phase 1C" && kitty @ send-key --match title:Claude-4 Return
|
|
558
|
+
```
|
|
559
|
+
|
|
560
|
+
**6. Help Request**
|
|
561
|
+
```bash
|
|
562
|
+
# CLAUDE 4 asks CLAUDE 1 for help
|
|
563
|
+
kitty @ send-text --match title:Claude-1 "CLAUDE 4: ❓ Bloccato su T-08, errore typecheck. Puoi aiutare?" && kitty @ send-key --match title:Claude-1 Return
|
|
564
|
+
```
|
|
565
|
+
|
|
566
|
+
#### Message Format Convention
|
|
567
|
+
```
|
|
568
|
+
[SENDER]: [EMOJI] [CONTENT]
|
|
569
|
+
|
|
570
|
+
Examples:
|
|
571
|
+
- "CLAUDE 3: ✅ T-05 completato"
|
|
572
|
+
- "CLAUDE 1: 🚨 STOP! Git conflict"
|
|
573
|
+
- "CLAUDE 2: 🟢 GATE-1 UNLOCKED"
|
|
574
|
+
- "CLAUDE 4: ❓ Need help with T-08"
|
|
575
|
+
- "CLAUDE 1: 📊 Progress check: 45% complete"
|
|
576
|
+
```
|
|
577
|
+
|
|
578
|
+
#### Emojis for Quick Parsing
|
|
579
|
+
| Emoji | Meaning |
|
|
580
|
+
|:-----:|---------|
|
|
581
|
+
| ✅ | Task completed |
|
|
582
|
+
| 🟢 | Gate unlocked / Go ahead |
|
|
583
|
+
| 🔴 | Stop / Blocked |
|
|
584
|
+
| 🚨 | Alert / Urgent |
|
|
585
|
+
| ❓ | Question / Help needed |
|
|
586
|
+
| 📊 | Status update |
|
|
587
|
+
| ⏳ | Waiting / In progress |
|
|
588
|
+
|
|
478
589
|
### Orchestration Commands
|
|
479
590
|
```bash
|
|
480
591
|
# Verify Kitty setup
|
|
@@ -484,8 +595,8 @@ This agent can orchestrate **parallel execution** with multiple Claude instances
|
|
|
484
595
|
~/.claude/scripts/claude-parallel.sh [N]
|
|
485
596
|
|
|
486
597
|
# Send tasks to workers
|
|
487
|
-
kitty @ send-text --match title:Claude-2 "Leggi [plan], sei CLAUDE 2, esegui i tuoi task"
|
|
488
|
-
kitty @ send-text --match title:Claude-3 "Leggi [plan], sei CLAUDE 3, esegui i tuoi task"
|
|
598
|
+
kitty @ send-text --match title:Claude-2 "Leggi [plan], sei CLAUDE 2, esegui i tuoi task" && kitty @ send-key --match title:Claude-2 Return
|
|
599
|
+
kitty @ send-text --match title:Claude-3 "Leggi [plan], sei CLAUDE 3, esegui i tuoi task" && kitty @ send-key --match title:Claude-3 Return
|
|
489
600
|
|
|
490
601
|
# Monitor progress
|
|
491
602
|
~/.claude/scripts/claude-monitor.sh
|
|
@@ -530,8 +641,8 @@ When ALL tasks in the blocking phase are ✅:
|
|
|
530
641
|
1. Update plan file - change gate status from 🔴 LOCKED to 🟢 UNLOCKED
|
|
531
642
|
2. Notify waiting Claude instances:
|
|
532
643
|
```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."
|
|
644
|
+
kitty @ send-text --match title:Claude-3 "🟢 GATE-1 UNLOCKED! Start your Phase 1 tasks now." && kitty @ send-key --match title:Claude-3 Return
|
|
645
|
+
kitty @ send-text --match title:Claude-4 "🟢 GATE-1 UNLOCKED! Start your Phase 1 tasks now." && kitty @ send-key --match title:Claude-4 Return
|
|
535
646
|
```
|
|
536
647
|
|
|
537
648
|
#### 4. Polling Protocol (for waiting Claude instances)
|
|
@@ -574,8 +685,8 @@ Add this to every plan with blocking phases:
|
|
|
574
685
|
**CLAUDE completing blocking phase**:
|
|
575
686
|
After your last task is ✅, update the gate status above to 🟢 UNLOCKED and run:
|
|
576
687
|
\`\`\`bash
|
|
577
|
-
kitty @ send-text --match title:Claude-3 "🟢 GATE UNLOCKED! Proceed."
|
|
578
|
-
kitty @ send-text --match title:Claude-4 "🟢 GATE UNLOCKED! Proceed."
|
|
688
|
+
kitty @ send-text --match title:Claude-3 "🟢 GATE UNLOCKED! Proceed." && kitty @ send-key --match title:Claude-3 Return
|
|
689
|
+
kitty @ send-text --match title:Claude-4 "🟢 GATE UNLOCKED! Proceed." && kitty @ send-key --match title:Claude-4 Return
|
|
579
690
|
\`\`\`
|
|
580
691
|
|
|
581
692
|
**CLAUDE waiting for gate**:
|
|
@@ -587,6 +698,12 @@ watch -n 300 'grep "GATE-0" plan.md'
|
|
|
587
698
|
|
|
588
699
|
## Changelog
|
|
589
700
|
|
|
701
|
+
- **1.4.0** (2025-12-29): Expanded to full Inter-Claude Communication Protocol with bidirectional messaging, worker-to-worker sync, broadcast patterns, message format conventions, and emoji reference table
|
|
702
|
+
- **1.3.5** (2025-12-29): Simplified kitty pattern with `&&` chaining, added Coordinator Communication Pattern section
|
|
703
|
+
- **1.3.4** (2025-12-29): Fixed kitty commands: use `send-text` + `send-key Return` instead of `\r`
|
|
704
|
+
- **1.3.3** (2025-12-29): Added ISE Engineering Fundamentals requirement with link to Microsoft playbook
|
|
705
|
+
- **1.3.2** (2025-12-29): Added mandatory WAVE FINAL documentation tasks and Documentation Rules in NON-NEGOTIABLE section
|
|
706
|
+
- **1.3.1** (2025-12-29): Fixed kitty send-text commands missing `\r` (Enter key) for auto-execution
|
|
590
707
|
- **1.3.0** (2025-12-29): Replaced ASCII box dashboard with clean Markdown tables, added elapsed time tracking per wave
|
|
591
708
|
- **1.2.0** (2025-12-29): Added Synchronization Protocol with Phase Gates for multi-Claude coordination
|
|
592
709
|
- **1.1.0** (2025-12-28): Added Kitty parallel orchestration support
|
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.
|
|
6
|
+
SYSTEM_VERSION=3.3.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.
|
|
27
|
+
strategic-planner=1.4.0 2025-12-30T00:00:29Z
|
|
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