@viberaven/cli 1.0.0 → 1.0.1
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 +33 -0
- package/README.md +10 -0
- package/assets/report/station.js +2 -2
- package/dist/cli.js +1203 -666
- package/dist/cli.js.map +4 -4
- package/dist/report/station.js +2 -2
- package/package.json +18 -9
package/dist/report/station.js
CHANGED
|
@@ -7274,9 +7274,9 @@ function buildAgentPromptText(payload, nextMove, missing, files) {
|
|
|
7274
7274
|
|
|
7275
7275
|
function buildChecklistText(payload, nextMove, missing, files) {
|
|
7276
7276
|
const lines = [
|
|
7277
|
-
'#
|
|
7277
|
+
'# VibeRaven production checklist',
|
|
7278
7278
|
'',
|
|
7279
|
-
'Generated from the latest VibeRaven
|
|
7279
|
+
'Generated from the latest VibeRaven run.',
|
|
7280
7280
|
'',
|
|
7281
7281
|
'## Next move',
|
|
7282
7282
|
'',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viberaven/cli",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Production-readiness scan for AI-built apps: auth, billing, database, deployment, monitoring, launch gaps, and agent-ready fixes.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "VibeRaven",
|
|
7
7
|
"homepage": "https://viberaven.dev",
|
|
@@ -16,15 +16,23 @@
|
|
|
16
16
|
"keywords": [
|
|
17
17
|
"viberaven",
|
|
18
18
|
"launch-readiness",
|
|
19
|
+
"production-readiness",
|
|
20
|
+
"launch-gaps",
|
|
21
|
+
"ai-built-apps",
|
|
22
|
+
"agent-mode",
|
|
23
|
+
"mcp",
|
|
19
24
|
"claude-code",
|
|
20
25
|
"codex",
|
|
21
26
|
"cursor",
|
|
22
27
|
"ai",
|
|
23
|
-
"production"
|
|
28
|
+
"production",
|
|
29
|
+
"supabase",
|
|
30
|
+
"vercel",
|
|
31
|
+
"stripe"
|
|
24
32
|
],
|
|
25
|
-
"publishConfig": {
|
|
26
|
-
"access": "public",
|
|
27
|
-
"tag": "latest"
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public",
|
|
35
|
+
"tag": "latest"
|
|
28
36
|
},
|
|
29
37
|
"bin": {
|
|
30
38
|
"viberaven": "dist/cli.js"
|
|
@@ -43,10 +51,11 @@
|
|
|
43
51
|
"dev": "node scripts/build.mjs && node dist/cli.js",
|
|
44
52
|
"typecheck": "tsc -p tsconfig.json",
|
|
45
53
|
"demo-report": "node scripts/demo-report.mjs --open",
|
|
46
|
-
"verify:release:smoke": "npm run build && node scripts/verify-beta-flow.mjs --smoke",
|
|
47
|
-
"verify:release:live": "npm run build && node scripts/verify-beta-flow.mjs --live",
|
|
54
|
+
"verify:release:smoke": "npm run build && node scripts/verify-beta-flow.mjs --smoke",
|
|
55
|
+
"verify:release:live": "npm run build && node scripts/verify-beta-flow.mjs --live",
|
|
48
56
|
"test": "vitest run",
|
|
49
|
-
"prepublishOnly": "npm run sync-report-assets && npm run typecheck && npm run test && npm run build"
|
|
57
|
+
"prepublishOnly": "npm run sync-report-assets && npm run check:agent-discovery && npm run typecheck && npm run test && npm run build",
|
|
58
|
+
"check:agent-discovery": "node scripts/check-agent-discovery.mjs"
|
|
50
59
|
},
|
|
51
60
|
"engines": {
|
|
52
61
|
"node": ">=20"
|