awesome-agv 1.2.0 → 1.2.2
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 +14 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,11 +5,12 @@
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
A rugged, high-quality configuration suite for AI Agents.
|
|
7
7
|
<br />
|
|
8
|
-
<a href="#
|
|
8
|
+
<a href="#getting-started">Getting Started</a>
|
|
9
9
|
·
|
|
10
|
-
<a href="
|
|
10
|
+
<a href="#usage">View Rules & Skills</a>
|
|
11
11
|
·
|
|
12
12
|
<a href="https://github.com/irahardianto/awesome-agv/issues">Request Feature</a>
|
|
13
|
+
·
|
|
13
14
|
<br />
|
|
14
15
|
<br />
|
|
15
16
|
</p>
|
|
@@ -37,8 +38,8 @@ For example, the principles of the [Rugged Software Constitution](.agents/rules/
|
|
|
37
38
|
### Key Features
|
|
38
39
|
|
|
39
40
|
* 📏 **42 Rules** — covering security, reliability, architecture, maintainability, language idioms, and DevOps.
|
|
40
|
-
* 🛠️ **
|
|
41
|
-
* 🔄 **
|
|
41
|
+
* 🛠️ **8 Skills** — specialized capabilities for debugging, design, performance optimization, and more.
|
|
42
|
+
* 🔄 **11 Workflows** — end-to-end development processes from research to ship.
|
|
42
43
|
* 🏗️ **Two-Tier Rule System** — always-on mandates + contextual principles for zero-noise enforcement.
|
|
43
44
|
|
|
44
45
|
> **💡 Everything is modular.** Rules and skills work independently — you don't need workflows to benefit from them. Use only what you need, modify anything, or build your own workflows. It's a toolkit, not a framework.
|
|
@@ -401,6 +402,7 @@ The power of the setup comes from its extensive collection of rules covering eve
|
|
|
401
402
|
* **[Code Review](.agents/skills/code-review/SKILL.md)**: Structured code review protocol against the full rule set.
|
|
402
403
|
* **[Guardrails](.agents/skills/guardrails/SKILL.md)**: Pre-flight checklist and post-implementation self-review.
|
|
403
404
|
* **[ADR (Architecture Decision Records)](.agents/skills/adr/SKILL.md)**: Document significant architectural decisions with context and trade-offs.
|
|
405
|
+
* **[Performance Optimization](.agents/skills/perf-optimization/SKILL.md)**: Profile-driven performance optimization with Go pprof, frontend Lighthouse, and bundle analysis tooling.
|
|
404
406
|
|
|
405
407
|
### Development Workflows
|
|
406
408
|
|
|
@@ -430,6 +432,7 @@ Research → Implement (TDD) → Integrate → E2E (conditional) → Verify →
|
|
|
430
432
|
| [`/quick-fix`](.agents/workflows/quick-fix.md) | Bug fixes with known root cause (<50 lines) |
|
|
431
433
|
| [`/refactor`](.agents/workflows/refactor.md) | Safely restructure code while preserving behavior |
|
|
432
434
|
| [`/audit`](.agents/workflows/audit.md) | Code review and quality inspection (no new features) |
|
|
435
|
+
| [`/perf-optimize`](.agents/workflows/perf-optimize.md) | Profile-driven performance optimization |
|
|
433
436
|
|
|
434
437
|
<!-- DIRECTORY STRUCTURE -->
|
|
435
438
|
## Directory Structure
|
|
@@ -441,15 +444,16 @@ Research → Implement (TDD) → Integrate → E2E (conditional) → Verify →
|
|
|
441
444
|
│ ├── security-mandate.md
|
|
442
445
|
│ ├── rule-priority.md
|
|
443
446
|
│ └── ...
|
|
444
|
-
├── skills/ #
|
|
447
|
+
├── skills/ # 8 specialized skills
|
|
445
448
|
│ ├── debugging-protocol/
|
|
446
449
|
│ ├── frontend-design/
|
|
447
450
|
│ ├── mobile-design/
|
|
448
451
|
│ ├── sequential-thinking/
|
|
449
452
|
│ ├── code-review/
|
|
450
453
|
│ ├── guardrails/
|
|
451
|
-
│
|
|
452
|
-
└──
|
|
454
|
+
│ ├── adr/
|
|
455
|
+
│ └── perf-optimization/
|
|
456
|
+
└── workflows/ # 11 development workflows
|
|
453
457
|
├── orchestrator.md
|
|
454
458
|
├── 1-research.md
|
|
455
459
|
├── 2-implement.md
|
|
@@ -459,14 +463,15 @@ Research → Implement (TDD) → Integrate → E2E (conditional) → Verify →
|
|
|
459
463
|
├── quick-fix.md
|
|
460
464
|
├── refactor.md
|
|
461
465
|
├── audit.md
|
|
466
|
+
├── perf-optimize.md
|
|
462
467
|
└── e2e-test.md
|
|
463
468
|
```
|
|
464
469
|
|
|
465
470
|
<!-- ROADMAP -->
|
|
466
471
|
## Roadmap
|
|
467
472
|
|
|
468
|
-
- [x] Include more specialized skills to aid development process (
|
|
469
|
-
- [x] Add development workflows for structured feature delivery (
|
|
473
|
+
- [x] Include more specialized skills to aid development process (8 skills shipped).
|
|
474
|
+
- [x] Add development workflows for structured feature delivery (11 workflows shipped).
|
|
470
475
|
- [x] Add language-specific idiom and pattern rules (Go, TypeScript, Vue, Flutter, Rust, Python).
|
|
471
476
|
- [x] Create a CLI tool for easier installation (`npx awesome-agv`).
|
|
472
477
|
- [ ] Add automated validation scripts to check if an agent is following the constitution.
|