@viberaven/cli 1.1.9 → 1.1.11

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.
@@ -0,0 +1,11 @@
1
+ {
2
+ "id": "stack-default",
3
+ "recommendation": {
4
+ "frontend": "react",
5
+ "ui": "tailwind + shadcn/ui",
6
+ "database": "supabase",
7
+ "auth": "supabase",
8
+ "deploy": "vercel",
9
+ "reason": "Highest agent training density; lowest friction for autonomous deploy loop"
10
+ }
11
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "id": "auth-supabase",
3
+ "provider": "auth-supabase",
4
+ "title": "Supabase Auth providers",
5
+ "steps": [
6
+ {
7
+ "id": "auth-providers",
8
+ "title": "Enable providers",
9
+ "instruction": "Enable Email and any OAuth providers your app uses (Google, GitHub, etc.).",
10
+ "openUrl": "https://supabase.com/dashboard/project/_/auth/providers"
11
+ },
12
+ {
13
+ "id": "auth-urls",
14
+ "title": "Redirect URLs",
15
+ "instruction": "Site URL and Redirect URLs must include your Vercel deployment URL.",
16
+ "openUrl": "https://supabase.com/dashboard/project/_/auth/url-configuration"
17
+ },
18
+ {
19
+ "id": "auth-email-templates",
20
+ "title": "Email templates",
21
+ "instruction": "Customize confirm signup and magic link templates if your app uses email auth.",
22
+ "openUrl": "https://supabase.com/dashboard/project/_/auth/templates"
23
+ },
24
+ {
25
+ "id": "auth-jwt",
26
+ "title": "JWT settings",
27
+ "instruction": "Confirm JWT expiry matches your session strategy. Use service role key only on the server.",
28
+ "openUrl": "https://supabase.com/dashboard/project/_/settings/api"
29
+ }
30
+ ]
31
+ }
@@ -0,0 +1,60 @@
1
+ {
2
+ "id": "stripe-launch",
3
+ "provider": "stripe",
4
+ "title": "Configure Stripe billing",
5
+ "steps": [
6
+ {
7
+ "id": "stripe-dashboard",
8
+ "title": "Stripe dashboard",
9
+ "instruction": "Open Stripe. For development, turn Test mode ON.",
10
+ "openUrl": "https://dashboard.stripe.com/"
11
+ },
12
+ {
13
+ "id": "stripe-keys",
14
+ "title": "API keys",
15
+ "instruction": "Copy test (or live) keys into .env. Never commit secret keys.",
16
+ "openUrl": "https://dashboard.stripe.com/test/apikeys",
17
+ "pasteTarget": {
18
+ "file": ".env",
19
+ "keys": ["STRIPE_SECRET_KEY", "NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY"]
20
+ }
21
+ },
22
+ {
23
+ "id": "stripe-product",
24
+ "title": "Product and price",
25
+ "instruction": "Create a product with a recurring price for your Pro or paid tier.",
26
+ "openUrl": "https://dashboard.stripe.com/test/products"
27
+ },
28
+ {
29
+ "id": "stripe-price-id",
30
+ "title": "Price ID",
31
+ "instruction": "Copy the Price ID (price_...) into .env as STRIPE_PRICE_ID."
32
+ },
33
+ {
34
+ "id": "stripe-webhook",
35
+ "title": "Webhook endpoint",
36
+ "instruction": "Add endpoint URL: {APP_URL}/api/webhooks/stripe (replace {APP_URL} with your Vercel URL).",
37
+ "openUrl": "https://dashboard.stripe.com/test/webhooks"
38
+ },
39
+ {
40
+ "id": "stripe-webhook-events",
41
+ "title": "Webhook events",
42
+ "instruction": "Subscribe to these events at minimum.",
43
+ "events": [
44
+ "checkout.session.completed",
45
+ "customer.subscription.updated",
46
+ "customer.subscription.deleted",
47
+ "invoice.payment_failed"
48
+ ]
49
+ },
50
+ {
51
+ "id": "stripe-signing-secret",
52
+ "title": "Signing secret",
53
+ "instruction": "Copy the webhook signing secret into .env as STRIPE_WEBHOOK_SECRET.",
54
+ "pasteTarget": {
55
+ "file": ".env",
56
+ "keys": ["STRIPE_WEBHOOK_SECRET"]
57
+ }
58
+ }
59
+ ]
60
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "id": "supabase-launch",
3
+ "provider": "supabase",
4
+ "title": "Configure Supabase",
5
+ "steps": [
6
+ {
7
+ "id": "supabase-project",
8
+ "title": "Open Supabase dashboard",
9
+ "instruction": "Create a project or open your existing Supabase project.",
10
+ "openUrl": "https://supabase.com/dashboard"
11
+ },
12
+ {
13
+ "id": "supabase-api-keys",
14
+ "title": "API keys",
15
+ "instruction": "Copy Project URL and anon/public key into .env.",
16
+ "openUrl": "https://supabase.com/dashboard/project/_/settings/api",
17
+ "pasteTarget": {
18
+ "file": ".env",
19
+ "keys": ["NEXT_PUBLIC_SUPABASE_URL", "NEXT_PUBLIC_SUPABASE_ANON_KEY"]
20
+ }
21
+ },
22
+ {
23
+ "id": "supabase-db-url",
24
+ "title": "Database connection",
25
+ "instruction": "Copy the connection string (use pooler for serverless). Server-side only — never expose in client code.",
26
+ "openUrl": "https://supabase.com/dashboard/project/_/settings/database",
27
+ "pasteTarget": {
28
+ "file": ".env",
29
+ "keys": ["DATABASE_URL"]
30
+ }
31
+ },
32
+ {
33
+ "id": "supabase-auth-urls",
34
+ "title": "Auth URL configuration",
35
+ "instruction": "Set Site URL to your Vercel preview or production URL. Add the same URL to Redirect URLs with /** wildcard.",
36
+ "openUrl": "https://supabase.com/dashboard/project/_/auth/url-configuration"
37
+ },
38
+ {
39
+ "id": "supabase-rls",
40
+ "title": "Row Level Security",
41
+ "instruction": "Enable RLS on tables that hold user data. Add policies for authenticated users.",
42
+ "openUrl": "https://supabase.com/dashboard/project/_/auth/policies"
43
+ },
44
+ {
45
+ "id": "supabase-migrate",
46
+ "title": "Apply migrations",
47
+ "instruction": "Run supabase db push or apply SQL migrations so production schema matches the repo.",
48
+ "openUrl": "https://supabase.com/docs/guides/cli"
49
+ }
50
+ ]
51
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "id": "vercel-launch",
3
+ "provider": "vercel",
4
+ "title": "Deploy on Vercel",
5
+ "steps": [
6
+ {
7
+ "id": "vercel-signup",
8
+ "title": "Sign in to Vercel",
9
+ "instruction": "Create or sign in to your Vercel account.",
10
+ "openUrl": "https://vercel.com/signup"
11
+ },
12
+ {
13
+ "id": "vercel-import",
14
+ "title": "Import repository",
15
+ "instruction": "Import your Git repository. Connect GitHub or GitLab if prompted.",
16
+ "openUrl": "https://vercel.com/new"
17
+ },
18
+ {
19
+ "id": "vercel-env",
20
+ "title": "Environment variables",
21
+ "instruction": "Project → Settings → Environment Variables. Add every key from .env.example for Production and Preview.",
22
+ "openUrl": "https://vercel.com/docs/projects/environment-variables"
23
+ },
24
+ {
25
+ "id": "vercel-deploy",
26
+ "title": "Deploy",
27
+ "instruction": "Push to your production branch or click Redeploy in the Vercel dashboard.",
28
+ "openUrl": "https://vercel.com/docs/deployments"
29
+ },
30
+ {
31
+ "id": "vercel-preview",
32
+ "title": "Copy live URL",
33
+ "instruction": "Copy the Production or Preview URL from Vercel. Set NEXT_PUBLIC_APP_URL (or your app's public URL env) in .env and Vercel env settings."
34
+ },
35
+ {
36
+ "id": "vercel-domains",
37
+ "title": "Custom domain (optional)",
38
+ "instruction": "Add a custom domain when you are ready for production traffic.",
39
+ "openUrl": "https://vercel.com/docs/projects/domains"
40
+ }
41
+ ]
42
+ }
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" aria-hidden="true">
2
+ <path fill="#412991" d="M32 5 11 16.8v13.7c0 12.2 8.9 23.3 21 27 12.1-3.7 21-14.8 21-27V16.8L32 5Z"/>
3
+ <path fill="#EB5424" d="M32 5v48.7c-3.1-1.1-6.1-2.7-8.7-4.7L32 5Z"/>
4
+ <path fill="#FBC22C" d="m32 5 8.7 44c-2.6 2-5.6 3.6-8.7 4.7V5Z"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 64" aria-hidden="true">
2
+ <text x="48" y="31" text-anchor="middle" font-family="Arial, Helvetica, sans-serif" font-size="21" font-weight="800" letter-spacing="-1.4" fill="#111827">AWS</text>
3
+ <path fill="#FF9900" d="M23.6 42.4c13.9 7.5 31.5 7.5 45.1-.1 1.1-.6 2.2.8 1.3 1.7-12.3 12.5-34.3 12.6-47.2.8-.9-.8-.3-2.9.8-2.4Z"/>
4
+ <path fill="#FF9900" d="M66.8 39.8c2.4-.3 7.8-.8 8.8 1 .9 1.6-1 5.8-2.5 8.2-.5.8-1.7.4-1.5-.6.5-2.1 1.3-4.8.5-5.8-.8-1-3.8-.8-5.4-.6-1 .1-1.2-2-.1-2.2h.2Z"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" aria-hidden="true">
2
+ <path fill="#764ABC" fill-rule="evenodd" clip-rule="evenodd" d="M26.8 12.9A20.8 20.8 0 0 1 32.3 7a20.5 20.5 0 0 1 5.5 5.8 29.3 29.3 0 0 1 5.1 17.1c1.1.9 2.3 1.8 3.4 2.7a6.2 6.2 0 0 1 2 5.7c-.5 2.6-1.1 5.2-1.6 7.8a2.2 2.2 0 0 1-3.3 1.1c-1.8-1.5-3.6-3-5.4-4.5a8.4 8.4 0 0 1-5.2 2.3 8.5 8.5 0 0 1-6.1-2.2c-1.3 1-2.5 2.1-3.8 3.2-.6.6-1.2 1-1.9 1.4a2.2 2.2 0 0 1-2.9-1.4c-.6-2.5-1.2-5.1-1.8-7.6a6.3 6.3 0 0 1 2.1-6c1-.8 2-1.6 3-2.3.3-.2.1-.5.2-.7a29.3 29.3 0 0 1 5.2-16.5Zm2.2 8.2a4.3 4.3 0 0 0 .4 5.8 4.8 4.8 0 0 0 6.5.1 4.3 4.3 0 0 0 1.1-4.8 4.4 4.4 0 0 0-3.9-2.9 4.5 4.5 0 0 0-4.1 1.8Zm3.3 4.9a2.1 2.1 0 1 0 0-4.2 2.1 2.1 0 0 0 0 4.2Z"/>
3
+ <path fill="#764ABC" d="M26.4 48.1a1.1 1.1 0 0 1 1.6-.9 10.4 10.4 0 0 0 9 0 1.1 1.1 0 0 1 1.6.8v4.8a1.1 1.1 0 0 1-1.7.8c-.5-.4-.9-.9-1.4-1.3-.7 1.4-1.4 2.8-2.1 4.1a1.1 1.1 0 0 1-1.8 0c-.8-1.4-1.4-2.8-2.2-4.1-.4.4-.9.9-1.3 1.3a1.1 1.1 0 0 1-1.7-.8v-4.7Z"/>
4
+ </svg>