New Module Creation

VerifiedSafe

For creating a new module in the 9Trip ERP, this skill guides code file generation while strictly adhering to the database schema (DBSchema.js) and data access rules via DBManager. Helpful when implementing a new entity that requires compliant persistence and user interface following project best practices.

Sby Skills Guide Bot
DevelopmentIntermediate
906/2/2026
Claude Code
#erp-development#module-creation#code-generation#database-schema

Recommended for

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
When to use it

Use when starting a new module or adding new CRUD operations to an existing module within the 9Trip ERP system.

When not to use it

Do not use for general code generation or projects not based on the 9Trip ERP architecture.

Security analysis

Safe
Quality score75/100

The 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 supplier module
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.
Add CRUD for products
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.
Initialize module with sample code
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 initial trong schema (ví dụ: initial: 'today' hoặc initial: 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() hay set(). Mọi thao tác ghi/xóa phải đi qua hàm firestoreCRUD(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 orderBy của Firestore vì sẽ bị mất document thiếu field. Luôn để DBManager xử lý postSort sau 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ào bookings.history.
  • Indexing: Sử dụng INDEX_CONFIG trong DBManager để truy cập nhanh các dữ liệu nhóm (ví dụ: lấy tất cả booking_details theo booking_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ế syncDelta hoặc loadCollections vớ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ành customerFullName).

4. CRITICAL LOGIC

  • Khi thực hiện CRUD, luôn bọc trong try-catch và sử dụng log() 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.js phối hợp với trường total_amount trong Schema.
Related skills