awesome-agv 3.4.0 โ†’ 3.6.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.
Files changed (2) hide show
  1. package/README.md +33 -26
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -38,7 +38,7 @@ For example, the principles of the [Rugged Software Constitution](.agents/rules/
38
38
  ### Key Features
39
39
 
40
40
  * ๐Ÿ“ **25 Rules** โ€” covering security, reliability, architecture, and maintainability. Distilled to project-specific decisions only โ€” rules encode *what overrides model defaults*, not what models already know.
41
- * ๐Ÿ› ๏ธ **60 Skills** โ€” specialized capabilities loaded on demand: language idioms, debugging, design, testing, performance, CI/CD, and more.
41
+ * ๐Ÿ› ๏ธ **56 Skills** โ€” specialized capabilities loaded on demand: language idioms, debugging, design, testing, performance, CI/CD, and more.
42
42
  * ๐Ÿ”„ **10 Workflows** โ€” end-to-end development processes from research to ship, plus specialized testing pipelines.
43
43
  * ๐Ÿค– **21 Agent Personas** โ€” specialized sub-agents for multi-agent orchestration arranged in a 4-tier hierarchy.
44
44
  * ๐Ÿ—๏ธ **Three-Tier Loading System** โ€” always-on mandates + contextual principles + on-demand skills for zero-noise enforcement.
@@ -330,12 +330,8 @@ Skills are deep expertise modules loaded on demand โ€” agents only pay the token
330
330
  * **[Mobile Design](.agents/skills/mobile-design/SKILL.md)**: Platform-native mobile interfaces for Flutter and React Native
331
331
 
332
332
  #### ๐Ÿ”€ Multi-Agent Orchestration Skills
333
- * **[Convergence Loop](.agents/skills/convergence-loop/SKILL.md)**: Iterative problem solving protocol for coordinators.
334
- * **[Fault Recovery](.agents/skills/fault-recovery/SKILL.md)**: Structured fault tolerance and escalation ladder.
335
- * **[Integrity Enforcement](.agents/skills/integrity-enforcement/SKILL.md)**: Zero-tolerance compliance checking for the arbiter agent.
336
- * **[Parallel Dispatch](.agents/skills/parallel-dispatch/SKILL.md)**: MECE task decomposition, scope sizing, file ownership enforcement, DAG-based execution, and safe merge protocol for intra-domain parallel dispatch. Includes scope decomposition techniques previously in a separate skill.
337
- * **[Agent Protocols](.agents/skills/agent-protocols/SKILL.md)**: Shared behavioral protocols for all agents: recursive nesting, pre-implementation restatement, agent definition cascade, and parallel dispatch format.
338
- * **[Acceptance Review](.agents/skills/acceptance-review/SKILL.md)**: Spec adherence and deliverable completeness verification โ€” ensures what was delivered matches what was requested.
333
+ * **[Parallel Dispatch](.agents/skills/parallel-dispatch/SKILL.md)**: MECE task decomposition, scope sizing, file ownership enforcement, DAG-based execution, and safe merge protocol for intra-domain parallel dispatch.
334
+ * **[Agent Protocols](.agents/skills/agent-protocols/SKILL.md)**: Shared behavioral protocols for all agents: recursive nesting, pre-implementation restatement, agent definition cascade, parallel dispatch format, and completion reporting with reply-to address routing.
339
335
 
340
336
  #### ๐ŸŒ Language & Framework Idioms (26)
341
337
 
@@ -377,6 +373,12 @@ Language-specific patterns, tooling, project layout, and quality commands. Each
377
373
  | [SQL](.agents/skills/sql-idioms/SKILL.md) | Query optimization, indexes, migrations |
378
374
  | [Swift](.agents/skills/swift-idioms/SKILL.md) | SwiftUI, Combine, async/await |
379
375
 
376
+ **Database-specific skills:**
377
+
378
+ | Skill | Coverage |
379
+ |---|---|
380
+ | [PostgreSQL Idioms](.agents/skills/postgres-idioms/SKILL.md) | Query performance & indexing, connection pooling, RLS & security, schema design, concurrency & locking, data access patterns, monitoring, JSONB & full-text search |
381
+
380
382
  #### ๐Ÿข Domain Skills
381
383
  * **[API Documentation](.agents/skills/api-documentation/SKILL.md)**: OpenAPI 3.1 specs, request/response examples, versioning
382
384
  * **[Browser Automation](.agents/skills/browser-automation/SKILL.md)**: Playwright MCP-first automation for E2E testing, UI review, and Playwright MCP interactive development
@@ -391,22 +393,24 @@ Language-specific patterns, tooling, project layout, and quality commands. Each
391
393
 
392
394
  ### Agent Personas (21)
393
395
 
394
- Agent personas are specialized sub-agents designed for multi-agent orchestration. The system uses a Recursive Multi-Agent System (RMAS) with a 4-tier orchestration hierarchy. Each agent has an exclusive domain, clear boundaries, and never crosses into another agent's territory โ€” enforcing MECE at the architecture level.
396
+ Agent personas are specialized sub-agents designed for multi-agent orchestration. The system uses a 4-layer pipeline architecture with an overseer/conductor command structure. Each agent has an exclusive domain, clear boundaries, and never crosses into another agent's territory โ€” enforcing MECE at the architecture level.
395
397
 
396
398
  #### Layers
397
399
 
398
400
  | Layer | Agents | Purpose |
399
401
  |---|---|---|
400
- | **L1 Strategic** | `overseer` | Program director: aligns multiple domain streams and manages cross-domain dependencies |
401
- | **L2 Domain** | `rally-lead` | Domain coordinator: orchestrates multiple missions within a business vertical |
402
- | **L3 Execution** | `mission-lead` | Mission manager: drives a specific feature slice to completion |
403
- | **Compliance** | `arbiter`, `tech-lead` | Hard gate authorities: independent verification of rules, skills, and specs |
402
+ | **L0 Supervisor** | `overseer` | Pipeline supervisor: spawns conductor, monitors progress, dispatches red team, owns cleanup |
403
+ | **L1 Orchestration** | `conductor` | Build orchestrator: tier assessment, scope decomposition, dispatches builders and reviewers |
404
+ | **Build** | `tech-lead`, `backend-engineer`, `frontend-engineer`, `mobile-engineer`, `database-expert`, `devops-engineer`, `test-automation-engineer`, `performance-engineer`, `refactoring-specialist` | Implementation โ€” tech-lead coordinates multi-domain scope cards, specialists handle single-domain tasks |
405
+ | **Review** | `reviewer` | Independent quality gate: integrity enforcement, code quality, spec compliance โ€” sole PASS/FAIL authority |
406
+ | **Red Team** | `red-team-lead`, `delivery-validator`, `integration-prober` | Adversarial validation: smoke testing, environment bootstrap, service connectivity probing |
404
407
  | **Research** | `scout` | Codebase exploration, pattern discovery, technology research |
405
408
  | **Design** | `architect` + optional `ux-craftsman`, `database-expert`, `security-engineer` | System design, ADRs, API contracts |
406
- | **Build** | `backend-engineer`, `frontend-engineer`, `mobile-engineer`, `database-expert`, `devops-engineer`, `technical-writer`, `test-automation-engineer`, `performance-engineer`, `refactoring-specialist` | Implementation with isolated worktrees |
407
- | **Review** | `qa-analyst`, `security-engineer`, `ux-craftsman`, `incident-responder`, `acceptance-reviewer` | Quality gates, security audits, UX review |
409
+ | **Support** | `technical-writer`, `incident-responder` | Documentation and incident response |
408
410
 
409
- See the [workflow-team](.agents/workflows/workflow-team.md) workflow for the full dispatch protocol, including recursive parallel dispatch with MECE file ownership and DAG-based execution ordering.
411
+ All code-writing agents are hardened with **always-on mandates** (`security-mandate`, `rugged-software-constitution`, `code-idioms-and-conventions`, `logging-and-observability-mandate`) plus the `guardrails` skill for pre-flight and post-implementation safety checks.
412
+
413
+ See the [workflow-team](.agents/workflows/workflow-team.md) workflow for the full dispatch protocol, including adaptive tier routing, recursive parallel dispatch with MECE file ownership, and DAG-based execution ordering.
410
414
 
411
415
  ### Development Workflows (10)
412
416
 
@@ -426,13 +430,15 @@ Each phase references existing rules and skills rather than restating content
426
430
 
427
431
  #### ๐Ÿค– Multi-Agent Orchestration (`/workflow-team`)
428
432
 
429
- The pipeline manager workflow for dispatching specialized sub-agents across layers. Supports parallel execution via git worktrees with MECE file ownership.
433
+ The multi-agent pipeline boots an `@overseer` supervisor that spawns a `@conductor` for build orchestration. The conductor assesses task complexity using a 3-signal check (scope, risk, knowledge) and routes into adaptive tiers:
430
434
 
431
- ```
432
- SCOUT โ†’ DESIGN โ†’ PRE-MORTEM โ†’ BUILD (parallel) โ†’ REVIEW (parallel) โ†’ REMEDIATE โ†’ VERIFY
433
- ```
435
+ | Tier | When | Pipeline |
436
+ |------|------|----------|
437
+ | **Tier 1** | Single-domain, low risk | Builder โ†’ Reviewer |
438
+ | **Tier 2** | Multi-domain or medium risk | Scout โ†’ Design โ†’ Tech-Lead + Builders โ†’ Reviewer โ†’ Red Team |
439
+ | **Tier 3** | Cross-cutting, high risk | Scout โ†’ Design โ†’ Multiple Tech-Leads (parallel) โ†’ Reviewer โ†’ Red Team |
434
440
 
435
- Includes 11 workflow templates (A-K) for common scenarios: full features, bug fixes, audits, mobile features, security hardening, infrastructure, documentation sprints, incident response, and technical debt.
441
+ Includes system prompt templates for all agent roles, MECE file ownership for parallel execution, and resilience protocols (conductor succession, overseer role identity lock, cleanup fallback).
436
442
 
437
443
  #### ๐Ÿงช Testing Workflows
438
444
 
@@ -460,11 +466,11 @@ Specialized workflows for retroactive testing improvements on existing codebases
460
466
  ```
461
467
  .agents/
462
468
  โ”œโ”€โ”€ agents/ # 21 agent personas (multi-agent orchestration)
463
- โ”‚ โ”œโ”€โ”€ overseer.md # L1 Strategic Director
464
- โ”‚ โ”œโ”€โ”€ rally-lead.md # L2 Domain Coordinator
465
- โ”‚ โ”œโ”€โ”€ mission-lead.md # L3 Execution Manager
466
- โ”‚ โ”œโ”€โ”€ arbiter.md # Independent compliance authority
467
- โ”‚ โ”œโ”€โ”€ tech-lead.md # Quality gate authority
469
+ โ”‚ โ”œโ”€โ”€ overseer.md # L0 Pipeline Supervisor
470
+ โ”‚ โ”œโ”€โ”€ conductor.md # L1 Build Orchestrator
471
+ โ”‚ โ”œโ”€โ”€ tech-lead.md # Scope card owner + builder dispatcher
472
+ โ”‚ โ”œโ”€โ”€ reviewer.md # Independent quality gate (PASS/FAIL)
473
+ โ”‚ โ”œโ”€โ”€ red-team-lead.md # Adversarial validation orchestrator
468
474
  โ”‚ โ”œโ”€โ”€ architect.md
469
475
  โ”‚ โ”œโ”€โ”€ backend-engineer.md
470
476
  โ”‚ โ””โ”€โ”€ ... # 14 more specialized agents
@@ -476,7 +482,7 @@ Specialized workflows for retroactive testing improvements on existing codebases
476
482
  โ”‚ โ”œโ”€โ”€ architectural-pattern.md # always_on: I/O isolation, testability
477
483
  โ”‚ โ”œโ”€โ”€ rule-priority.md # always_on: conflict resolution
478
484
  โ”‚ โ””โ”€โ”€ ... # 5 more always-on + 15 contextual principles
479
- โ”œโ”€โ”€ skills/ # 60 specialized skills โ€” loaded on demand, not always
485
+ โ”œโ”€โ”€ skills/ # 56 specialized skills โ€” loaded on demand, not always
480
486
  โ”‚ โ”œโ”€โ”€ go-idioms/ # paths: **/*.go โ€” includes references/project-structure.md
481
487
  โ”‚ โ”œโ”€โ”€ typescript-idioms/ # paths: **/*.ts, **/*.tsx
482
488
  โ”‚ โ”œโ”€โ”€ vue-idioms/ # paths: **/*.vue, **/store/**/*.ts, **/*.store.ts
@@ -493,6 +499,7 @@ Specialized workflows for retroactive testing improvements on existing codebases
493
499
  โ”‚ โ”œโ”€โ”€ debugging-protocol/ # Core engineering (reference-loaded)
494
500
  โ”‚ โ”œโ”€โ”€ code-review/
495
501
  โ”‚ โ”œโ”€โ”€ guardrails/
502
+ โ”‚ โ”œโ”€โ”€ postgres-idioms/ # PostgreSQL best practices โ€” query, indexing, RLS, connection mgmt
496
503
  โ”‚ โ”œโ”€โ”€ parallel-dispatch/ # Multi-agent orchestration โ€” consolidated safety invariants
497
504
  โ”‚ โ”œโ”€โ”€ angular-idioms/ # Community language skills (18 ecosystems)
498
505
  โ”‚ โ”œโ”€โ”€ react-idioms/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awesome-agv",
3
- "version": "3.4.0",
3
+ "version": "3.6.0",
4
4
  "description": "Selective installer for Awesome AGV โ€” a rugged, high-quality AI Agent configuration suite with 25 rules, 59 skills, 12 workflows, and 21 agent personas.",
5
5
  "bin": {
6
6
  "awesome-agv": "./bin/awesome-agv.js"