bmad-odoo 1.0.1 → 1.0.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +11 -5
package/CHANGELOG.md CHANGED
@@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.3] - 2026-01-02
9
+
10
+ ### Added
11
+ - Integration với `bmad-method@alpha install`
12
+ - Keyword `bmad-module` để auto-detect bởi bmad-method installer
13
+ - Field `bmad` metadata trong package.json cho installer display
14
+ - File `BMAD-METHOD-INTEGRATION.md` hướng dẫn integration
15
+
16
+ ### Changed
17
+ - README.md với comprehensive documentation (Troubleshooting + FAQ)
18
+ - Merge USAGE.md content vào README.md
19
+ - Xóa USAGE.md (consolidate vào README duy nhất)
20
+
21
+ ### Fixed
22
+ - Postinstall script đã được verify hoạt động tự động
23
+ - Auto-setup với default Antigravity IDE khi non-interactive
24
+
25
+ ## [1.0.2] - 2026-01-02
26
+
27
+ ### Added
28
+ - bmad-module keyword for installer detection
29
+ - bmad metadata field
30
+
8
31
  ## [1.0.0] - 2026-01-02
9
32
 
10
33
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-odoo",
3
- "version": "1.0.1",
3
+ "version": "1.0.4",
4
4
  "description": "BMAD Framework mở rộng cho phát triển Odoo ERP - 10 AI Agents, 44+ Workflows, hỗ trợ tiếng Việt",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -12,6 +12,7 @@
12
12
  },
13
13
  "keywords": [
14
14
  "bmad",
15
+ "bmad-module",
15
16
  "odoo",
16
17
  "erp",
17
18
  "ai-agents",
@@ -23,6 +24,14 @@
23
24
  "developer",
24
25
  "vietnamese"
25
26
  ],
27
+ "bmad": {
28
+ "type": "module",
29
+ "displayName": "BMAD-Odoo: Odoo ERP Development",
30
+ "shortName": "BMAD-Odoo",
31
+ "description": "10 AI Agents + 44 Workflows cho Odoo ERP",
32
+ "category": "development",
33
+ "language": "vietnamese"
34
+ },
26
35
  "author": "Dũng Xuân",
27
36
  "license": "MIT",
28
37
  "repository": {
@@ -44,8 +53,5 @@
44
53
  "README.md",
45
54
  "LICENSE",
46
55
  "CHANGELOG.md"
47
- ],
48
- "dependencies": {
49
- "bmad-odoo": "^1.0.0"
50
- }
56
+ ]
51
57
  }