awesome-agv 3.0.0 โ 3.2.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 +77 -48
- package/agv.config.json +262 -0
- package/bin/awesome-agv.js +789 -157
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -38,8 +38,8 @@ 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
|
-
* ๐ ๏ธ **
|
|
42
|
-
* ๐ **
|
|
41
|
+
* ๐ ๏ธ **60 Skills** โ specialized capabilities loaded on demand: language idioms, debugging, design, testing, performance, CI/CD, and more.
|
|
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.
|
|
45
45
|
|
|
@@ -62,27 +62,42 @@ To equip your AI agent with these superpowers, follow these steps.
|
|
|
62
62
|
npx awesome-agv
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
This
|
|
65
|
+
This launches an interactive installer where you choose your installation mode:
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
| Mode | Description |
|
|
68
|
+
|---|---|
|
|
69
|
+
| ๐ **Default** | Install everything โ the full arsenal (recommended) |
|
|
70
|
+
| ๐ฏ **Curated** | Pick your languages & frameworks. Core rules and skills always included. |
|
|
71
|
+
| โ๏ธ **Advanced** | Full granular control over every component. |
|
|
72
|
+
|
|
73
|
+
In **Curated** and **Advanced** modes, the installer auto-detects your project's tech stack from files like `go.mod`, `Cargo.toml`, `tsconfig.json`, `pubspec.yaml`, etc. and pre-selects matching stacks.
|
|
74
|
+
|
|
75
|
+
**CLI Flags:**
|
|
68
76
|
|
|
69
|
-
| Flag
|
|
70
|
-
|
|
|
71
|
-
|
|
|
72
|
-
| `--
|
|
73
|
-
| `--
|
|
77
|
+
| Flag | Description |
|
|
78
|
+
| --- | --- |
|
|
79
|
+
| `--stacks <list>` | Comma-separated stacks to include (**additive** with existing config) |
|
|
80
|
+
| `--all` | Install everything (equivalent to Default mode) |
|
|
81
|
+
| `--force, -f` | Replace existing `.agents/` โ re-prompts from scratch |
|
|
82
|
+
| `--help, -h` | Show help |
|
|
74
83
|
|
|
75
84
|
### Examples
|
|
76
85
|
|
|
77
86
|
```bash
|
|
78
|
-
#
|
|
87
|
+
# Interactive โ choose your mode
|
|
79
88
|
npx awesome-agv
|
|
80
89
|
|
|
81
|
-
#
|
|
82
|
-
npx awesome-agv
|
|
90
|
+
# Non-interactive: specific stacks, core always included
|
|
91
|
+
npx awesome-agv --stacks go,python
|
|
92
|
+
|
|
93
|
+
# Add React to existing installation (additive)
|
|
94
|
+
npx awesome-agv --stacks react
|
|
95
|
+
|
|
96
|
+
# Full install, no prompts
|
|
97
|
+
npx awesome-agv --all --force
|
|
83
98
|
|
|
84
|
-
#
|
|
85
|
-
npx awesome-agv --force
|
|
99
|
+
# CI/CD: specific stacks, no prompts
|
|
100
|
+
npx awesome-agv --stacks typescript,vue --force
|
|
86
101
|
```
|
|
87
102
|
|
|
88
103
|
**Manual Install:**
|
|
@@ -284,7 +299,7 @@ Activated by the model only when relevant โ zero overhead when not applicable.
|
|
|
284
299
|
* **[Accessibility Principles](.agents/rules/accessibility-principles.md)**: WCAG 2.1 AA, semantic HTML, keyboard navigation
|
|
285
300
|
* **[Git Workflow Principles](.agents/rules/git-workflow-principles.md)**: Conventional commits, branch naming, PR hygiene
|
|
286
301
|
|
|
287
|
-
### Specialized Skills (
|
|
302
|
+
### Specialized Skills (60)
|
|
288
303
|
|
|
289
304
|
Skills are deep expertise modules loaded on demand โ agents only pay the token cost when the skill is relevant.
|
|
290
305
|
|
|
@@ -306,6 +321,10 @@ Skills are deep expertise modules loaded on demand โ agents only pay the token
|
|
|
306
321
|
* **[CI/CD GitOps & Kubernetes](.agents/skills/ci-cd/references/gitops-kubernetes.md)**: ArgoCD, Kubernetes deployment patterns โ bundled with `ci-cd`
|
|
307
322
|
* **[Feature Flags](.agents/skills/feature-flags/SKILL.md)**: Release flags, kill switches, experiment flags, lifecycle rules โ PRD-gated, loaded only when required
|
|
308
323
|
|
|
324
|
+
#### ๐งช Testing Skills
|
|
325
|
+
* **[Testing Strategy](.agents/skills/testing-strategy/SKILL.md)**: Test doubles strategy, integration test infrastructure (Testcontainers, Firebase emulator), naming conventions, test organization patterns
|
|
326
|
+
* **[Mobile Testing](.agents/skills/mobile-testing/SKILL.md)**: Mobile E2E testing patterns โ Flutter integration_test, Patrol, Maestro, golden testing, device matrix, and test data management
|
|
327
|
+
|
|
309
328
|
#### ๐จ Design & UI Skills
|
|
310
329
|
* **[Frontend Design](.agents/skills/frontend-design/SKILL.md)**: Production-grade frontend interfaces, bold aesthetics, typography, motion
|
|
311
330
|
* **[Mobile Design](.agents/skills/mobile-design/SKILL.md)**: Platform-native mobile interfaces for Flutter and React Native
|
|
@@ -319,7 +338,7 @@ Skills are deep expertise modules loaded on demand โ agents only pay the token
|
|
|
319
338
|
* **[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.
|
|
320
339
|
* **[Acceptance Review](.agents/skills/acceptance-review/SKILL.md)**: Spec adherence and deliverable completeness verification โ ensures what was delivered matches what was requested.
|
|
321
340
|
|
|
322
|
-
#### ๐ Language & Framework Idioms (
|
|
341
|
+
#### ๐ Language & Framework Idioms (26)
|
|
323
342
|
|
|
324
343
|
Language-specific patterns, tooling, project layout, and quality commands. Each skill auto-loads via `paths:` triggers when the agent touches files in that language.
|
|
325
344
|
|
|
@@ -327,7 +346,7 @@ Language-specific patterns, tooling, project layout, and quality commands. Each
|
|
|
327
346
|
|
|
328
347
|
| Skill | Ecosystem | Auto-loads on |
|
|
329
348
|
|---|---|---|
|
|
330
|
-
| [Go Idioms](.agents/skills/go-idioms/SKILL.md) + [layout](
|
|
349
|
+
| [Go Idioms](.agents/skills/go-idioms/SKILL.md) + [layout](.agents/skills/go-idioms/references/project-structure.md) | Go stdlib, error wrapping, table-driven tests, gofumpt | `**/*.go`, `**/go.mod` |
|
|
331
350
|
| [TypeScript Idioms](.agents/skills/typescript-idioms/SKILL.md) + [layout](.agents/skills/typescript-idioms/references/project-structure.md) | Strict mode, type narrowing, Zod, vitest | `**/*.ts`, `**/*.tsx` |
|
|
332
351
|
| [Vue Idioms](.agents/skills/vue-idioms/SKILL.md) + [layout](.agents/skills/vue-idioms/references/project-structure.md) | Vue 3 Composition API, Pinia (Setup Store), composables | `**/*.vue`, `**/store/**/*.ts`, `**/*.store.ts` |
|
|
333
352
|
| [Flutter Idioms](.agents/skills/flutter-idioms/SKILL.md) + [layout](.agents/skills/flutter-idioms/references/project-structure.md) | Riverpod 3, freezed, go_router, const widgets | `**/*.dart`, `**/pubspec.yaml`, `**/analysis_options.yaml` |
|
|
@@ -338,20 +357,22 @@ Language-specific patterns, tooling, project layout, and quality commands. Each
|
|
|
338
357
|
|
|
339
358
|
| Skill | Ecosystem |
|
|
340
359
|
|---|---|
|
|
341
|
-
| [Angular](.agents/skills/angular-idioms/SKILL.md) | Angular components, signals, DI, RxJS |
|
|
360
|
+
| [Angular](.agents/skills/angular-idioms/SKILL.md) + [layout](.agents/skills/angular-idioms/references/project-structure.md) | Angular components, signals, DI, RxJS |
|
|
361
|
+
| [Axum](.agents/skills/axum-idioms/SKILL.md) | Axum HTTP routing, extractors, Tower middleware |
|
|
342
362
|
| [C++](.agents/skills/cpp-idioms/SKILL.md) | Modern C++ (RAII, smart pointers, CMake) |
|
|
343
363
|
| [C#](.agents/skills/csharp-idioms/SKILL.md) | .NET, async/await, LINQ, records |
|
|
344
364
|
| [Django](.agents/skills/django-idioms/SKILL.md) | Django ORM, views, middleware |
|
|
345
365
|
| [.NET](.agents/skills/dotnet-idioms/SKILL.md) | ASP.NET Core, Entity Framework |
|
|
346
366
|
| [Elixir](.agents/skills/elixir-idioms/SKILL.md) | OTP, GenServer, supervision trees |
|
|
367
|
+
| [Hono](.agents/skills/hono-idioms/SKILL.md) + [layout](.agents/skills/hono-idioms/references/project-structure.md) | Hono routing, middleware, Zod validation, RPC |
|
|
347
368
|
| [Java](.agents/skills/java-idioms/SKILL.md) | Streams, records, sealed classes |
|
|
348
369
|
| [JavaScript](.agents/skills/javascript-idioms/SKILL.md) | ES2024+, async patterns, ESM |
|
|
349
370
|
| [Kotlin](.agents/skills/kotlin-idioms/SKILL.md) | Coroutines, sealed classes, Android |
|
|
350
371
|
| [Laravel](.agents/skills/laravel-idioms/SKILL.md) | Eloquent, middleware, queues |
|
|
351
|
-
| [Next.js](.agents/skills/nextjs-idioms/SKILL.md) | App Router, RSC, ISR |
|
|
372
|
+
| [Next.js](.agents/skills/nextjs-idioms/SKILL.md) + [layout](.agents/skills/nextjs-idioms/references/project-structure.md) | App Router, RSC, ISR |
|
|
352
373
|
| [PHP](.agents/skills/php-idioms/SKILL.md) | PHP 8+, type declarations, Composer |
|
|
353
374
|
| [Rails](.agents/skills/rails-idioms/SKILL.md) | ActiveRecord, conventions, RSpec |
|
|
354
|
-
| [React](.agents/skills/react-idioms/SKILL.md) | Hooks, Suspense, Server Components |
|
|
375
|
+
| [React](.agents/skills/react-idioms/SKILL.md) + [layout](.agents/skills/react-idioms/references/project-structure.md) | Hooks, Suspense, Server Components |
|
|
355
376
|
| [Ruby](.agents/skills/ruby-idioms/SKILL.md) | Blocks, modules, metaprogramming |
|
|
356
377
|
| [Spring Boot](.agents/skills/spring-boot-idioms/SKILL.md) | Spring DI, JPA, WebFlux |
|
|
357
378
|
| [SQL](.agents/skills/sql-idioms/SKILL.md) | Query optimization, indexes, migrations |
|
|
@@ -388,26 +409,21 @@ Agent personas are specialized sub-agents designed for multi-agent orchestration
|
|
|
388
409
|
|
|
389
410
|
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.
|
|
390
411
|
|
|
391
|
-
### Development Workflows (
|
|
412
|
+
### Development Workflows (10)
|
|
392
413
|
|
|
393
414
|
The setup includes opinionated, end-to-end workflows that chain rules and skills into structured development processes.
|
|
394
415
|
|
|
395
416
|
#### ๐ญ Feature Workflow โ Single Agent (`/workflow-solo`)
|
|
396
417
|
|
|
397
|
-
|
|
418
|
+
A lean, single-agent pipeline with adaptive complexity routing. The agent assesses task scope, risk, and knowledge to route into one of three tracks:
|
|
398
419
|
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
420
|
+
| Track | When | Pipeline |
|
|
421
|
+
|-------|------|----------|
|
|
422
|
+
| **Light** | All dimensions Low (1โ3 files, no breaking changes) | IMPLEMENT โ VERIFY โ COMMIT |
|
|
423
|
+
| **Standard** | Any dimension Medium/High | RESEARCH โ IMPLEMENT โ VERIFY โ COMMIT |
|
|
424
|
+
| **Thorough** | Multiple dimensions High | RESEARCH โ IMPLEMENT โ VERIFY (full) โ COMMIT |
|
|
402
425
|
|
|
403
|
-
|
|
404
|
-
| ------------ | -------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
|
|
405
|
-
| 1. Research | [`phase-research`](.agents/workflows/phase-research.md) | Understand context, search docs, create ADRs, uses [Qurio](https://github.com/irahardianto/qurio) default to web search |
|
|
406
|
-
| 2. Implement | [`phase-implement`](.agents/workflows/phase-implement.md) | TDD cycle: Red โ Green โ Refactor |
|
|
407
|
-
| 3. Integrate | [`phase-integrate`](.agents/workflows/phase-integrate.md) | Integration tests with Testcontainers |
|
|
408
|
-
| 3.5. E2E | [`phase-e2e`](.agents/workflows/phase-e2e.md) | End-to-end validation with Playwright |
|
|
409
|
-
| 4. Verify | [`phase-verify`](.agents/workflows/phase-verify.md) | Full lint, test, and build validation |
|
|
410
|
-
| 5. Ship | [`phase-commit`](.agents/workflows/phase-commit.md) | Git commit with conventional format |
|
|
426
|
+
Each phase references existing rules and skills rather than restating content โ the workflow is 133 lines total. Subagent spawning is allowed but not prescribed.
|
|
411
427
|
|
|
412
428
|
#### ๐ค Multi-Agent Orchestration (`/workflow-team`)
|
|
413
429
|
|
|
@@ -419,6 +435,17 @@ SCOUT โ DESIGN โ PRE-MORTEM โ BUILD (parallel) โ REVIEW (parallel) โ R
|
|
|
419
435
|
|
|
420
436
|
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.
|
|
421
437
|
|
|
438
|
+
#### ๐งช Testing Workflows
|
|
439
|
+
|
|
440
|
+
Specialized workflows for retroactive testing improvements on existing codebases:
|
|
441
|
+
|
|
442
|
+
| Workflow | Pipeline | Purpose |
|
|
443
|
+
|----------|----------|---------|
|
|
444
|
+
| [`/test-unit`](.agents/workflows/test-unit.md) | ANALYZE โ PRIORITIZE โ REFACTOR โ TEST โ VERIFY | Coverage-gap-first unit test improvement โ analyze gaps, prioritize by business risk and git churn, refactor for testability if needed |
|
|
445
|
+
| [`/test-integration`](.agents/workflows/test-integration.md) | AUDIT โ INFRASTRUCTURE โ TEST โ VERIFY | Adapter audit โ scan for I/O boundaries, set up Testcontainers/mocks, write contract-compliance tests |
|
|
446
|
+
| [`/test-e2e`](.agents/workflows/test-e2e.md) | PLAN โ SETUP โ AUTHOR โ EXECUTE โ REPORT | Platform-adaptive E2E โ web (Playwright) + mobile (Flutter/Patrol/Maestro), journey-based with evidence capture |
|
|
447
|
+
| [`/test-scenarios`](.agents/workflows/test-scenarios.md) | INPUT โ INVENTORY โ ANALYZE โ DERIVE โ EXPAND โ ORGANIZE โ OUTPUT โ HUMAN REVIEW | Hybrid structured derivation + mutation-informed expansion โ generates prioritized test scenarios that feed into the above workflows |
|
|
448
|
+
|
|
422
449
|
#### ๐ง Specialized Workflows
|
|
423
450
|
|
|
424
451
|
| Workflow | When to Use |
|
|
@@ -450,7 +477,7 @@ Includes 11 workflow templates (A-K) for common scenarios: full features, bug fi
|
|
|
450
477
|
โ โโโ architectural-pattern.md # always_on: I/O isolation, testability
|
|
451
478
|
โ โโโ rule-priority.md # always_on: conflict resolution
|
|
452
479
|
โ โโโ ... # 5 more always-on + 15 contextual principles
|
|
453
|
-
โโโ skills/ #
|
|
480
|
+
โโโ skills/ # 60 specialized skills โ loaded on demand, not always
|
|
454
481
|
โ โโโ go-idioms/ # paths: **/*.go โ includes references/project-structure.md
|
|
455
482
|
โ โโโ typescript-idioms/ # paths: **/*.ts, **/*.tsx
|
|
456
483
|
โ โโโ vue-idioms/ # paths: **/*.vue, **/store/**/*.ts, **/*.store.ts
|
|
@@ -459,6 +486,9 @@ Includes 11 workflow templates (A-K) for common scenarios: full features, bug fi
|
|
|
459
486
|
โ โโโ python-idioms/ # paths: **/*.py, **/pyproject.toml
|
|
460
487
|
โ โโโ testability-patterns/ # reference-loaded from architectural-pattern.md
|
|
461
488
|
โ โโโ logging-implementation/ # reference-loaded from logging-and-observability-mandate.md
|
|
489
|
+
โ โโโ testing-strategy/ # test doubles, naming, infrastructure patterns
|
|
490
|
+
โ โโโ mobile-testing/ # Flutter integration_test, Patrol, Maestro, golden testing
|
|
491
|
+
โ โ โโโ references/ # flutter.md, maestro.md โ framework-specific details
|
|
462
492
|
โ โโโ ci-cd/ # paths: Dockerfile, .github/workflows/*, Jenkinsfile, ...
|
|
463
493
|
โ โโโ feature-flags/ # paths: feature*flag*, feature*toggle* (PRD-gated)
|
|
464
494
|
โ โโโ debugging-protocol/ # Core engineering (reference-loaded)
|
|
@@ -470,15 +500,13 @@ Includes 11 workflow templates (A-K) for common scenarios: full features, bug fi
|
|
|
470
500
|
โ โโโ java-idioms/
|
|
471
501
|
โ โโโ incident-response/ # Domain skills
|
|
472
502
|
โ โโโ ...
|
|
473
|
-
โโโ workflows/ #
|
|
474
|
-
โโโ workflow-solo.md #
|
|
475
|
-
โโโ workflow-team.md #
|
|
476
|
-
โโโ
|
|
477
|
-
โโโ
|
|
478
|
-
โโโ
|
|
479
|
-
โโโ
|
|
480
|
-
โโโ phase-commit.md # Phase: git commit
|
|
481
|
-
โโโ phase-e2e.md # Phase: E2E testing
|
|
503
|
+
โโโ workflows/ # 10 development workflows
|
|
504
|
+
โโโ workflow-solo.md # Single-agent: lean adaptive pipeline
|
|
505
|
+
โโโ workflow-team.md # Multi-agent: hierarchical orchestration
|
|
506
|
+
โโโ test-unit.md # Testing: unit test coverage improvement
|
|
507
|
+
โโโ test-integration.md # Testing: integration test coverage
|
|
508
|
+
โโโ test-e2e.md # Testing: E2E mobile & web
|
|
509
|
+
โโโ test-scenarios.md # Testing: scenario generator
|
|
482
510
|
โโโ bugfix.md # Standalone: bug fixes
|
|
483
511
|
โโโ refactor.md # Standalone: code restructuring
|
|
484
512
|
โโโ audit.md # Standalone: code review
|
|
@@ -488,13 +516,14 @@ Includes 11 workflow templates (A-K) for common scenarios: full features, bug fi
|
|
|
488
516
|
<!-- ROADMAP -->
|
|
489
517
|
## Roadmap
|
|
490
518
|
|
|
491
|
-
- [x] Include more specialized skills to aid development process (
|
|
492
|
-
- [x] Add development workflows for structured feature delivery (
|
|
519
|
+
- [x] Include more specialized skills to aid development process (60 skills shipped).
|
|
520
|
+
- [x] Add development workflows for structured feature delivery (10 workflows shipped).
|
|
493
521
|
- [x] Add language-specific idiom skills (Go, TypeScript, Vue, Flutter, Rust, Python + 18 community language skills).
|
|
494
522
|
- [x] Create a CLI tool for easier installation (`npx awesome-agv`).
|
|
495
|
-
- [x] Add multi-agent orchestration with
|
|
523
|
+
- [x] Add multi-agent orchestration with 21 specialized agent personas in a 4-tier RMAS hierarchy.
|
|
496
524
|
- [x] Distill rules to decisions-only: strip generic knowledge, keep project-specific overrides (25 rules, -71% from peak).
|
|
497
525
|
- [x] Migrate language idioms from rules to on-demand skills โ only load when relevant to the task.
|
|
526
|
+
- [x] Selective CLI installer โ 3-tier modes (Default/Curated/Advanced) with auto-detection and manifest-driven extraction.
|
|
498
527
|
- [ ] Add automated validation scripts to check if an agent is following the constitution.
|
|
499
528
|
- [x] Publish comprehensive documentation site (GitHub Pages).
|
|
500
529
|
|
|
@@ -510,7 +539,7 @@ Awesome AGV ships with **opinionated defaults** for specific technology stacks.
|
|
|
510
539
|
| **Systems** | Rust โ tokio, thiserror/anyhow, clippy pedantic | [rust-idioms](.agents/skills/rust-idioms/SKILL.md) |
|
|
511
540
|
| **Scripting/AI** | Python โ ruff, mypy strict, pytest, Pydantic | [python-idioms](.agents/skills/python-idioms/SKILL.md) |
|
|
512
541
|
|
|
513
|
-
**Using a different framework?** The idiom skills are modular โ swap or edit them to match your stack. Community language skills are available for Angular, React, Next.js, Spring Boot, Django, Laravel, Rails, and more. See the [Adapting guide](https://irahardianto.github.io/awesome-agv/adapting) for which files to change.
|
|
542
|
+
**Using a different framework?** The idiom skills are modular โ swap or edit them to match your stack. Community language skills are available for Angular, React, Next.js, Hono, Axum, Spring Boot, Django, Laravel, Rails, and more. See the [Adapting guide](https://irahardianto.github.io/awesome-agv/adapting) for which files to change.
|
|
514
543
|
|
|
515
544
|
## Project Adaptation Guide
|
|
516
545
|
|
|
@@ -524,7 +553,7 @@ This setup supports different project structures:
|
|
|
524
553
|
| **Microservices** | Adapt `project-structure.md` per service, add service mesh rules |
|
|
525
554
|
| **Mobile (Flutter/RN)** | Use flutter-idioms or react-idioms skill |
|
|
526
555
|
|
|
527
|
-
**To adapt:** Edit `project-structure.md
|
|
556
|
+
**To adapt:** Edit `project-structure.md` and the relevant idiom skill's `references/project-structure.md` to match your project layout.
|
|
528
557
|
|
|
529
558
|
<!-- CONTRIBUTING -->
|
|
530
559
|
## Contributing
|
package/agv.config.json
ADDED
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "3.1.0",
|
|
3
|
+
"core": {
|
|
4
|
+
"paths": ["rules/", "workflows/", "agents/"]
|
|
5
|
+
},
|
|
6
|
+
"skills": {
|
|
7
|
+
"core": [
|
|
8
|
+
"acceptance-review",
|
|
9
|
+
"adr",
|
|
10
|
+
"api-documentation",
|
|
11
|
+
"audit-checklist",
|
|
12
|
+
"browser-automation",
|
|
13
|
+
"chaos-testing",
|
|
14
|
+
"ci-cd",
|
|
15
|
+
"cli-development",
|
|
16
|
+
"code-review",
|
|
17
|
+
"convergence-loop",
|
|
18
|
+
"data-engineering",
|
|
19
|
+
"debugging-protocol",
|
|
20
|
+
"embedded-systems",
|
|
21
|
+
"fault-recovery",
|
|
22
|
+
"feature-flags",
|
|
23
|
+
"frontend-design",
|
|
24
|
+
"guardrails",
|
|
25
|
+
"incident-response",
|
|
26
|
+
"integrity-enforcement",
|
|
27
|
+
"logging-implementation",
|
|
28
|
+
"ml-engineering",
|
|
29
|
+
"mobile-design",
|
|
30
|
+
"mobile-testing",
|
|
31
|
+
"omni",
|
|
32
|
+
"parallel-dispatch",
|
|
33
|
+
"payment-integration",
|
|
34
|
+
"perf-optimization",
|
|
35
|
+
"refactoring-patterns",
|
|
36
|
+
"research-methodology",
|
|
37
|
+
"scope-decomposition",
|
|
38
|
+
"sequential-thinking",
|
|
39
|
+
"supply-chain-security",
|
|
40
|
+
"testability-patterns",
|
|
41
|
+
"testing-strategy"
|
|
42
|
+
],
|
|
43
|
+
"stacks": {
|
|
44
|
+
"go": {
|
|
45
|
+
"label": "Go",
|
|
46
|
+
"description": "stdlib, error wrapping, gofumpt",
|
|
47
|
+
"group": "core",
|
|
48
|
+
"detect": ["go.mod", "go.sum"],
|
|
49
|
+
"skills": ["go-idioms"]
|
|
50
|
+
},
|
|
51
|
+
"typescript": {
|
|
52
|
+
"label": "TypeScript",
|
|
53
|
+
"description": "strict mode, type narrowing, Zod, vitest",
|
|
54
|
+
"group": "core",
|
|
55
|
+
"detect": ["tsconfig.json"],
|
|
56
|
+
"skills": ["typescript-idioms"]
|
|
57
|
+
},
|
|
58
|
+
"flutter": {
|
|
59
|
+
"label": "Flutter",
|
|
60
|
+
"description": "Riverpod 3, freezed, go_router",
|
|
61
|
+
"group": "core",
|
|
62
|
+
"detect": ["pubspec.yaml"],
|
|
63
|
+
"skills": ["flutter-idioms"]
|
|
64
|
+
},
|
|
65
|
+
"rust": {
|
|
66
|
+
"label": "Rust",
|
|
67
|
+
"description": "tokio, thiserror/anyhow, clippy pedantic",
|
|
68
|
+
"group": "core",
|
|
69
|
+
"detect": ["Cargo.toml"],
|
|
70
|
+
"skills": ["rust-idioms"]
|
|
71
|
+
},
|
|
72
|
+
"python": {
|
|
73
|
+
"label": "Python",
|
|
74
|
+
"description": "ruff, mypy strict, pytest, Pydantic",
|
|
75
|
+
"group": "core",
|
|
76
|
+
"detect": ["pyproject.toml", "requirements.txt", "setup.py"],
|
|
77
|
+
"skills": ["python-idioms"]
|
|
78
|
+
},
|
|
79
|
+
"vue": {
|
|
80
|
+
"label": "Vue",
|
|
81
|
+
"description": "Composition API, Pinia, composables",
|
|
82
|
+
"group": "core",
|
|
83
|
+
"requires": ["typescript"],
|
|
84
|
+
"detect": ["*.vue"],
|
|
85
|
+
"skills": ["vue-idioms"]
|
|
86
|
+
},
|
|
87
|
+
"angular": {
|
|
88
|
+
"label": "Angular",
|
|
89
|
+
"description": "components, signals, DI, RxJS",
|
|
90
|
+
"group": "core",
|
|
91
|
+
"requires": ["typescript"],
|
|
92
|
+
"detect": ["angular.json"],
|
|
93
|
+
"skills": ["angular-idioms"]
|
|
94
|
+
},
|
|
95
|
+
"react": {
|
|
96
|
+
"label": "React",
|
|
97
|
+
"description": "hooks, Suspense, Server Components",
|
|
98
|
+
"group": "core",
|
|
99
|
+
"requires": ["typescript"],
|
|
100
|
+
"detect": [],
|
|
101
|
+
"skills": ["react-idioms"]
|
|
102
|
+
},
|
|
103
|
+
"nextjs": {
|
|
104
|
+
"label": "Next.js",
|
|
105
|
+
"description": "App Router, RSC, ISR",
|
|
106
|
+
"group": "community",
|
|
107
|
+
"requires": ["react"],
|
|
108
|
+
"detect": ["next.config.js", "next.config.mjs", "next.config.ts"],
|
|
109
|
+
"skills": ["nextjs-idioms"]
|
|
110
|
+
},
|
|
111
|
+
"axum": {
|
|
112
|
+
"label": "Axum",
|
|
113
|
+
"description": "Rust HTTP routing, extractors, middleware",
|
|
114
|
+
"group": "community",
|
|
115
|
+
"requires": ["rust"],
|
|
116
|
+
"detect": [],
|
|
117
|
+
"skills": ["axum-idioms"]
|
|
118
|
+
},
|
|
119
|
+
"django": {
|
|
120
|
+
"label": "Django",
|
|
121
|
+
"description": "ORM, views, middleware",
|
|
122
|
+
"group": "community",
|
|
123
|
+
"requires": ["python"],
|
|
124
|
+
"detect": ["manage.py"],
|
|
125
|
+
"skills": ["django-idioms"]
|
|
126
|
+
},
|
|
127
|
+
"laravel": {
|
|
128
|
+
"label": "Laravel",
|
|
129
|
+
"description": "Eloquent, middleware, queues",
|
|
130
|
+
"group": "community",
|
|
131
|
+
"requires": ["php"],
|
|
132
|
+
"detect": ["artisan"],
|
|
133
|
+
"skills": ["laravel-idioms"]
|
|
134
|
+
},
|
|
135
|
+
"rails": {
|
|
136
|
+
"label": "Rails",
|
|
137
|
+
"description": "ActiveRecord, conventions, RSpec",
|
|
138
|
+
"group": "community",
|
|
139
|
+
"requires": ["ruby"],
|
|
140
|
+
"detect": ["Rakefile"],
|
|
141
|
+
"skills": ["rails-idioms"]
|
|
142
|
+
},
|
|
143
|
+
"spring-boot": {
|
|
144
|
+
"label": "Spring Boot",
|
|
145
|
+
"description": "Spring DI, JPA, WebFlux",
|
|
146
|
+
"group": "community",
|
|
147
|
+
"requires": ["java"],
|
|
148
|
+
"detect": [],
|
|
149
|
+
"skills": ["spring-boot-idioms"]
|
|
150
|
+
},
|
|
151
|
+
"dotnet": {
|
|
152
|
+
"label": ".NET",
|
|
153
|
+
"description": "ASP.NET Core, Entity Framework",
|
|
154
|
+
"group": "community",
|
|
155
|
+
"requires": ["csharp"],
|
|
156
|
+
"detect": ["global.json", "*.fsproj"],
|
|
157
|
+
"skills": ["dotnet-idioms"]
|
|
158
|
+
},
|
|
159
|
+
"cpp": {
|
|
160
|
+
"label": "C++",
|
|
161
|
+
"description": "modern C++, RAII, smart pointers, CMake",
|
|
162
|
+
"group": "community",
|
|
163
|
+
"detect": ["CMakeLists.txt"],
|
|
164
|
+
"skills": ["cpp-idioms"]
|
|
165
|
+
},
|
|
166
|
+
"csharp": {
|
|
167
|
+
"label": "C#",
|
|
168
|
+
"description": ".NET, async/await, LINQ, records",
|
|
169
|
+
"group": "community",
|
|
170
|
+
"detect": ["*.csproj", "*.sln"],
|
|
171
|
+
"skills": ["csharp-idioms"]
|
|
172
|
+
},
|
|
173
|
+
"elixir": {
|
|
174
|
+
"label": "Elixir",
|
|
175
|
+
"description": "OTP, GenServer, supervision trees",
|
|
176
|
+
"group": "community",
|
|
177
|
+
"detect": ["mix.exs"],
|
|
178
|
+
"skills": ["elixir-idioms"]
|
|
179
|
+
},
|
|
180
|
+
"hono": {
|
|
181
|
+
"label": "Hono",
|
|
182
|
+
"description": "Hono routing, middleware, Zod validation, RPC",
|
|
183
|
+
"group": "community",
|
|
184
|
+
"requires": ["typescript"],
|
|
185
|
+
"detect": [],
|
|
186
|
+
"skills": ["hono-idioms"]
|
|
187
|
+
},
|
|
188
|
+
"java": {
|
|
189
|
+
"label": "Java",
|
|
190
|
+
"description": "streams, records, sealed classes",
|
|
191
|
+
"group": "community",
|
|
192
|
+
"detect": ["pom.xml", "build.gradle"],
|
|
193
|
+
"skills": ["java-idioms"]
|
|
194
|
+
},
|
|
195
|
+
"javascript": {
|
|
196
|
+
"label": "JavaScript",
|
|
197
|
+
"description": "ES2024+, async patterns, ESM",
|
|
198
|
+
"group": "community",
|
|
199
|
+
"detect": [],
|
|
200
|
+
"skills": ["javascript-idioms"]
|
|
201
|
+
},
|
|
202
|
+
"kotlin": {
|
|
203
|
+
"label": "Kotlin",
|
|
204
|
+
"description": "coroutines, sealed classes, Android",
|
|
205
|
+
"group": "community",
|
|
206
|
+
"detect": ["build.gradle.kts"],
|
|
207
|
+
"skills": ["kotlin-idioms"]
|
|
208
|
+
},
|
|
209
|
+
"php": {
|
|
210
|
+
"label": "PHP",
|
|
211
|
+
"description": "PHP 8+, type declarations, Composer",
|
|
212
|
+
"group": "community",
|
|
213
|
+
"detect": ["composer.json"],
|
|
214
|
+
"skills": ["php-idioms"]
|
|
215
|
+
},
|
|
216
|
+
"ruby": {
|
|
217
|
+
"label": "Ruby",
|
|
218
|
+
"description": "blocks, modules, metaprogramming",
|
|
219
|
+
"group": "community",
|
|
220
|
+
"detect": ["Gemfile"],
|
|
221
|
+
"skills": ["ruby-idioms"]
|
|
222
|
+
},
|
|
223
|
+
"sql": {
|
|
224
|
+
"label": "SQL",
|
|
225
|
+
"description": "query optimization, indexes, migrations",
|
|
226
|
+
"group": "community",
|
|
227
|
+
"detect": [],
|
|
228
|
+
"skills": ["sql-idioms"]
|
|
229
|
+
},
|
|
230
|
+
"swift": {
|
|
231
|
+
"label": "Swift",
|
|
232
|
+
"description": "SwiftUI, Combine, async/await",
|
|
233
|
+
"group": "community",
|
|
234
|
+
"detect": ["Package.swift"],
|
|
235
|
+
"skills": ["swift-idioms"]
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"warnings": {
|
|
240
|
+
"always_on_rules": [
|
|
241
|
+
"rugged-software-constitution",
|
|
242
|
+
"security-mandate",
|
|
243
|
+
"rule-priority",
|
|
244
|
+
"logging-and-observability-mandate",
|
|
245
|
+
"architectural-pattern",
|
|
246
|
+
"code-idioms-and-conventions",
|
|
247
|
+
"code-organization-principles",
|
|
248
|
+
"core-design-principles",
|
|
249
|
+
"project-structure",
|
|
250
|
+
"documentation-principles"
|
|
251
|
+
],
|
|
252
|
+
"rmas_critical_skills": [
|
|
253
|
+
"convergence-loop",
|
|
254
|
+
"fault-recovery",
|
|
255
|
+
"integrity-enforcement",
|
|
256
|
+
"parallel-dispatch",
|
|
257
|
+
"scope-decomposition",
|
|
258
|
+
"audit-checklist",
|
|
259
|
+
"acceptance-review"
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
}
|