@viberaven/cli 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/AGENTS.md +37 -0
- package/README.md +70 -0
- package/dist/cli.js +5950 -0
- package/dist/cli.js.map +7 -0
- package/package.json +55 -0
- package/templates/AGENTS.snippet.md +23 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@viberaven/cli",
|
|
3
|
+
"version": "0.1.0-beta.0",
|
|
4
|
+
"description": "VibeRaven launch readiness for Claude Code, Codex, and terminal agents — scan, map, and agent-ready prompts.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"author": "VibeRaven",
|
|
7
|
+
"homepage": "https://viberaven.dev",
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/ohad6k/VibeRaven/issues"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/ohad6k/VibeRaven.git",
|
|
14
|
+
"directory": "packages/cli"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"viberaven",
|
|
18
|
+
"launch-readiness",
|
|
19
|
+
"claude-code",
|
|
20
|
+
"codex",
|
|
21
|
+
"cursor",
|
|
22
|
+
"ai",
|
|
23
|
+
"production"
|
|
24
|
+
],
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public",
|
|
27
|
+
"tag": "beta"
|
|
28
|
+
},
|
|
29
|
+
"bin": {
|
|
30
|
+
"viberaven": "dist/cli.js"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"AGENTS.md",
|
|
35
|
+
"templates"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "node scripts/build.mjs",
|
|
39
|
+
"dev": "node scripts/build.mjs && node dist/cli.js",
|
|
40
|
+
"typecheck": "tsc -p tsconfig.json",
|
|
41
|
+
"demo-report": "node scripts/demo-report.mjs --open",
|
|
42
|
+
"verify:beta:smoke": "npm run build && node scripts/verify-beta-flow.mjs --smoke",
|
|
43
|
+
"verify:beta:live": "npm run build && node scripts/verify-beta-flow.mjs --live",
|
|
44
|
+
"test": "vitest run",
|
|
45
|
+
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
|
|
46
|
+
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=20"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"esbuild": "^0.25.0",
|
|
52
|
+
"typescript": "^5.8.0",
|
|
53
|
+
"vitest": "^3.2.0"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
## VibeRaven launch readiness (CLI)
|
|
2
|
+
|
|
3
|
+
When the user asks if their AI-built app is production-ready, launch-ready, or what is missing before ship:
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npx -y @viberaven/cli@beta scan --open
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
If not signed in, run `npx -y @viberaven/cli@beta login` first (browser device approval).
|
|
10
|
+
|
|
11
|
+
Then read:
|
|
12
|
+
|
|
13
|
+
- `.viberaven/agent-summary.md` — briefing for you
|
|
14
|
+
- `.viberaven/last-scan.json` — full mission map + gaps
|
|
15
|
+
- `.viberaven/report.html` — visual map for the user
|
|
16
|
+
|
|
17
|
+
Fix loop:
|
|
18
|
+
|
|
19
|
+
1. `npx -y @viberaven/cli@beta prompt` — copy-ready prompt for the top gap
|
|
20
|
+
2. Implement in the repo
|
|
21
|
+
3. `npx -y @viberaven/cli@beta scan` — verify readiness improved
|
|
22
|
+
|
|
23
|
+
Same VibeRaven account and scan quota as the VS Code extension.
|