@aicgen/aicgen 1.0.1 → 1.0.4

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/AGENTS.md CHANGED
@@ -3,7 +3,8 @@
3
3
  ## Project Overview
4
4
 
5
5
  **Language:** typescript
6
- **Type:** other
6
+ **Type:** cli
7
+ **Architecture:** event-driven
7
8
 
8
9
  ## Development Guidelines
9
10
 
@@ -51,7 +52,7 @@ This project follows structured coding guidelines across multiple categories:
51
52
  ### Architecture
52
53
 
53
54
  - principles
54
- - patterns
55
+ - messaging
55
56
  - patterns
56
57
 
57
58
  ### DevOps
@@ -103,6 +104,10 @@ See tool-specific instruction files for detailed code style guidelines:
103
104
  - Gemini: `.gemini/instructions.md`
104
105
  - Antigravity: `.agent/rules/instructions.md`
105
106
 
107
+ ## Architecture
108
+
109
+ This project follows **event-driven** architecture. See architecture guidelines in tool-specific files.
110
+
106
111
  ## Testing
107
112
 
108
113
  Follow testing guidelines in tool-specific instruction files.
package/README.md CHANGED
@@ -55,17 +55,33 @@ npm install -g @aicgen/aicgen
55
55
  npx @aicgen/aicgen init
56
56
  ```
57
57
 
58
+ ### From Homebrew (macOS)
59
+
60
+ ```bash
61
+ # Add the tap
62
+ brew tap aicgen/aicgen
63
+
64
+ # Install aicgen
65
+ brew install aicgen
66
+ ```
67
+
58
68
  ### From Binary (Standalone)
59
69
 
60
- Download the latest binary for your platform from the [releases page](https://github.com/aicgen/aicgen/releases):
70
+ Download the latest installer for your platform from the [releases page](https://github.com/aicgen/aicgen/releases):
61
71
 
62
- - **Windows**: `aicgen.exe`
63
- - **Linux**: `aicgen-linux`
64
- - **macOS**: `aicgen-macos`
72
+ - **Windows**: `aicgen-setup-x64.exe` installer
73
+ - **Linux (Debian/Ubuntu)**: `aicgen_amd64.deb`
74
+ - **Linux (Fedora/RHEL)**: `aicgen_x86_64.rpm`
65
75
 
66
76
  ```bash
67
- # Windows
68
- .\aicgen.exe init
77
+ # Windows - run the installer
78
+ aicgen-setup-x64.exe
79
+
80
+ # Linux (Debian/Ubuntu)
81
+ sudo dpkg -i aicgen_amd64.deb
82
+
83
+ # Linux (Fedora/RHEL)
84
+ sudo rpm -i aicgen_x86_64.rpm
69
85
  ```
70
86
 
71
87
  ### From Source
package/claude.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # my-project - Development Guidelines
2
2
 
3
- **Role:** You are an expert software engineer specialized in typescript.
3
+ **Role:** You are an expert software engineer specialized in typescript and event-driven architecture.
4
4
  **User's Goal:** Build high-quality, maintainable software following strict project guidelines.
5
5
 
6
6
  ## Guidelines