@aicgen/aicgen 1.0.0-beta.2 → 1.0.1
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/.agent/rules/api-design.md +649 -0
- package/.agent/rules/architecture.md +2507 -0
- package/.agent/rules/best-practices.md +622 -0
- package/.agent/rules/code-style.md +308 -0
- package/.agent/rules/design-patterns.md +577 -0
- package/.agent/rules/devops.md +230 -0
- package/.agent/rules/error-handling.md +417 -0
- package/.agent/rules/instructions.md +28 -0
- package/.agent/rules/language.md +786 -0
- package/.agent/rules/performance.md +710 -0
- package/.agent/rules/security.md +587 -0
- package/.agent/rules/testing.md +572 -0
- package/.agent/workflows/add-documentation.md +10 -0
- package/.agent/workflows/generate-integration-tests.md +10 -0
- package/.agent/workflows/generate-unit-tests.md +11 -0
- package/.agent/workflows/performance-audit.md +11 -0
- package/.agent/workflows/refactor-extract-module.md +12 -0
- package/.agent/workflows/security-audit.md +12 -0
- package/.gemini/instructions.md +4843 -0
- package/AGENTS.md +9 -11
- package/bun.lock +755 -4
- package/claude.md +2 -2
- package/config.example.yml +129 -0
- package/config.yml +38 -0
- package/data/guideline-mappings.yml +128 -0
- package/data/language/dart/async.md +289 -0
- package/data/language/dart/basics.md +280 -0
- package/data/language/dart/error-handling.md +355 -0
- package/data/language/dart/index.md +10 -0
- package/data/language/dart/testing.md +352 -0
- package/data/language/swift/basics.md +477 -0
- package/data/language/swift/concurrency.md +654 -0
- package/data/language/swift/error-handling.md +679 -0
- package/data/language/swift/swiftui-mvvm.md +795 -0
- package/data/language/swift/testing.md +708 -0
- package/data/version.json +10 -8
- package/dist/index.js +50295 -29101
- package/jest.config.js +46 -0
- package/package.json +13 -2
package/AGENTS.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
## Project Overview
|
|
4
4
|
|
|
5
5
|
**Language:** typescript
|
|
6
|
-
**Type:**
|
|
6
|
+
**Type:** other
|
|
7
7
|
|
|
8
8
|
## Development Guidelines
|
|
9
9
|
|
|
@@ -15,17 +15,11 @@ This project follows structured coding guidelines across multiple categories:
|
|
|
15
15
|
- async
|
|
16
16
|
- interfaces-types
|
|
17
17
|
|
|
18
|
-
### Architecture
|
|
19
|
-
|
|
20
|
-
- boundaries
|
|
21
|
-
- communication
|
|
22
|
-
- data
|
|
23
|
-
|
|
24
18
|
### Testing
|
|
25
19
|
|
|
26
20
|
- unit-fundamentals
|
|
27
21
|
- unit-mocking
|
|
28
|
-
-
|
|
22
|
+
- basics
|
|
29
23
|
|
|
30
24
|
### Security
|
|
31
25
|
|
|
@@ -36,7 +30,6 @@ This project follows structured coding guidelines across multiple categories:
|
|
|
36
30
|
### Performance
|
|
37
31
|
|
|
38
32
|
- basics
|
|
39
|
-
- caching
|
|
40
33
|
- async
|
|
41
34
|
|
|
42
35
|
### API Design
|
|
@@ -55,10 +48,15 @@ This project follows structured coding guidelines across multiple categories:
|
|
|
55
48
|
- strategy
|
|
56
49
|
- basics
|
|
57
50
|
|
|
51
|
+
### Architecture
|
|
52
|
+
|
|
53
|
+
- principles
|
|
54
|
+
- patterns
|
|
55
|
+
- patterns
|
|
56
|
+
|
|
58
57
|
### DevOps
|
|
59
58
|
|
|
60
59
|
- ci-cd
|
|
61
|
-
- practices
|
|
62
60
|
- observability
|
|
63
61
|
|
|
64
62
|
### Best Practices
|
|
@@ -70,8 +68,8 @@ This project follows structured coding guidelines across multiple categories:
|
|
|
70
68
|
### Design Patterns
|
|
71
69
|
|
|
72
70
|
- base-patterns
|
|
73
|
-
- concurrency
|
|
74
71
|
- data-access
|
|
72
|
+
- domain-logic
|
|
75
73
|
|
|
76
74
|
|
|
77
75
|
## Commands
|