ai-developer-skill-os 2.0.1 → 3.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.
@@ -1,33 +1,43 @@
1
- ---
2
- name: qk-project-bootstrap
3
- purpose: Khởi tạo hệ thống, setup dự án chuẩn từ con số 0.
4
- mode_supported: [enterprise]
5
- input: [Project specs]
6
- output: [Scaffolded project]
7
- workflow: [1. Setup Folder -> 2. Config Lint/Format -> 3. Setup UI/API/Test]
8
- allowed_tools: [run_command, write_to_file]
9
- handoff_to: [none]
10
- ---
11
-
12
- # 🛠️ qk-project-bootstrap - Quy Trình Vận Hành Chuẩn (SOP)
13
-
14
- > **Mô tả:** Khởi tạo hệ thống, setup dự án chuẩn từ con số 0.
15
-
16
- ## 🎯 1. Mục Tiêu (Goal)
17
- - Hoàn thành thành công tác vụ được giao liên quan đến nhiệm vụ của skill.
18
- - Đảm bảo chất lượng mã nguồn và tính nhất quán của hệ thống.
19
-
20
- ## 🔄 2. Chuỗi Hành Động (Chain of Thought / SOP)
21
- *(Bắt buộc AI phải suy nghĩ và làm theo đúng thứ tự)*
22
- 1. **Phân tích (Analyze):** Thu thập ngữ cảnh và hiểu rõ yêu cầu đầu vào.
23
- 2. **Lên kế hoạch (Plan):** Xác định các bước cần thay đổi/tạo mới dựa trên bộ luật (rules).
24
- 3. **Thực thi (Execute):** Tiến hành sửa đổi mã nguồn hoặc tạo tài liệu.
25
- 4. **Xác thực (Verify):** Đảm bảo đầu ra đáp ứng đúng yêu cầu và không vi phạm quy định.
26
-
27
- ## 🛡️ 3. Ràng Buộc & Quy Tắc (Constraints)
28
- - CẤM bỏ qua việc kiểm tra `qk-engineering-standard` trước khi viết code.
29
- - Mọi quyết định kỹ thuật phải dựa trên nội dung tại phần Deep Knowledge (nếu có).
30
-
31
- ## 🤝 4. Giao Thức Bàn Giao (Handoff Protocol)
32
- - Đích đến: `none`
33
- - Nội dung bàn giao: Chuyển toàn bộ ngữ cảnh kết quả đã thực thi cho bước tiếp theo.
1
+ ---
2
+ name: qk-project-bootstrap
3
+ version: 3.0.0
4
+ updated: 2026-07-02
5
+ description: Initialize a new project with best practices, linters, and folder structures.
6
+ category: setup
7
+ priority: high
8
+ tags: [bootstrap, scaffolding, setup, init]
9
+ platforms: [claude-code, cursor, windsurf, gemini-cli]
10
+ trigger: User asks to start a new project, create a new repo, or setup standard configurations.
11
+ inputs: [Stack selection, Project Name]
12
+ outputs: [Scaffolded Codebase, Configs]
13
+ allowed_tools: [run_command, write_to_file]
14
+ pipeline: [analyze, implement, engineering-standard, validate, complete]
15
+ ---
16
+
17
+ # 🛠️ qk-project-bootstrap - Standard Operating Procedure
18
+
19
+ > **Goal:** "Thợ xây móng". Khởi tạo một dự án mới hoàn toàn với các cấu hình chuẩn mực nhất từ Day 1.
20
+
21
+ ## 🔄 1. Chain of Thought (SOP)
22
+ 1. **Analyze (Requirements):**
23
+ - Ask the user for their preferred stack (e.g., Next.js, Vite, NestJS).
24
+ 2. **Implement (Scaffolding):**
25
+ - Run the initialization command (e.g., `npx create-next-app@latest`).
26
+ - Overwrite `.eslintrc`, `prettierrc`, `tsconfig.json` with strict rules.
27
+ - Scaffold the architecture (e.g., create `src/features/`, `src/components/shared/`).
28
+ 3. **Verify (Validation):**
29
+ - Run `npm run dev` in a short background task to ensure it doesn't crash.
30
+
31
+ ## 🛡️ 2. Constraints & Rules
32
+ - **Strict Mode:** Always enable `strict: true` in TypeScript configurations.
33
+ - **Package Manager Check:** If the user uses `pnpm`, do NOT run `npm install`. Stick to one package manager.
34
+
35
+ ## 🤝 3. Handoff Pipeline
36
+ 1. `engineering-standard`: Verify the generated folder structure.
37
+ 2. `complete`: Output the Bootstrap Report.
38
+
39
+ ## 📝 4. Output Format
40
+ Vui lòng trả kết quả bằng Tiếng Việt.
41
+ - **Tóm tắt (Summary):** Dự án đã được khởi tạo với Stack nào.
42
+ - **Chi tiết (Changes):** Cấu trúc thư mục mới và các file cấu hình.
43
+ - **Xác thực (Verification):** Cách chạy dự án.