@relipa/ai-flow-kit 0.0.2 → 0.0.3-beta.3
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 +6 -0
- package/CONTRIBUTING.md +37 -0
- package/package.json +3 -10
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,12 @@ 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
|
+
|
|
16
22
|
## [0.0.2] - 2026-04-13
|
|
17
23
|
### Changed
|
|
18
24
|
- Updated package to scoped name `@relipa/ai-flow-kit` in documentation and configuration.
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@relipa/ai-flow-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3-beta.3",
|
|
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",
|