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.
- package/README.ja.md +10 -14
- package/README.md +10 -14
- 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 は現在
|
|
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
|
-
|
|
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
|
-
|
|
61
|
+
beta CLI を global install する場合:
|
|
69
62
|
|
|
70
63
|
```bash
|
|
71
|
-
|
|
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 は現在
|
|
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
|
|
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
|
-
|
|
56
|
+
Try the published CLI without installing it globally:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
|
|
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
|
-
|
|
62
|
+
Or install the beta CLI globally:
|
|
70
63
|
|
|
71
64
|
```bash
|
|
72
|
-
|
|
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
|
|
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
|
|