ceobe-mastery-cli 1.0.0
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/dist/ai/executor.js +88 -0
- package/dist/ai/gateway.js +16 -0
- package/dist/ai/planner.js +221 -0
- package/dist/ai/tools/systemTools.js +136 -0
- package/dist/config/env.js +41 -0
- package/dist/index.js +168 -0
- package/dist/utils/contextLoader.js +133 -0
- package/docs/agent-persona.md +48 -0
- package/package.json +36 -0
- package/rules/coding-standards.md +38 -0
- package/rules/engineering-rules.md +214 -0
- package/skills/bun-developer/SKILL.md +6 -0
- package/skills/bun-developer/package-management.md +4 -0
- package/skills/bun-developer/runtime-features.md +4 -0
- package/skills/bun-developer/testing.md +3 -0
- package/skills/cost-reducer/SKILL.md +6 -0
- package/skills/cost-reducer/cloud-and-infra.md +4 -0
- package/skills/cost-reducer/code-level-savings.md +4 -0
- package/skills/cost-reducer/serverless-optimization.md +3 -0
- package/skills/cost-reducer/services-and-finops.md +3 -0
- package/skills/create-skill/SKILL.md +6 -0
- package/skills/create-skill/examples.md +2 -0
- package/skills/create-skill/reference.md +2 -0
- package/skills/customer-support/SKILL.md +6 -0
- package/skills/customer-support/escalation-guide.md +2 -0
- package/skills/customer-support/response-templates.md +4 -0
- package/skills/database-architect/SKILL.md +6 -0
- package/skills/database-architect/index-optimization.md +3 -0
- package/skills/database-architect/migration-best-practices.md +3 -0
- package/skills/database-architect/normalization-rules.md +3 -0
- package/skills/deployment-ops/SKILL.md +6 -0
- package/skills/deployment-ops/dockerfile-standards.md +3 -0
- package/skills/deployment-ops/github-actions-templates.md +3 -0
- package/skills/deployment-ops/monorepo-deployment.md +2 -0
- package/skills/frontend-design/SKILL.md +6 -0
- package/skills/frontend-design/component-patterns.md +3 -0
- package/skills/frontend-design/modern-aesthetics.md +5 -0
- package/skills/frontend-design/state-and-routing.md +3 -0
- package/skills/know-me/SKILL.md +6 -0
- package/skills/know-me/memory-operations.md +2 -0
- package/skills/know-me/what-to-track.md +6 -0
- package/skills/n8n/SKILL.md +6 -0
- package/skills/n8n/api-reference.md +2 -0
- package/skills/n8n/auth-nodes-reference.md +3 -0
- package/skills/n8n/custom-nodes-reference.md +3 -0
- package/skills/n8n/workflow-reference.md +3 -0
- package/skills/researcher/SKILL.md +6 -0
- package/skills/researcher/search-techniques.md +3 -0
- package/skills/researcher/synthesis-format.md +6 -0
- package/skills/scalability/SKILL.md +6 -0
- package/skills/scalability/api-and-services.md +3 -0
- package/skills/scalability/caching-and-queues.md +3 -0
- package/skills/scalability/database-scaling.md +4 -0
- package/skills/scalability/infrastructure.md +3 -0
- package/skills/scalability/state-management.md +2 -0
- package/skills/security/SKILL.md +6 -0
- package/skills/security/api-security.md +3 -0
- package/skills/security/auth-and-secrets.md +4 -0
- package/skills/security/database-and-deps.md +3 -0
- package/skills/security/web-security.md +3 -0
- package/skills/self-healing/SKILL.md +6 -0
- package/skills/self-healing/diagnostic-techniques.md +4 -0
- package/skills/self-healing/memory-management.md +2 -0
- package/skills/self-healing/pattern-recognition.md +5 -0
- package/skills/testing-engineer/SKILL.md +6 -0
- package/skills/testing-engineer/e2e-playwright.md +3 -0
- package/skills/testing-engineer/mocking-strategies.md +3 -0
- package/skills/testing-engineer/unit-testing-vitest.md +3 -0
- package/skills/trigger-dev/SKILL.md +6 -0
- package/skills/trigger-dev/advanced-reference.md +3 -0
- package/skills/trigger-dev/config-reference.md +2 -0
- package/skills/trigger-dev/core-reference.md +2 -0
- package/templates/api-template.md +82 -0
- package/templates/architecture-template.md +63 -0
- package/templates/brd-template.md +78 -0
- package/templates/tasks-template.md +47 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: researcher
|
|
3
|
+
description: Methods for searching, verifying, and synthesizing technical documentation.
|
|
4
|
+
---
|
|
5
|
+
# RESEARCHER SKILL
|
|
6
|
+
You are a senior analyst. Read documentation thoroughly before writing code for an unknown or updated library. Output dense, factual summaries.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: scalability
|
|
3
|
+
description: Principles for designing systems capable of handling 10x to 1000x traffic spikes.
|
|
4
|
+
---
|
|
5
|
+
# SCALABILITY SKILL
|
|
6
|
+
Design systems anticipating failure. Assume servers will die, DBs will lock, and traffic will spike. Build distributed, stateless applications.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
# DATABASE SCALING
|
|
2
|
+
1. **Indexes:** Every query MUST hit an index. Avoid full table scans.
|
|
3
|
+
2. **Read Replicas:** Route heavy GET requests to read-only replicas to free up the primary writer node.
|
|
4
|
+
3. **Connection Pooling:** Always use a connection pool (e.g., PgBouncer). Never open a new DB connection per request.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: testing-engineer
|
|
3
|
+
description: Best practices for writing robust, deterministic Unit, Integration, and E2E tests.
|
|
4
|
+
---
|
|
5
|
+
# TESTING ENGINEER SKILL
|
|
6
|
+
You break code before it reaches production. Write tests that run fast, never flake, and provide absolute confidence.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# MOCKING STRATEGIES
|
|
2
|
+
1. **External APIs:** NEVER call third-party APIs (Stripe, Twilio) in tests. Use MSW (Mock Service Worker) or Jest/Vitest spy functions to intercept and return fake responses.
|
|
3
|
+
2. **Time Dependency:** If a function depends on `Date.now()`, mock the system time so assertions don't fail intermittently.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# UNIT TESTING (VITEST)
|
|
2
|
+
1. **Isolation:** Functions must be tested in pure isolation. Do not connect to real databases in unit tests.
|
|
3
|
+
2. **Edge Cases:** Always write test assertions for the "Sad Path" (null values, empty arrays, invalid arguments). Do not just test the "Happy Path".
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# TRIGGER.DEV ADVANCED
|
|
2
|
+
1. **Idempotency:** Background jobs retry on failure. Ensure your database queries and logic inside `trigger.dev` tasks are idempotent (running them twice doesn't duplicate data).
|
|
3
|
+
2. **Resumes:** Use `wait` functionalities to pause execution without taking up compute execution limits.
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# API Specification Documentation
|
|
2
|
+
**Project:** [Nama Project]
|
|
3
|
+
**Base URL:** `https://api.domain.com/v1`
|
|
4
|
+
**Auth Method:** [e.g., Bearer Token / JWT]
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 1. Global Standards
|
|
9
|
+
### 1.1 Standard Headers
|
|
10
|
+
- `Content-Type: application/json`
|
|
11
|
+
- `Authorization: Bearer <token>`
|
|
12
|
+
- `X-Request-ID: <uuid>` (Untuk traceability/logging)
|
|
13
|
+
|
|
14
|
+
### 1.2 Common Query Parameters (List Endpoints)
|
|
15
|
+
- `page`: Page number (default: 1)
|
|
16
|
+
- `limit`: Items per page (default: 10, max: 100)
|
|
17
|
+
- `sort`: Field name (prefix `-` for descending, e.g., `-created_at`)
|
|
18
|
+
- `search`: Keyword for global search
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## 2. Endpoints
|
|
23
|
+
|
|
24
|
+
### 2.1 [Resource Name] - [Action]
|
|
25
|
+
**Endpoint:** `METHOD /path`
|
|
26
|
+
**Description:** Apa yang dilakukan endpoint ini.
|
|
27
|
+
|
|
28
|
+
**Request:**
|
|
29
|
+
- **Headers:** [Custom headers if any]
|
|
30
|
+
- **Body (JSON):**
|
|
31
|
+
| Field | Type | Required | Description |
|
|
32
|
+
| :--- | :--- | :--- | :--- |
|
|
33
|
+
| `username` | String | Yes | Unique identifier |
|
|
34
|
+
| `email` | String (Email) | Yes | Valid email format |
|
|
35
|
+
|
|
36
|
+
**Response:**
|
|
37
|
+
- **Success (200 OK / 201 Created):**
|
|
38
|
+
```json
|
|
39
|
+
{
|
|
40
|
+
"success": true,
|
|
41
|
+
"data": {
|
|
42
|
+
"id": "uuid",
|
|
43
|
+
"created_at": "timestamp"
|
|
44
|
+
},
|
|
45
|
+
"message": "Resource created successfully"
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
- **Success - List/Pagination (200 OK):**
|
|
50
|
+
```json
|
|
51
|
+
{
|
|
52
|
+
"success": true,
|
|
53
|
+
"data": [
|
|
54
|
+
{
|
|
55
|
+
"id": "uuid",
|
|
56
|
+
"created_at": "timestamp"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"meta": {
|
|
60
|
+
"total_items": 100,
|
|
61
|
+
"total_pages": 10,
|
|
62
|
+
"current_page": 1,
|
|
63
|
+
"limit": 10
|
|
64
|
+
},
|
|
65
|
+
"message": "Resource list retrieved successfully"
|
|
66
|
+
}
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
- **Error (400 / 401 / 404 / 422 / 500):**
|
|
70
|
+
```json
|
|
71
|
+
{
|
|
72
|
+
"success": false,
|
|
73
|
+
"error_code": "VALIDATION_ERROR",
|
|
74
|
+
"message": "Invalid input data",
|
|
75
|
+
"details": [
|
|
76
|
+
{
|
|
77
|
+
"field": "email",
|
|
78
|
+
"issue": "Format email tidak valid"
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
```
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# System Architecture Documentation
|
|
2
|
+
**Project Name:** [Nama Sistem]
|
|
3
|
+
**Architecture Style:** [e.g., Microservices / Monolithic / Event-Driven]
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. Overview & Architectural Pattern
|
|
8
|
+
* **High-Level Summary:** Gambaran umum bagaimana sistem bekerja secara holistik.
|
|
9
|
+
* **Core Pattern:** [e.g., Clean Architecture / Hexagonal / Layered]. Jelaskan alasan pemilihan pola ini untuk menghindari *technical debt*.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## 2. Technology Stack & Environment
|
|
14
|
+
| Layer | Technology | Version |
|
|
15
|
+
| :--- | :--- | :--- |
|
|
16
|
+
| **Frontend** | [React / Next.js / etc] | [Ver] |
|
|
17
|
+
| **Backend** | [Go / Node.js / Python] | [Ver] |
|
|
18
|
+
| **Database** | [PostgreSQL / MongoDB] | [Ver] |
|
|
19
|
+
| **Cache/Queue** | [Redis / RabbitMQ] | [Ver] |
|
|
20
|
+
| **Infrastructure** | [Docker / K8s / AWS] | [-] |
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 3. System Components & Responsibility
|
|
25
|
+
Detailkan peran setiap modul agar tidak terjadi *overlapping* tanggung jawab (SRP).
|
|
26
|
+
* **Component A (e.g., Auth Service):** Mengelola session dan JWT.
|
|
27
|
+
* **Component B (e.g., Worker Node):** Memproses *background jobs* secara asinkron.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## 4. Communication & Data Flow
|
|
32
|
+
* **API Strategy:** [RESTful / GraphQL / gRPC].
|
|
33
|
+
* **Flow Diagram:** * [User] -> [Load Balancer] -> [API Gateway] -> [Service] -> [Database].
|
|
34
|
+
* **Event Flow:** Jelaskan jika ada *Pub/Sub mechanism*.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## 5. Persistence & Storage Strategy
|
|
39
|
+
* **Primary DB:** Skema dan alasan penggunaan.
|
|
40
|
+
* **Caching Layer:** Strategi *in-memory data* (misal: Redis untuk session).
|
|
41
|
+
* **File Storage:** Penanganan asset (misal: Local storage via Docker volume atau S3).
|
|
42
|
+
* **Data Retention & Archiving:** Kebijakan pembersihan/pengarsipan data (contoh: *Soft delete* setelah 1 tahun dipindah ke *cold storage* DB untuk mencegah bloating).
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## 6. Security & Compliance Strategy
|
|
47
|
+
* **Authentication:** [JWT / OAuth2 / Session-based].
|
|
48
|
+
* **Authorization:** [RBAC / ABAC].
|
|
49
|
+
* **Data Protection:** Strategi enkripsi *at rest* dan *in transit*.
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## 7. Infrastructure & Observability (DevOps)
|
|
54
|
+
* **Deployment:** [Docker Compose / Helm Charts].
|
|
55
|
+
* **CI/CD Pipeline:** [GitHub Actions / Jenkins].
|
|
56
|
+
* **Monitoring:** [Prometheus / Sentry / CloudWatch].
|
|
57
|
+
* **Logging & Tracing:** Implementasi `X-Request-ID` / *Correlation ID* lintas layanan terdistribusi. Wajib menggunakan format JSON (misal JSON Log via Elasticsearch/Datadog).
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## 8. Key Design Decisions (ADR)
|
|
62
|
+
Dokumentasikan keputusan besar di sini agar tim tidak mempertanyakan ulang di masa depan.
|
|
63
|
+
* **Decision 1:** "Kenapa pakai PostgreSQL dibanding NoSQL?" -> [Alasannya].
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# Business Requirement Document (BRD)
|
|
2
|
+
**Project Name:** [Nama Sistem/Aplikasi]
|
|
3
|
+
**Version:** 1.0
|
|
4
|
+
**Status:** Draft / Approved
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 1. Executive Summary & Objective
|
|
9
|
+
* **Problem Statement:** Jelaskan masalah spesifik yang ingin diselesaikan. Jangan cuma permukaan, gali sampai ke *pain point* utamanya.
|
|
10
|
+
* **Primary Objective:** Apa gol utama yang ingin dicapai? (Misal: Automasi sistem approval, mengurangi latency data, dll).
|
|
11
|
+
* **Out of Scope:** Sebutkan apa yang **TIDAK** akan dibuat di fase ini untuk menghindari *scope creep*.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## 2. Target Users & Stakeholders
|
|
16
|
+
Gunakan tabel agar AI divisi coding paham hak akses (RBAC) sejak awal:
|
|
17
|
+
|
|
18
|
+
| User Role | Responsibilities / Goals | Permissions Level |
|
|
19
|
+
| :--- | :--- | :--- |
|
|
20
|
+
| [Admin] | [Manage users & system config] | [Superuser] |
|
|
21
|
+
| [Customer] | [Purchase & track orders] | [Limited Access] |
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 3. Core Features & Business Rules
|
|
26
|
+
Bagian paling krusial. Jangan cuma list fitur, tapi masukkan logika bisnisnya.
|
|
27
|
+
|
|
28
|
+
### 3.1 [Feature Name 1]
|
|
29
|
+
* **Description:** Penjelasan singkat fitur.
|
|
30
|
+
* **Business Rules:**
|
|
31
|
+
* [Rule 1: Misal, "User harus verifikasi email sebelum bisa transaksi"].
|
|
32
|
+
* [Rule 2: Misal, "Data transaksi tidak boleh dihapus, gunakan status 'soft-delete'"].
|
|
33
|
+
* **Acceptance Criteria (Definition of Done):**
|
|
34
|
+
* [Kriteria 1: User bisa melihat riwayat transaksi dalam < 2 detik].
|
|
35
|
+
* **Edge Cases & Negative Flow:**
|
|
36
|
+
* [Skenario Gagal: Jika *payment gateway timeout*, tandai status 'Pending' dan berikan auto-retry 3x].
|
|
37
|
+
* [Fallback: Jika sistem X mati, tampilkan pesan Y alih-alih layar *crash*].
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 4. External Integrations
|
|
42
|
+
List semua layanan pihak ketiga yang akan "berbicara" dengan sistem kita.
|
|
43
|
+
* **Authentication:** [Auth0 / Firebase / Custom JWT]
|
|
44
|
+
* **Payments:** [Stripe / Midtrans / Xendit]
|
|
45
|
+
* **Storage:** [AWS S3 / Google Cloud Storage]
|
|
46
|
+
* **Notifications:** [Twilio / SendGrid / Firebase Cloud Messaging]
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## 5. Non-Functional Requirements (NFR)
|
|
51
|
+
Standar kualitas untuk menjaga *clean architecture*.
|
|
52
|
+
* **Performance:** [Misal: Max API response time 300ms].
|
|
53
|
+
* **Security:** [Misal: Data enkripsi AES-256, Audit logs untuk setiap mutasi data].
|
|
54
|
+
* **Scalability:** [Misal: Harus sanggup handle 5000 concurrent users].
|
|
55
|
+
* **Availability:** [Misal: Uptime 99.9%].
|
|
56
|
+
* **Data Compliance & Privacy:** [Misal: Sesuai UU PDP / GDPR untuk penanganan PII - *Personally Identifiable Information*].
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## 6. Critical User Journeys (CUJ)
|
|
61
|
+
Tuliskan 3-5 alur utama agar AI paham bagaimana fitur-fitur ini saling terhubung.
|
|
62
|
+
1. **Journey 1 (Registration):** User Input -> Email Verification -> Profile Setup -> Success.
|
|
63
|
+
2. **Journey 2 (Transaction):** Browse -> Add to Cart -> Checkout -> Payment Webhook -> Order Confirmed.
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## 7. Technical Constraints & Assumptions
|
|
68
|
+
* **Constraints:**
|
|
69
|
+
* [Database: Harus PostgreSQL].
|
|
70
|
+
* [Infrastructure: Harus Dockerized].
|
|
71
|
+
* **Assumptions:**
|
|
72
|
+
* [Misal: User dianggap selalu memiliki koneksi internet stabil saat akses fitur X].
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## 8. Handover & Coding Division Notes
|
|
77
|
+
* **Tech Stack Reference:** (Akan diisi pada Tahap 2: Tech Stack Selection).
|
|
78
|
+
* **Standardization:** (Akan diisi pada Tahap 3: The Rulebook).
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Project Task Roadmap
|
|
2
|
+
**Project:** [Nama Project]
|
|
3
|
+
**Architect in Charge:** [Nama/AI Architect]
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Phase 1: Foundation & Standard Setup
|
|
8
|
+
Fokus pada pembangunan "pondasi" sesuai workflow tahap 1-3.
|
|
9
|
+
- [ ] **Initialize Project Structure:** Setup folder sesuai Clean Architecture (e.g., /internal, /pkg, /cmd).
|
|
10
|
+
- [ ] **Enforce The Rulebook:** Configure Linter, Formatter (Prettier/ESLint/GoFmt), dan Git Hooks (Husky).
|
|
11
|
+
- [ ] **Environment Configuration:** Setup `.env.example` dan validator environment variables.
|
|
12
|
+
- [ ] **Dockerization:** Create `Dockerfile` dan `docker-compose.yaml` untuk lokal development.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Phase 2: Core Infrastructure & Persistence
|
|
17
|
+
Membangun jalur komunikasi dan penyimpanan data.
|
|
18
|
+
- [ ] **Database Migration System:** Setup tool migrasi (e.g., Flyway/Liquibase/Gorm Migrations).
|
|
19
|
+
- [ ] **Base API & Middleware:** Setup Global Error Handling, Logging middleware (Zap/Winston), dan CORS.
|
|
20
|
+
- [ ] **Authentication Layer:** Implementasi Core Auth logic (Login, Register, Token Validation).
|
|
21
|
+
- [ ] **API Documentation:** Setup Swagger/OpenAPI UI yang terupdate otomatis.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Phase 3: Modular Feature Development
|
|
26
|
+
(Ulangi blok ini untuk setiap fitur utama)
|
|
27
|
+
### Feature: [Nama Fitur]
|
|
28
|
+
- [ ] **Define Contract/Interface:** Definisikan *Interface* Port/Repository (programming to an interface).
|
|
29
|
+
- [ ] **Database Schema:** Implementasi tabel sesuai Tahap 4 (Database Design).
|
|
30
|
+
- [ ] **Domain Logic:** Menulis Business Logic di layer Service/Usecase (tanpa dependensi luar).
|
|
31
|
+
- [ ] **Repository Layer:** Implementasi Data Access Object (DAO) atau Repository sesuai kontrak *Interface*.
|
|
32
|
+
- [ ] **Delivery Layer:** Setup Controller/Handler dan Request Validation (DTO).
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Phase 4: Quality Assurance & Observability
|
|
37
|
+
- [ ] **Unit Testing:** Mencapai coverage minimal X% pada layer Business Logic.
|
|
38
|
+
- [ ] **Integration Testing:** Memastikan flow API -> DB berjalan lancar.
|
|
39
|
+
- [ ] **Load & Stress Testing:** Uji beban untuk *critical-path API* (misal via k6 / JMeter).
|
|
40
|
+
- [ ] **Observability Setup:** Konfigurasi Health Check endpoints dan Monitoring (Sentry/Prometheus).
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Phase 5: Production Readiness & Handover
|
|
45
|
+
- [ ] **Performance Tuning:** Review indexing database dan caching strategy (Redis).
|
|
46
|
+
- [ ] **Production Config:** Setup SSL, Rate Limiting, dan Security Headers.
|
|
47
|
+
- [ ] **Handover Documentation:** Finalisasi file `handover-document.md` untuk maintenance.
|