vibepro 0.1.0-alpha.0 → 0.1.0-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.
Files changed (3) hide show
  1. package/README.ja.md +10 -14
  2. package/README.md +10 -14
  3. package/package.json +1 -1
package/README.ja.md CHANGED
@@ -50,30 +50,26 @@ Story と Architecture が確定できれば、実装は AI エージェント
50
50
 
51
51
  VibePro は Node.js 20 以上が必要です。
52
52
 
53
- VibePro は現在 alpha OSS 公開候補です。まだ public npm registry に存在しない場合、`npm install -D vibepro``pnpm add -D vibepro` を実行しても npm からは解決できません。
53
+ VibePro は現在 early beta OSS リリースです。安定版 1.0 公開前に CLI、report schema、diagnosis pack は変わる可能性があるため、明示的に `beta` dist-tag を指定してください。
54
54
 
55
- 利用方法は次のどれかです。
55
+ global install せずに試す場合:
56
56
 
57
57
  ```bash
58
- # このリポジトリをcloneしてローカルから使う
59
- cd /path/to/vibepro
60
- npm install
61
- node bin/vibepro.js --help
62
-
63
- # npm公開前にGitHubからinstallする
64
- npm install -g git+https://github.com/Unson-LLC/vibepro.git
65
- vibepro --help
58
+ npx vibepro@beta --help
66
59
  ```
67
60
 
68
- npm公開後は次の形で使えます。
61
+ beta CLI を global install する場合:
69
62
 
70
63
  ```bash
71
- npx vibepro --help
64
+ npm install -g vibepro@beta
65
+ vibepro --help
72
66
  ```
73
67
 
74
- VibePro本体を開発する場合:
68
+ VibePro本体を開発する場合は、source checkout を使います。
75
69
 
76
70
  ```bash
71
+ git clone https://github.com/Unson-LLC/vibepro.git
72
+ cd vibepro
77
73
  npm install
78
74
  node bin/vibepro.js --help
79
75
  ```
@@ -441,7 +437,7 @@ npx vibepro pr prepare /path/to/repo --language en --base <base-branch>
441
437
 
442
438
  ## プロジェクト状態
443
439
 
444
- VibePro は現在 alpha OSS 公開候補です。安定版公開前に API、report schema、diagnosis pack は変わる可能性があります。
440
+ VibePro は現在 early beta OSS リリースです。安定版 1.0 公開前に API、report schema、diagnosis pack は変わる可能性があります。
445
441
 
446
442
  ## License
447
443
 
package/README.md CHANGED
@@ -51,30 +51,26 @@ Once the story and architecture are clear, implementation can be handed to AI ag
51
51
 
52
52
  VibePro requires Node.js 20 or newer.
53
53
 
54
- VibePro is currently an alpha OSS release candidate. If it is not available in the public npm registry yet, do not run `npm install -D vibepro` or `pnpm add -D vibepro` and expect it to resolve from npm.
54
+ VibePro is currently an early beta OSS release. The CLI, report schemas, and diagnosis packs may change before a stable 1.0 release, so use the `beta` dist-tag explicitly.
55
55
 
56
- Use one of these installation modes:
56
+ Try the published CLI without installing it globally:
57
57
 
58
58
  ```bash
59
- # From a local clone of this repository
60
- cd /path/to/vibepro
61
- npm install
62
- node bin/vibepro.js --help
63
-
64
- # Or install from GitHub before the npm package is published
65
- npm install -g git+https://github.com/Unson-LLC/vibepro.git
66
- vibepro --help
59
+ npx vibepro@beta --help
67
60
  ```
68
61
 
69
- After VibePro is published to npm:
62
+ Or install the beta CLI globally:
70
63
 
71
64
  ```bash
72
- npx vibepro --help
65
+ npm install -g vibepro@beta
66
+ vibepro --help
73
67
  ```
74
68
 
75
- For local development of VibePro itself:
69
+ For local development of VibePro itself, use a source checkout:
76
70
 
77
71
  ```bash
72
+ git clone https://github.com/Unson-LLC/vibepro.git
73
+ cd vibepro
78
74
  npm install
79
75
  node bin/vibepro.js --help
80
76
  ```
@@ -513,7 +509,7 @@ Machine-readable JSON keys remain stable and English-oriented.
513
509
 
514
510
  ## Project Status
515
511
 
516
- VibePro is currently an alpha OSS release candidate. APIs, report schemas, and diagnosis packs may change before a stable public release.
512
+ VibePro is currently an early beta OSS release. APIs, report schemas, and diagnosis packs may change before a stable 1.0 release.
517
513
 
518
514
  ## License
519
515
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibepro",
3
- "version": "0.1.0-alpha.0",
3
+ "version": "0.1.0-beta.0",
4
4
  "description": "Product-intent gates and review evidence for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",