@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.
Files changed (39) hide show
  1. package/.agent/rules/api-design.md +649 -0
  2. package/.agent/rules/architecture.md +2507 -0
  3. package/.agent/rules/best-practices.md +622 -0
  4. package/.agent/rules/code-style.md +308 -0
  5. package/.agent/rules/design-patterns.md +577 -0
  6. package/.agent/rules/devops.md +230 -0
  7. package/.agent/rules/error-handling.md +417 -0
  8. package/.agent/rules/instructions.md +28 -0
  9. package/.agent/rules/language.md +786 -0
  10. package/.agent/rules/performance.md +710 -0
  11. package/.agent/rules/security.md +587 -0
  12. package/.agent/rules/testing.md +572 -0
  13. package/.agent/workflows/add-documentation.md +10 -0
  14. package/.agent/workflows/generate-integration-tests.md +10 -0
  15. package/.agent/workflows/generate-unit-tests.md +11 -0
  16. package/.agent/workflows/performance-audit.md +11 -0
  17. package/.agent/workflows/refactor-extract-module.md +12 -0
  18. package/.agent/workflows/security-audit.md +12 -0
  19. package/.gemini/instructions.md +4843 -0
  20. package/AGENTS.md +9 -11
  21. package/bun.lock +755 -4
  22. package/claude.md +2 -2
  23. package/config.example.yml +129 -0
  24. package/config.yml +38 -0
  25. package/data/guideline-mappings.yml +128 -0
  26. package/data/language/dart/async.md +289 -0
  27. package/data/language/dart/basics.md +280 -0
  28. package/data/language/dart/error-handling.md +355 -0
  29. package/data/language/dart/index.md +10 -0
  30. package/data/language/dart/testing.md +352 -0
  31. package/data/language/swift/basics.md +477 -0
  32. package/data/language/swift/concurrency.md +654 -0
  33. package/data/language/swift/error-handling.md +679 -0
  34. package/data/language/swift/swiftui-mvvm.md +795 -0
  35. package/data/language/swift/testing.md +708 -0
  36. package/data/version.json +10 -8
  37. package/dist/index.js +50295 -29101
  38. package/jest.config.js +46 -0
  39. 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:** cli
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
- - integration
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