awesome-agv 2.1.0 → 3.0.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 +23 -15
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -38,9 +38,9 @@ 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
- * 🛠️ **53 Skills** — specialized capabilities loaded on demand: language idioms, debugging, design, performance, CI/CD, and more.
41
+ * 🛠️ **57 Skills** — specialized capabilities loaded on demand: language idioms, debugging, design, performance, CI/CD, and more.
42
42
  * 🔄 **12 Workflows** — end-to-end development processes from research to ship.
43
- * 🤖 **16 Agent Personas** — specialized sub-agents for multi-agent orchestration (tech-lead, architect, backend-engineer, security-engineer, etc.).
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.
45
45
 
46
46
  > **💡 Everything is modular.** Rules, skills, agents, and workflows work independently — you don't need everything to benefit. Use only what you need, modify anything, or build your own. It's a toolkit, not a framework.
@@ -284,7 +284,7 @@ Activated by the model only when relevant — zero overhead when not applicable.
284
284
  * **[Accessibility Principles](.agents/rules/accessibility-principles.md)**: WCAG 2.1 AA, semantic HTML, keyboard navigation
285
285
  * **[Git Workflow Principles](.agents/rules/git-workflow-principles.md)**: Conventional commits, branch naming, PR hygiene
286
286
 
287
- ### Specialized Skills (53)
287
+ ### Specialized Skills (57)
288
288
 
289
289
  Skills are deep expertise modules loaded on demand — agents only pay the token cost when the skill is relevant.
290
290
 
@@ -311,7 +311,11 @@ Skills are deep expertise modules loaded on demand — agents only pay the token
311
311
  * **[Mobile Design](.agents/skills/mobile-design/SKILL.md)**: Platform-native mobile interfaces for Flutter and React Native
312
312
 
313
313
  #### 🔀 Multi-Agent Orchestration Skills
314
+ * **[Convergence Loop](.agents/skills/convergence-loop/SKILL.md)**: Iterative problem solving protocol for coordinators.
315
+ * **[Fault Recovery](.agents/skills/fault-recovery/SKILL.md)**: Structured fault tolerance and escalation ladder.
316
+ * **[Integrity Enforcement](.agents/skills/integrity-enforcement/SKILL.md)**: Zero-tolerance compliance checking for the arbiter agent.
314
317
  * **[Parallel Dispatch](.agents/skills/parallel-dispatch/SKILL.md)**: MECE task decomposition, file ownership enforcement, DAG-based execution, and safe merge protocol for intra-domain parallel dispatch. The safety invariants that prevent merge chaos when multiple agents write in parallel. Applies recursively at every nesting depth.
318
+ * **[Scope Decomposition](.agents/skills/scope-decomposition/SKILL.md)**: Project and mission decomposition techniques.
315
319
  * **[Audit Checklist](.agents/skills/audit-checklist/SKILL.md)**: Consolidated audit checklists for code review and verification — loaded by `/audit` workflow and multi-agent review pipelines.
316
320
  * **[Acceptance Review](.agents/skills/acceptance-review/SKILL.md)**: Spec adherence and deliverable completeness verification — ensures what was delivered matches what was requested.
317
321
 
@@ -365,19 +369,22 @@ Language-specific patterns, tooling, project layout, and quality commands. Each
365
369
  * **[Payment Integration](.agents/skills/payment-integration/SKILL.md)**: PCI DSS compliance, tokenization, and webhook reliability
366
370
  * **[Supply Chain Security](.agents/skills/supply-chain-security/SKILL.md)**: SBOM generation, CVE scanning, and license compliance
367
371
 
368
- ### Agent Personas (16)
372
+ ### Agent Personas (21)
369
373
 
370
- Agent personas are specialized sub-agents designed for multi-agent orchestration. Each agent has an exclusive domain, clear boundaries, and never crosses into another agent's territory — enforcing MECE at the architecture level.
374
+ 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.
371
375
 
372
376
  #### Layers
373
377
 
374
378
  | Layer | Agents | Purpose |
375
379
  |---|---|---|
376
- | **Orchestration** | `tech-lead` | Anchor persona: elicits requirements, composes primitives, enforces standards, owns all quality gates |
380
+ | **L1 Strategic** | `overseer` | Program director: aligns multiple domain streams and manages cross-domain dependencies |
381
+ | **L2 Domain** | `rally-lead` | Domain coordinator: orchestrates multiple missions within a business vertical |
382
+ | **L3 Execution** | `mission-lead` | Mission manager: drives a specific feature slice to completion |
383
+ | **Compliance** | `arbiter`, `tech-lead` | Hard gate authorities: independent verification of rules, skills, and specs |
377
384
  | **Research** | `scout` | Codebase exploration, pattern discovery, technology research |
378
- | **Design** | `architect` + optional `ux-reviewer`, `database-expert`, `security-engineer` | System design, ADRs, API contracts |
385
+ | **Design** | `architect` + optional `ux-craftsman`, `database-expert`, `security-engineer` | System design, ADRs, API contracts |
379
386
  | **Build** | `backend-engineer`, `frontend-engineer`, `mobile-engineer`, `database-expert`, `devops-engineer`, `technical-writer`, `test-automation-engineer`, `performance-engineer`, `refactoring-specialist` | Implementation with isolated worktrees |
380
- | **Review** | `qa-analyst`, `security-engineer`, `ux-reviewer`, `incident-responder` | Quality gates, security audits, UX review |
387
+ | **Review** | `qa-analyst`, `security-engineer`, `ux-craftsman`, `incident-responder`, `acceptance-reviewer` | Quality gates, security audits, UX review |
381
388
 
382
389
  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.
383
390
 
@@ -426,14 +433,15 @@ Includes 11 workflow templates (A-K) for common scenarios: full features, bug fi
426
433
 
427
434
  ```
428
435
  .agents/
429
- ├── agents/ # 16 agent personas (multi-agent orchestration)
430
- │ ├── tech-lead.md # Orchestration anchor — elicits, composes, gates
436
+ ├── agents/ # 21 agent personas (multi-agent orchestration)
437
+ │ ├── overseer.md # L1 Strategic Director
438
+ │ ├── rally-lead.md # L2 Domain Coordinator
439
+ │ ├── mission-lead.md # L3 Execution Manager
440
+ │ ├── arbiter.md # Independent compliance authority
441
+ │ ├── tech-lead.md # Quality gate authority
431
442
  │ ├── architect.md
432
443
  │ ├── backend-engineer.md
433
- ├── frontend-engineer.md
434
- │ ├── scout.md
435
- │ ├── qa-analyst.md
436
- │ └── ... # 10 more specialized agents
444
+ └── ... # 14 more specialized agents
437
445
  ├── rules/ # 25 rules: 10 always-on mandates + 15 contextual principles
438
446
  │ │ # Each rule = project-specific decisions only (not model knowledge)
439
447
  │ ├── rugged-software-constitution.md # always_on: hostile-environment posture
@@ -442,7 +450,7 @@ Includes 11 workflow templates (A-K) for common scenarios: full features, bug fi
442
450
  │ ├── architectural-pattern.md # always_on: I/O isolation, testability
443
451
  │ ├── rule-priority.md # always_on: conflict resolution
444
452
  │ └── ... # 5 more always-on + 15 contextual principles
445
- ├── skills/ # 53 specialized skills — loaded on demand, not always
453
+ ├── skills/ # 57 specialized skills — loaded on demand, not always
446
454
  │ ├── go-idioms/ # paths: **/*.go — includes references/project-structure.md
447
455
  │ ├── typescript-idioms/ # paths: **/*.ts, **/*.tsx
448
456
  │ ├── vue-idioms/ # paths: **/*.vue, **/store/**/*.ts, **/*.store.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awesome-agv",
3
- "version": "2.1.0",
3
+ "version": "3.0.0",
4
4
  "description": "1-click installer for Awesome AGV — a rugged, high-quality configuration suite for AI Agents.",
5
5
  "bin": {
6
6
  "awesome-agv": "./bin/awesome-agv.js"