@relipa/ai-flow-kit 0.0.1 → 0.0.3-beta.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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to **ai-flow-kit** will be documented in this file.
3
+ All notable changes to **@relipa/ai-flow-kit** will be documented in this file.
4
4
 
5
5
  Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
6
  Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
@@ -13,6 +13,17 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
13
13
 
14
14
  ---
15
15
 
16
+ ## [0.0.3-beta.0] - 2026-04-13
17
+ ### Security
18
+ - Removed internal GitLab repository links and tracking information.
19
+ - Cleaned `.npmrc` configuration.
20
+ - Added helper scripts for beta and stable releases.
21
+
22
+ ## [0.0.2] - 2026-04-13
23
+ ### Changed
24
+ - Updated package to scoped name `@relipa/ai-flow-kit` in documentation and configuration.
25
+ - Fixed installation guides in README and QUICK_START.
26
+
16
27
  ## [0.0.1] - 2026-04-13 — Initial Release
17
28
 
18
29
  ### Added
@@ -66,7 +77,7 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66
77
  ## How to upgrade
67
78
 
68
79
  ```bash
69
- npm install -g ai-flow-kit@latest
80
+ npm install -g @relipa/ai-flow-kit@latest
70
81
  aiflow --version
71
82
  ```
72
83
 
package/CONTRIBUTING.md CHANGED
@@ -346,6 +346,43 @@ A: See Best Practices section above. Also ask team members to try it.
346
346
  - 💬 Ask in [Discussions](./discussions)
347
347
  - 🔍 Look at existing examples in `custom/`
348
348
 
349
+ ## 📦 Release Management
350
+
351
+ We use NPM tags to manage beta and stable releases.
352
+
353
+ ### 1. Beta Releases (Testing)
354
+
355
+ For new features or bug fixes that need testing before official release:
356
+
357
+ 1. **Bump version** to a beta tag:
358
+ ```bash
359
+ # First beta
360
+ npm version 0.0.3-beta.0
361
+ # Subsequent betas
362
+ npm version prerelease
363
+ ```
364
+ 2. **Publish** to the `beta` tag:
365
+ ```bash
366
+ npm run publish:beta
367
+ ```
368
+ 3. **Test** the beta version:
369
+ ```bash
370
+ npm install -g @relipa/ai-flow-kit@beta
371
+ ```
372
+
373
+ ### 2. Stable Releases (Official)
374
+
375
+ Once the beta is verified:
376
+
377
+ 1. **Bump version** to the stable version:
378
+ ```bash
379
+ npm version 0.0.3
380
+ ```
381
+ 2. **Publish** to the `latest` tag:
382
+ ```bash
383
+ npm run publish:stable
384
+ ```
385
+
349
386
  ---
350
387
 
351
388
  **Help us build better AI development workflows!** 🚀
package/QUICK_START.md CHANGED
@@ -7,7 +7,7 @@
7
7
  ## Installation
8
8
 
9
9
  ```bash
10
- npm install -g ai-flow-kit
10
+ npm install -g @relipa/ai-flow-kit
11
11
  aiflow --version
12
12
  ```
13
13
 
@@ -359,7 +359,7 @@ aiflow guide
359
359
 
360
360
  **`aiflow` not found:**
361
361
  ```bash
362
- npm install -g ai-flow-kit
362
+ npm install -g @relipa/ai-flow-kit
363
363
  ```
364
364
 
365
365
  **Incorrect credentials:**
package/README.md CHANGED
@@ -24,7 +24,7 @@ Developers only need a single command to load ticket context → AI automaticall
24
24
  ```
25
25
  ┌─────────────────────────────────────────────────────────────────┐
26
26
  │ TECH LEAD │
27
- │ npm publish ai-flow-kit → developer: npm install -g │
27
+ │ npm publish @relipa/ai-flow-kit → developer: npm install -g │
28
28
  └─────────────────────────────────┬───────────────────────────────┘
29
29
 
30
30
  ┌─────────────▼─────────────┐
@@ -91,7 +91,7 @@ Developers only need a single command to load ticket context → AI automaticall
91
91
  ## Installation
92
92
 
93
93
  ```bash
94
- npm install -g ai-flow-kit
94
+ npm install -g @relipa/ai-flow-kit
95
95
  ```
96
96
 
97
97
  ---
@@ -304,7 +304,7 @@ Then run `aiflow update` to apply.
304
304
 
305
305
  **`aiflow` not found:**
306
306
  ```bash
307
- npm install -g ai-flow-kit
307
+ npm install -g @relipa/ai-flow-kit
308
308
  ```
309
309
 
310
310
  **Backlog load fails:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relipa/ai-flow-kit",
3
- "version": "0.0.1",
3
+ "version": "0.0.3-beta.0",
4
4
  "description": "All-in-one AI Flow Kit for team development with Claude AI - skills, templates, and MCP adapters",
5
5
  "author": "Relipa AI Team",
6
6
  "publishConfig": {
@@ -38,14 +38,6 @@
38
38
  "team",
39
39
  "productivity"
40
40
  ],
41
- "repository": {
42
- "type": "git",
43
- "url": "https://gitlab.relipa.vn/ai/ai-flow-kit"
44
- },
45
- "bugs": {
46
- "url": "https://gitlab.relipa.vn/ai/ai-flow-kit/-/issues"
47
- },
48
- "homepage": "https://gitlab.relipa.vn/ai/ai-flow-kit",
49
41
  "engines": {
50
42
  "node": ">=14.0.0",
51
43
  "npm": ">=6.0.0"
@@ -55,7 +47,8 @@
55
47
  "test": "echo \"Add tests in future\" && exit 0",
56
48
  "lint": "echo \"Add linting in future\" && exit 0",
57
49
  "docs": "echo \"Documentation available in ./docs\"",
58
- "publish": "npm publish"
50
+ "publish:beta": "npm publish --tag beta",
51
+ "publish:stable": "npm publish"
59
52
  },
60
53
  "dependencies": {
61
54
  "@inquirer/prompts": "^8.3.2",