aidevops 2.97.1 → 2.99.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.
- package/README.md +67 -0
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -534,6 +534,73 @@ Coordinator (pulse loop)
|
|
|
534
534
|
|
|
535
535
|
**Subagent index** (`.agent/subagent-index.toon`): Compressed TOON routing table listing all agents, subagents, workflows, and scripts with model tier assignments - enables fast agent discovery without loading full markdown files.
|
|
536
536
|
|
|
537
|
+
## **Advanced Capabilities** (Planned)
|
|
538
|
+
|
|
539
|
+
### Parallel Agents & Headless Dispatch
|
|
540
|
+
|
|
541
|
+
Run multiple AI sessions concurrently with isolated contexts:
|
|
542
|
+
|
|
543
|
+
| Feature | Description |
|
|
544
|
+
|---------|-------------|
|
|
545
|
+
| **Headless dispatch** | `claude -p` / OpenCode server API for non-interactive execution |
|
|
546
|
+
| **Session management** | Deterministic session IDs, resume with `--resume` |
|
|
547
|
+
| **Memory namespaces** | Per-agent memory isolation with shared access when needed |
|
|
548
|
+
| **Matrix integration** | Chat-triggered dispatch via self-hosted Matrix (optional) |
|
|
549
|
+
|
|
550
|
+
**Architecture:**
|
|
551
|
+
|
|
552
|
+
```text
|
|
553
|
+
OpenCode Server (opencode serve)
|
|
554
|
+
├── Session 1 (code-reviewer)
|
|
555
|
+
├── Session 2 (seo-analyst)
|
|
556
|
+
└── Session 3 (scheduled-task)
|
|
557
|
+
↑
|
|
558
|
+
HTTP API / SSE Events
|
|
559
|
+
↑
|
|
560
|
+
┌────────┴────────┐
|
|
561
|
+
│ Dispatch Layer │ ← Matrix bot, cron, CLI
|
|
562
|
+
└─────────────────┘
|
|
563
|
+
```
|
|
564
|
+
|
|
565
|
+
### Self-Improving Agent System
|
|
566
|
+
|
|
567
|
+
Agents that learn from experience and contribute improvements:
|
|
568
|
+
|
|
569
|
+
| Phase | Description |
|
|
570
|
+
|-------|-------------|
|
|
571
|
+
| **Review** | Analyze memory for success/failure patterns |
|
|
572
|
+
| **Refine** | Generate and apply improvements to agents |
|
|
573
|
+
| **Test** | Validate in isolated OpenCode sessions |
|
|
574
|
+
| **PR** | Contribute to community with privacy filtering |
|
|
575
|
+
|
|
576
|
+
**Safety guardrails:**
|
|
577
|
+
- Worktree isolation for all changes
|
|
578
|
+
- Human approval required for PRs
|
|
579
|
+
- Mandatory privacy filter (secretlint + pattern redaction)
|
|
580
|
+
- Dry-run default, explicit opt-in for PR creation
|
|
581
|
+
- Audit log to memory
|
|
582
|
+
|
|
583
|
+
### Voice Integration
|
|
584
|
+
|
|
585
|
+
Speech-to-speech AI conversations:
|
|
586
|
+
|
|
587
|
+
| Method | Description |
|
|
588
|
+
|--------|-------------|
|
|
589
|
+
| **VoiceInk + Shortcut** | macOS: transcription → OpenCode API → response |
|
|
590
|
+
| **iPhone Shortcut** | iOS: dictate → HTTP → speak response |
|
|
591
|
+
| **Pipecat STS** | Full voice pipeline: Soniox STT → AI → Cartesia TTS |
|
|
592
|
+
|
|
593
|
+
### Scheduled Agent Tasks
|
|
594
|
+
|
|
595
|
+
Cron-based agent dispatch for automated workflows:
|
|
596
|
+
|
|
597
|
+
```bash
|
|
598
|
+
# Example: Daily SEO report at 9am
|
|
599
|
+
0 9 * * * ~/.aidevops/agents/scripts/droid-helper.sh dispatch "seo-analyst" "Generate daily SEO report"
|
|
600
|
+
```
|
|
601
|
+
|
|
602
|
+
**See:** [TODO.md](TODO.md) tasks t109-t118 for implementation status.
|
|
603
|
+
|
|
537
604
|
## **Requirements**
|
|
538
605
|
|
|
539
606
|
```bash
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.99.0
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED