antigravity-ide 3.5.26 → 3.5.30
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/GEMINI.md +20 -0
- package/cli/create.js +32 -0
- package/package.json +2 -1
package/.agent/rules/GEMINI.md
CHANGED
|
@@ -143,6 +143,26 @@ When user's prompt is NOT in English:
|
|
|
143
143
|
2. What PRINCIPLES must I apply?
|
|
144
144
|
3. How does this DIFFER from generic output?
|
|
145
145
|
|
|
146
|
+
3. How does this DIFFER from generic output?
|
|
147
|
+
|
|
148
|
+
### 📚 Shared Standards (Auto-Active)
|
|
149
|
+
|
|
150
|
+
**The following 13 Shared Modules in `.agent/.shared` must be respected:**
|
|
151
|
+
|
|
152
|
+
1. `ai-master`
|
|
153
|
+
2. `api-standards`
|
|
154
|
+
3. `compliance`
|
|
155
|
+
4. `database-master`
|
|
156
|
+
5. `design-system`
|
|
157
|
+
6. `domain-blueprints`
|
|
158
|
+
7. `i18n-master`
|
|
159
|
+
8. `infra-blueprints`
|
|
160
|
+
9. `metrics`
|
|
161
|
+
10. `security-armor`
|
|
162
|
+
11. `testing-master`
|
|
163
|
+
12. `ui-ux-pro-max`
|
|
164
|
+
13. `vitals-templates`
|
|
165
|
+
|
|
146
166
|
---
|
|
147
167
|
|
|
148
168
|
## TIER 1: CODE RULES (When Writing Code)
|
package/cli/create.js
CHANGED
|
@@ -294,6 +294,22 @@ Please utilize the appropriate skills for **${industryFocus}**.
|
|
|
294
294
|
- Code analysis and refactoring
|
|
295
295
|
- Testing and debugging
|
|
296
296
|
|
|
297
|
+
## 📚 Shared Standards (Auto-Active)
|
|
298
|
+
The following **13 Shared Modules** in \`.agent/.shared\` must be respected:
|
|
299
|
+
1. **AI Master**: LLM patterns & RAG.
|
|
300
|
+
2. **API Standards**: OpenAPI & REST guidelines.
|
|
301
|
+
3. **Compliance**: GDPR/HIPAA protocols.
|
|
302
|
+
4. **Database Master**: Schema & Migration rules.
|
|
303
|
+
5. **Design System**: UI/UX patterns & tokens.
|
|
304
|
+
6. **Domain Blueprints**: Industry-specific architectures.
|
|
305
|
+
7. **I18n Master**: Localization standards.
|
|
306
|
+
8. **Infra Blueprints**: Terraform/Docker setups.
|
|
307
|
+
9. **Metrics**: Observability & Telemetry.
|
|
308
|
+
10. **Security Armor**: Hardening & Auditing.
|
|
309
|
+
11. **Testing Master**: TDD & E2E strategies.
|
|
310
|
+
12. **UI/UX Pro Max**: Advanced interactions.
|
|
311
|
+
13. **Vitals Templates**: Performance benchmarks.
|
|
312
|
+
|
|
297
313
|
## Custom Instructions
|
|
298
314
|
|
|
299
315
|
Add your project-specific instructions here.
|
|
@@ -331,6 +347,22 @@ Vui lòng sử dụng các kỹ năng phù hợp nhất cho **${industryFocus}**
|
|
|
331
347
|
- Phân tích và refactor code
|
|
332
348
|
- Kiểm thử và gỡ lỗi
|
|
333
349
|
|
|
350
|
+
## 📚 Tiêu chuẩn Dùng chung (Tự động Kích hoạt)
|
|
351
|
+
**13 Module Chia sẻ** sau trong \`.agent/.shared\` phải được tuân thủ:
|
|
352
|
+
1. **AI Master**: Mô hình LLM & RAG.
|
|
353
|
+
2. **API Standards**: Chuẩn OpenAPI & REST.
|
|
354
|
+
3. **Compliance**: Giao thức GDPR/HIPAA.
|
|
355
|
+
4. **Database Master**: Quy tắc Schema & Migration.
|
|
356
|
+
5. **Design System**: Pattern UI/UX & Tokens.
|
|
357
|
+
6. **Domain Blueprints**: Kiến trúc theo lĩnh vực.
|
|
358
|
+
7. **I18n Master**: Tiêu chuẩn Đa ngôn ngữ.
|
|
359
|
+
8. **Infra Blueprints**: Cấu hình Terraform/Docker.
|
|
360
|
+
9. **Metrics**: Giám sát & Telemetry.
|
|
361
|
+
10. **Security Armor**: Bảo mật & Audit.
|
|
362
|
+
11. **Testing Master**: Chiến lược TDD & E2E.
|
|
363
|
+
12. **UI/UX Pro Max**: Tương tác nâng cao.
|
|
364
|
+
13. **Vitals Templates**: Tiêu chuẩn Hiệu năng.
|
|
365
|
+
|
|
334
366
|
## Hướng dẫn tùy chỉnh
|
|
335
367
|
|
|
336
368
|
Thêm các hướng dẫn cụ thể cho dự án của bạn tại đây.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antigravity-ide",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.30",
|
|
4
4
|
"description": "The Ultimate AI Agent Brain - Rules, Skills, and Workflows",
|
|
5
5
|
"main": "cli/index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
],
|
|
15
15
|
"bin": {
|
|
16
16
|
"antigravity": "./cli/index.js",
|
|
17
|
+
"antigravity-ide": "./cli/index.js",
|
|
17
18
|
"antigravity-setup": "./setup.js",
|
|
18
19
|
"antigravity-update": "./update.js"
|
|
19
20
|
},
|