opencode-swarm-plugin 0.17.0 → 0.17.1

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.
@@ -342,5 +342,64 @@ Not: Do Everything Inline → Run Out of Context → Fail
342
342
  - [ ] Workers spawned in parallel
343
343
  - [ ] Progress monitored via **swarmmail_inbox** (limit=5, no bodies)
344
344
  - [ ] PR created (or pushed to main)
345
+ - [ ] **ASCII art session summary** (MANDATORY - see below)
346
+
347
+ ## ASCII Art & Visual Flair (MANDATORY)
348
+
349
+ **We fucking LOVE visual output.** Every swarm completion MUST include:
350
+
351
+ ### Required Elements
352
+
353
+ 1. **ASCII banner** - Big text for the epic title or "SWARM COMPLETE"
354
+ 2. **Architecture diagram** - Show what was built with box-drawing chars
355
+ 3. **Stats summary** - Files, subtasks, releases in a nice box
356
+ 4. **Ship-it flourish** - Cow, bee, or memorable closer
357
+
358
+ ### Box-Drawing Reference
359
+
360
+ ```
361
+ ─ │ ┌ ┐ └ ┘ ├ ┤ ┬ ┴ ┼ (light)
362
+ ━ ┃ ┏ ┓ ┗ ┛ ┣ ┫ ┳ ┻ ╋ (heavy)
363
+ ═ ║ ╔ ╗ ╚ ╝ ╠ ╣ ╦ ╩ ╬ (double)
364
+ ```
365
+
366
+ ### Example Session Summary
367
+
368
+ ```
369
+ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
370
+ ┃ 🐝 SWARM COMPLETE 🐝 ┃
371
+ ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
372
+
373
+ EPIC: Add User Authentication
374
+ ══════════════════════════════
375
+
376
+ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
377
+ │ OAuth │────▶│ Session │────▶│ Protected │
378
+ │ Provider │ │ Manager │ │ Routes │
379
+ └─────────────┘ └─────────────┘ └─────────────┘
380
+
381
+ SUBTASKS
382
+ ────────
383
+ ├── auth-123.1 ✓ OAuth provider setup
384
+ ├── auth-123.2 ✓ Session management
385
+ ├── auth-123.3 ✓ Protected route middleware
386
+ └── auth-123.4 ✓ Integration tests
387
+
388
+ STATS
389
+ ─────
390
+ Files Modified: 12
391
+ Tests Added: 24
392
+ Time: ~45 min
393
+
394
+ \ ^__^
395
+ \ (oo)\_______
396
+ (__)\ )\/\
397
+ ||----w |
398
+ || ||
399
+
400
+ moo. ship it.
401
+ ```
402
+
403
+ **This is not optional.** Make it beautiful. Make it memorable. PRs get shared.
345
404
 
346
405
  Begin with swarmmail_init and knowledge gathering now.
@@ -443,3 +443,73 @@ beads_sync();
443
443
  ```
444
444
 
445
445
  See `references/coordinator-patterns.md` for detailed patterns.
446
+
447
+ ## ASCII Art, Whimsy & Diagrams (MANDATORY)
448
+
449
+ **We fucking LOVE visual flair.** Every swarm session should include:
450
+
451
+ ### Session Summaries
452
+
453
+ When completing a swarm, output a beautiful summary with:
454
+
455
+ - ASCII art banner (figlet-style or custom)
456
+ - Box-drawing characters for structure
457
+ - Architecture diagrams showing what was built
458
+ - Stats (files modified, subtasks completed, etc.)
459
+ - A memorable quote or cow saying "ship it"
460
+
461
+ ### During Coordination
462
+
463
+ - Use tables for status updates
464
+ - Draw dependency trees with box characters
465
+ - Show progress with visual indicators
466
+
467
+ ### Examples
468
+
469
+ **Session Complete Banner:**
470
+
471
+ ```
472
+ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
473
+ ┃ 🐝 SWARM COMPLETE 🐝 ┃
474
+ ┃ ┃
475
+ ┃ Epic: Add Authentication ┃
476
+ ┃ Subtasks: 4/4 ✓ ┃
477
+ ┃ Files: 12 modified ┃
478
+ ┃ ┃
479
+ ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
480
+ ```
481
+
482
+ **Architecture Diagram:**
483
+
484
+ ```
485
+ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
486
+ │ INPUT │────▶│ PROCESS │────▶│ OUTPUT │
487
+ └─────────────┘ └─────────────┘ └─────────────┘
488
+ ```
489
+
490
+ **Dependency Tree:**
491
+
492
+ ```
493
+ epic-123
494
+ ├── epic-123.1 ✓ Auth service
495
+ ├── epic-123.2 ✓ Database schema
496
+ ├── epic-123.3 ◐ API routes (in progress)
497
+ └── epic-123.4 ○ Tests (pending)
498
+ ```
499
+
500
+ **Ship It:**
501
+
502
+ ```
503
+ \ ^__^
504
+ \ (oo)\_______
505
+ (__)\ )\/\
506
+ ||----w |
507
+ || ||
508
+
509
+ moo. ship it.
510
+ ```
511
+
512
+ **This is not optional.** PRs get shared on Twitter. Session summaries get screenshot. Make them memorable. Make them beautiful. Make them fun.
513
+
514
+ Box-drawing characters: `─ │ ┌ ┐ └ ┘ ├ ┤ ┬ ┴ ┼ ━ ┃ ┏ ┓ ┗ ┛`
515
+ Progress indicators: `✓ ✗ ◐ ○ ● ▶ ▷ ★ ☆ 🐝`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm-plugin",
3
- "version": "0.17.0",
3
+ "version": "0.17.1",
4
4
  "description": "Multi-agent swarm coordination for OpenCode with learning capabilities, beads integration, and Agent Mail",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",