Our review
Generates new code files for a new module in the 9Trip ERP system, following strict rules on schema validation, data access via DBManager, and state management.
Strengths
- Ensures adherence to single source of truth via DB_SCHEMA
- Enforces proper data access through DBManager preventing direct Firestore calls
- Promotes consistency by using schema-defined naming and initial values
- Reduces errors with client-side sorting and history tracking considerations
Limitations
- Requires deep familiarity with the custom 9Trip ERP framework and DBManager API
- Not applicable outside the specific ERP system context
- May generate boilerplate that needs manual adjustment for unique business logic
Use when starting a new module or adding new CRUD operations to an existing module within the 9Trip ERP system.
Do not use for general code generation or projects not based on the 9Trip ERP architecture.
Security analysis
SafeThe skill provides coding guidelines for data access and persistence within a specific ERP system. It does not instruct any destructive actions, data exfiltration, or execution of arbitrary commands; it is limited to internal implementation patterns.
No concerns found
Examples
Create a new module for managing suppliers in the 9Trip ERP system. Follow the new module creation rules: use DB_SCHEMA for field definitions, access data only through DBManager, and ensure snake_case variable names.Generate the necessary files for a new 'products' module in the 9Trip ERP. Include schema validation from DB_SCHEMA, data persistence via DBManager saveRecord and deleteRecord, and proper state management with IndexedDB cache priority.I need to create a new 'orders' module in our 9Trip ERP. Please generate the code skeleton including the DB_SCHEMA entries, the CRUD functions using A.DB, and the UI form generation based on schema metadata. Remember to use snake_case and initial values.name: new description: Khi xây dựng module mới và cần tạo các file code mới. modeSlugs:
- code
- architect
New
Instructions
Bạn phải tuân thủ nghiêm ngặt các quy tắc dưới đây khi tương tác với dữ liệu của 9Trip ERP:
1. SINGLE SOURCE OF TRUTH (DBSchema.js)
- Validation: Trước khi viết hàm lưu dữ liệu, phải đối chiếu với
DB_SCHEMA. Ví dụ: Booking ID phải khớp pattern^BK\d{4,}$. - UI Generation: Luôn sử dụng metadata từ schema (displayName, type, placeholder) để render form. Không tự ý hard-code nhãn hoặc kiểu input.
- Initial Values: Khi tạo object mới, phải lấy giá trị từ trường
initialtrong schema (ví dụ:initial: 'today'hoặcinitial: 1).
2. DATA ACCESS & PERSISTENCE (DBManager.js)
- Single Point of Write: TUYỆT ĐỐI KHÔNG dùng trực tiếp
db.collection().add()hayset(). Mọi thao tác ghi/xóa phải đi qua hàmfirestoreCRUD(collection, action, id, data)của module DBManager bằng cách gọi qua global object của DBManager là A.DB (ví dụ gọi A.DB.tên hàm như saveRecord, batchSave, deleteRecord, getCollection...). - Client-Side Sorting: Khi lấy dữ liệu, KHÔNG dùng
orderBycủa Firestore vì sẽ bị mất document thiếu field. Luôn đểDBManagerxử lýpostSortsau khi hydrate dữ liệu. - History Tracking: Lưu ý rằng các collection
bookings,booking_details,transactionsđã được cấu hình tự động ghi History. Khi cập nhật các bảng này, hệ thống sẽ tự động ghi vết vàobookings.history. - Indexing: Sử dụng
INDEX_CONFIGtrong DBManager để truy cập nhanh các dữ liệu nhóm (ví dụ: lấy tất cảbooking_detailstheobooking_id).
3. STATE & CACHE MANAGEMENT
- Cache Priority: Hiểu rằng
DBManagerưu tiên IndexedDB (72h). Nếu cần dữ liệu mới nhất ngay lập tức, phải sử dụng cơ chếsyncDeltahoặcloadCollectionsvới tham sốforceNew = true. - Variable Consistency: Luôn giữ đúng tên biến snake_case như định nghĩa trong Schema (ví dụ:
customer_full_name, không được đổi thànhcustomerFullName).
4. CRITICAL LOGIC
- Khi thực hiện CRUD, luôn bọc trong
try-catchvà sử dụnglog()của hệ thống để theo dõi. - Nếu chỉnh sửa liên quan đến tiền tệ, phải dùng hàm format từ
utils.jsphối hợp với trườngtotal_amounttrong Schema.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.