aidevops 2.102.0 → 2.103.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 +21 -4
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +18 -1
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ The result: AI agents that work *with* your development process, not around it.
|
|
|
93
93
|
|
|
94
94
|
- Primary agents (Build+, SEO, Marketing, etc.) with @plan-plus subagent for planning-only mode
|
|
95
95
|
- 614+ subagent markdown files organized by domain
|
|
96
|
-
-
|
|
96
|
+
- 167 helper scripts in `.agent/scripts/`
|
|
97
97
|
- 28 slash commands for common workflows
|
|
98
98
|
|
|
99
99
|
<!-- AI-CONTEXT-END -->
|
|
@@ -423,6 +423,14 @@ See `.agent/tools/terminal/terminal-title.md` for customization options.
|
|
|
423
423
|
- Git platform management, domain purchasing, setup automation
|
|
424
424
|
- [WordPress](https://wordpress.org/) management, credential security, code auditing
|
|
425
425
|
|
|
426
|
+
**Autonomous Orchestration:**
|
|
427
|
+
|
|
428
|
+
- **Supervisor** - SQLite state machine dispatches tasks to parallel AI agents with retry cycles, batch management, and cron scheduling
|
|
429
|
+
- **Runners** - Named headless agent instances with persistent identity, instructions, and memory namespaces
|
|
430
|
+
- **`/runners` command** - Batch dispatch from task IDs, PR URLs, or descriptions with concurrency control and progress monitoring
|
|
431
|
+
- **Mailbox** - SQLite-backed inter-agent messaging for coordination across parallel sessions
|
|
432
|
+
- **Worktree isolation** - Each agent works on its own branch in a separate directory, no merge conflicts
|
|
433
|
+
|
|
426
434
|
**Unified Interface:**
|
|
427
435
|
|
|
428
436
|
- Standardized commands across all providers
|
|
@@ -432,7 +440,8 @@ See `.agent/tools/terminal/terminal-title.md` for customization options.
|
|
|
432
440
|
**Quality Control & Monitoring:**
|
|
433
441
|
|
|
434
442
|
- **Multi-Platform Analysis**: SonarCloud, CodeFactor, Codacy, CodeRabbit, Qlty, Gemini Code Assist, Snyk
|
|
435
|
-
- **Performance Auditing**: PageSpeed Insights, Lighthouse, Core Web Vitals (`/performance` command)
|
|
443
|
+
- **Performance Auditing**: PageSpeed Insights, Lighthouse, WebPageTest, Core Web Vitals (`/performance` command)
|
|
444
|
+
- **SEO Toolchain**: 13 SEO subagents including Semrush, Ahrefs, ContentKing, Screaming Frog, Bing Webmaster Tools, Rich Results Test, programmatic SEO, analytics tracking, schema validation
|
|
436
445
|
- **SEO Debugging**: Open Graph validation, favicon checker, social preview testing
|
|
437
446
|
- **Email Deliverability**: SPF/DKIM/DMARC/MX validation, blacklist checking
|
|
438
447
|
- **Uptime Monitoring**: Updown.io integration for website and SSL monitoring
|
|
@@ -480,7 +489,7 @@ aidevops implements proven agent design patterns identified by [Lance Martin (La
|
|
|
480
489
|
|
|
481
490
|
| Pattern | Description | aidevops Implementation |
|
|
482
491
|
|---------|-------------|------------------------|
|
|
483
|
-
| **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`,
|
|
492
|
+
| **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 167 helper scripts |
|
|
484
493
|
| **Multi-Layer Action Space** | Few tools, push actions to computer | Per-agent MCP filtering (~12-20 tools each) |
|
|
485
494
|
| **Progressive Disclosure** | Load context on-demand | Subagent routing with content summaries, YAML frontmatter, read-on-demand |
|
|
486
495
|
| **Offload Context** | Write results to filesystem | `.agent-workspace/work/[project]/` for persistence |
|
|
@@ -519,6 +528,7 @@ Coordinator (pulse loop)
|
|
|
519
528
|
|-----------|--------|---------|
|
|
520
529
|
| Mailbox | `mail-helper.sh` | SQLite-backed inter-agent messaging (send, check, broadcast, archive) |
|
|
521
530
|
| Coordinator | `coordinator-helper.sh` | Stateless pulse loop: collect reports, dispatch tasks, track idle workers |
|
|
531
|
+
| Supervisor | `supervisor-helper.sh` | Autonomous multi-task orchestration with SQLite state machine, batches, retry cycles, cron scheduling, auto-pickup from TODO.md |
|
|
522
532
|
| Registry | `mail-helper.sh register` | Agent registration with role, branch, worktree, heartbeat |
|
|
523
533
|
| Model routing | `model-routing.md`, `/route` | Cost-aware 5-tier routing guidance (haiku/flash/sonnet/pro/opus) |
|
|
524
534
|
|
|
@@ -536,7 +546,9 @@ Coordinator (pulse loop)
|
|
|
536
546
|
|
|
537
547
|
**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.
|
|
538
548
|
|
|
539
|
-
## **
|
|
549
|
+
## **Autonomous Orchestration & Parallel Agents**
|
|
550
|
+
|
|
551
|
+
**Why this matters:** Long-running tasks -- batch PR reviews, multi-site SEO audits, large refactors -- are where AI agents deliver the most value. Instead of babysitting one task at a time, the supervisor dispatches work to parallel agents, each in its own git worktree, with automatic retry, progress tracking, and batch completion reporting.
|
|
540
552
|
|
|
541
553
|
### Parallel Agents & Headless Dispatch
|
|
542
554
|
|
|
@@ -819,6 +831,7 @@ See `.agent/tools/ocr/glm-ocr.md` for batch processing, PDF workflows, and Peeka
|
|
|
819
831
|
|
|
820
832
|
- **[PageSpeed Insights](https://pagespeed.web.dev/)**: Website performance auditing
|
|
821
833
|
- **[Lighthouse](https://developer.chrome.com/docs/lighthouse/)**: Comprehensive web app analysis
|
|
834
|
+
- **[WebPageTest](https://www.webpagetest.org/)**: Real-world performance testing from 40+ global locations with filmstrip, waterfall, and Core Web Vitals
|
|
822
835
|
- **[Updown.io](https://updown.io/)**: Website uptime and SSL monitoring
|
|
823
836
|
|
|
824
837
|
### **AI & Documentation**
|
|
@@ -870,6 +883,9 @@ These use direct API calls via curl, avoiding MCP server startup entirely:
|
|
|
870
883
|
| [Ahrefs](https://ahrefs.com/api) | SEO analysis & backlinks | Yes |
|
|
871
884
|
| [DataForSEO](https://dataforseo.com/) | SERP, keywords, backlinks, on-page | Yes |
|
|
872
885
|
| [Serper](https://serper.dev/) | Google Search API (web, images, news) | Yes |
|
|
886
|
+
| [Semrush](https://www.semrush.com/api-documentation/) | Domain analytics, keywords, backlinks, competitor research | Yes |
|
|
887
|
+
| [ContentKing](https://www.contentkingapp.com/) | Real-time SEO monitoring, change tracking, issues | Yes |
|
|
888
|
+
| [WebPageTest](https://www.webpagetest.org/) | Real-world performance testing from 40+ global locations | Yes |
|
|
873
889
|
| [Hostinger](https://developers.hostinger.com/) | Hosting management | Yes |
|
|
874
890
|
| [NeuronWriter](https://neuronwriter.com/) | Content optimization & NLP analysis | Yes |
|
|
875
891
|
|
|
@@ -1675,6 +1691,7 @@ Configure time tracking per-repo via `.aidevops.json`.
|
|
|
1675
1691
|
| `/session-review` | Review session for completeness and capture learnings |
|
|
1676
1692
|
| `/full-loop` | End-to-end development loop (task → preflight → PR → postflight → deploy) |
|
|
1677
1693
|
| `/preflight-loop` | Run preflight checks iteratively until all pass |
|
|
1694
|
+
| `/runners` | Batch dispatch tasks to parallel agents (task IDs, PR URLs, or descriptions) |
|
|
1678
1695
|
| `/log-issue-aidevops` | Report issues with aidevops (gathers diagnostics, checks duplicates, creates GitHub issue) |
|
|
1679
1696
|
|
|
1680
1697
|
### Ralph Loop - Iterative AI Development
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.103.0
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# AI Assistant Server Access Framework Setup Script
|
|
4
4
|
# Helps developers set up the framework for their infrastructure
|
|
5
5
|
#
|
|
6
|
-
# Version: 2.
|
|
6
|
+
# Version: 2.103.0
|
|
7
7
|
#
|
|
8
8
|
# Quick Install (one-liner):
|
|
9
9
|
# bash <(curl -fsSL https://aidevops.dev/install)
|
|
@@ -466,6 +466,23 @@ validate_opencode_config() {
|
|
|
466
466
|
local needs_repair=false
|
|
467
467
|
local issues=""
|
|
468
468
|
|
|
469
|
+
# Check 0: Remove deprecated top-level keys that OpenCode no longer recognizes
|
|
470
|
+
# "compaction" was removed in OpenCode v1.1.x - causes "Unrecognized key" error
|
|
471
|
+
local deprecated_keys=("compaction")
|
|
472
|
+
for key in "${deprecated_keys[@]}"; do
|
|
473
|
+
if jq -e ".[\"$key\"]" "$opencode_config" > /dev/null 2>&1; then
|
|
474
|
+
local tmp_fix
|
|
475
|
+
tmp_fix=$(mktemp)
|
|
476
|
+
if jq "del(.[\"$key\"])" "$opencode_config" > "$tmp_fix" 2>/dev/null; then
|
|
477
|
+
create_backup_with_rotation "$opencode_config" "opencode"
|
|
478
|
+
mv "$tmp_fix" "$opencode_config"
|
|
479
|
+
print_info "Removed deprecated '$key' key from OpenCode config"
|
|
480
|
+
else
|
|
481
|
+
rm -f "$tmp_fix"
|
|
482
|
+
fi
|
|
483
|
+
fi
|
|
484
|
+
done
|
|
485
|
+
|
|
469
486
|
# Check 1: MCP entries must have "type" field (usually "local")
|
|
470
487
|
# Invalid: {"mcp": {"foo": {"command": "..."}}}
|
|
471
488
|
# Valid: {"mcp": {"foo": {"type": "local", "command": "..."}}}
|