myconvergio 3.2.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.3.3"
11
+ version: "1.4.0"
12
12
  ---
13
13
 
14
14
  ## Security & Ethics Framework
@@ -508,6 +508,84 @@ This agent can orchestrate **parallel execution** with multiple Claude instances
508
508
  | CLAUDE 4 | IMPLEMENTER | T-05, T-06 | src/lib/*.ts |
509
509
  ```
510
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
+
511
589
  ### Orchestration Commands
512
590
  ```bash
513
591
  # Verify Kitty setup
@@ -516,9 +594,9 @@ This agent can orchestrate **parallel execution** with multiple Claude instances
516
594
  # Launch N Claude workers
517
595
  ~/.claude/scripts/claude-parallel.sh [N]
518
596
 
519
- # Send tasks to workers (note: \r sends Enter key)
520
- kitty @ send-text --match title:Claude-2 "Leggi [plan], sei CLAUDE 2, esegui i tuoi task\r"
521
- kitty @ send-text --match title:Claude-3 "Leggi [plan], sei CLAUDE 3, esegui i tuoi task\r"
597
+ # Send tasks to workers
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
522
600
 
523
601
  # Monitor progress
524
602
  ~/.claude/scripts/claude-monitor.sh
@@ -563,8 +641,8 @@ When ALL tasks in the blocking phase are ✅:
563
641
  1. Update plan file - change gate status from 🔴 LOCKED to 🟢 UNLOCKED
564
642
  2. Notify waiting Claude instances:
565
643
  ```bash
566
- kitty @ send-text --match title:Claude-3 "🟢 GATE-1 UNLOCKED! Start your Phase 1 tasks now.\r"
567
- kitty @ send-text --match title:Claude-4 "🟢 GATE-1 UNLOCKED! Start your Phase 1 tasks now.\r"
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
568
646
  ```
569
647
 
570
648
  #### 4. Polling Protocol (for waiting Claude instances)
@@ -607,8 +685,8 @@ Add this to every plan with blocking phases:
607
685
  **CLAUDE completing blocking phase**:
608
686
  After your last task is ✅, update the gate status above to 🟢 UNLOCKED and run:
609
687
  \`\`\`bash
610
- kitty @ send-text --match title:Claude-3 "🟢 GATE UNLOCKED! Proceed.\r"
611
- kitty @ send-text --match title:Claude-4 "🟢 GATE UNLOCKED! Proceed.\r"
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
612
690
  \`\`\`
613
691
 
614
692
  **CLAUDE waiting for gate**:
@@ -620,6 +698,9 @@ watch -n 300 'grep "GATE-0" plan.md'
620
698
 
621
699
  ## Changelog
622
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`
623
704
  - **1.3.3** (2025-12-29): Added ISE Engineering Fundamentals requirement with link to Microsoft playbook
624
705
  - **1.3.2** (2025-12-29): Added mandatory WAVE FINAL documentation tasks and Documentation Rules in NON-NEGOTIABLE section
625
706
  - **1.3.1** (2025-12-29): Fixed kitty send-text commands missing `\r` (Enter key) for auto-execution
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.2.0
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.3.3 2025-12-29T15:30:00Z
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myconvergio",
3
- "version": "3.2.0",
3
+ "version": "3.3.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",