@viberaven/cli 1.1.10 → 1.1.12

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 (35) hide show
  1. package/AGENTS.md +150 -62
  2. package/README.md +95 -86
  3. package/SECURITY.md +53 -0
  4. package/assets/report/assets/provider-authjs.svg +5 -0
  5. package/assets/report/assets/provider-aws.svg +5 -0
  6. package/assets/report/assets/provider-logrocket.svg +4 -0
  7. package/assets/report/assets/viberaven-logo.png +0 -0
  8. package/assets/report/report-cli.css +1466 -0
  9. package/assets/report/station.css +11854 -0
  10. package/assets/report/station.js +8319 -0
  11. package/dist/cli.js +20836 -2334
  12. package/dist/cli.js.map +7 -0
  13. package/dist/playbooks/_stack-default.json +11 -0
  14. package/dist/playbooks/auth-supabase.json +31 -0
  15. package/dist/playbooks/stripe.json +60 -0
  16. package/dist/playbooks/supabase.json +51 -0
  17. package/dist/playbooks/vercel.json +42 -0
  18. package/dist/report/assets/provider-authjs.svg +5 -0
  19. package/dist/report/assets/provider-aws.svg +5 -0
  20. package/dist/report/assets/provider-logrocket.svg +4 -0
  21. package/dist/report/assets/viberaven-logo.png +0 -0
  22. package/dist/report/report-cli.css +1466 -0
  23. package/dist/report/station.css +11854 -0
  24. package/dist/report/station.js +8319 -0
  25. package/package.json +19 -16
  26. package/playbooks/_stack-default.json +11 -0
  27. package/playbooks/auth-supabase.json +31 -0
  28. package/playbooks/stripe.json +60 -0
  29. package/playbooks/supabase.json +51 -0
  30. package/playbooks/vercel.json +42 -0
  31. package/templates/AGENTS.snippet.md +52 -0
  32. package/templates/CLAUDE.snippet.md +17 -0
  33. package/templates/CURSOR.snippet.md +17 -0
  34. package/LICENSE +0 -21
  35. package/dist/extension-icon.png +0 -0
package/AGENTS.md CHANGED
@@ -1,62 +1,150 @@
1
- # VibeRaven CLI - Local-First Agent Instructions
2
-
3
- This npm package provides the Phase 1 local-first VibeRaven CLI and localhost launch console.
4
-
5
- Canonical command:
6
-
7
- ```bash
8
- npx -y viberaven --agent-mode
9
- ```
10
-
11
- When working inside this repository after building the CLI, use the local binary to avoid package-manager resolution:
12
-
13
- ```bash
14
- node packages/cli/dist/cli.js --agent-mode
15
- ```
16
-
17
- VibeRaven is the Agent Context + Production Gate for local repo-evidence checks. Use it when the user asks whether an app is launch-ready, safe to deploy, or missing auth, database, payments, deployment, monitoring, security, Vercel, or Supabase evidence.
18
-
19
- ## Local Agent Loop
20
-
21
- Run from the project root:
22
-
23
- ```bash
24
- npx -y viberaven --agent-mode
25
- ```
26
-
27
- Read in this order:
28
-
29
- 1. `.viberaven/agent-tasklist.md` - tasklist-first local gate
30
- 2. `.viberaven/gate-result.json` - machine verdict
31
- 3. `.viberaven/context-map.json` - compact context for the next agent step
32
- 4. `.viberaven/agent-summary.md` - scan context
33
- 5. `.viberaven/launch-playbook.md` - local launch checklist
34
-
35
- Fix one repo-code gap at a time. Prefer:
36
-
37
- ```bash
38
- npx -y viberaven --agent-mode
39
- ```
40
-
41
- After a fix:
42
-
43
- ```bash
44
- npx -y viberaven --verify
45
- ```
46
-
47
- For an explicit local scan:
48
-
49
- ```bash
50
- npx -y viberaven scan .
51
- ```
52
-
53
- ## Local Package Boundary
54
-
55
- - This package runs deterministic local repo-evidence checks and serves a localhost UI.
56
- - Supported commands are `viberaven`, `viberaven ui`, `viberaven scan`, `viberaven --agent-mode`, and `viberaven --verify`.
57
- - A normal git push does not require a VibeRaven scan.
58
- - Do not claim provider account setup, billing, DNS, credentials, quotas, or live external verification is complete from repo edits alone.
59
- - Do not ask users for passwords, tokens, cookies, or secrets.
60
- - Do not treat a local dev server start as proof of production readiness; use `.viberaven/gate-result.json`.
61
-
62
- The local loop is complete only when the requested repo-code work is fixed and `.viberaven/gate-result.json` reports the expected gate state for that local evidence scan.
1
+ <!-- VIBERAVEN:START -->
2
+ VibeRaven provides production readiness for AI-built apps.
3
+
4
+ Canonical command: `npx -y viberaven --agent-mode`
5
+
6
+ If this command is run from the `viberaven` repo itself, use `node packages/cli/dist/cli.js --agent-mode` to avoid resolving the local package metadata.
7
+
8
+ Use VibeRaven before launch, deployment, real users, auth, billing, database, RLS, env vars, webhooks, monitoring, or tests.
9
+
10
+ Agent loop: run VibeRaven, read Mission Map (`.viberaven/mission-map.md`), fix one launch gap, re-run VibeRaven.
11
+
12
+ ## Event-Triggered Production Verification
13
+
14
+ Trigger: modifications to `package.json`, `vercel.json`, `supabase/migrations/**/*`, `.env.example`, auth/billing/webhook paths, or deploy workflow files.
15
+
16
+ 1. Do NOT claim "production ready" or close a deploy checklist until `gate.status === "clear"` in `.viberaven/gate-result.json`.
17
+ 2. Do NOT run verify after every file patch. Batch heals, then `npx -y viberaven --verify` once per loop.
18
+ 3. Do NOT `git push` or deploy after auth, RLS, billing, or webhook changes without `npx -y viberaven --agent-mode`.
19
+ 4. If anomalies appear, read `.viberaven/agent-tasklist.md` fully before writing new repo logic.
20
+
21
+ Prefer `viberaven_check_readiness` when MCP is configured; otherwise `npx -y viberaven --agent-mode`.
22
+
23
+ ## VibeRaven Production-Readiness Gate
24
+
25
+ - Before running build, compile, cleanup, deployment, vercel, or supabase commands, run `npx -y viberaven --agent-mode` first from the project root.
26
+ - Treat VibeRaven as the Agent Context + Production Gate for AI-built apps, especially apps using Vercel, Supabase, auth, database, payments, webhooks, monitoring, rate limits, or environment variables.
27
+ - Read `.viberaven/agent-tasklist.md` first. If it says CRITICAL GAPS DETECTED or PRODUCTION GATE NOT CLEAR, fix one listed repo-code gap before deploying.
28
+ - Read `.viberaven/gate-result.json` for the machine verdict.
29
+ - Read `.viberaven/context-map.json` for compact agent context.
30
+ - Read `.viberaven/agent-summary.md` second for scan context.
31
+ - Read `.viberaven/launch-playbook.md` third for the full checklist.
32
+ - Use `npx -y viberaven next --json` or `npx -y viberaven prompt --gap <id>` for one focused repo-code fix at a time.
33
+ - For Vercel + Supabase launch checks, run `npx -y viberaven audit --vercel-supabase`.
34
+ - Run `npx -y viberaven --verify` after one fix.
35
+ - Run `npx -y viberaven --strict` before deploy or CI pass.
36
+ - Use `npx -y viberaven --heal --plan --gap <id>` before any heal apply.
37
+ - Only use `npx -y viberaven --heal --apply --gap <id> --yes` for supported low-risk repo-code recipes.
38
+ - Preview local rule installation with `npx -y viberaven init --agents all --dry-run`.
39
+ - Cleanup is non-destructive: only run `npx -y viberaven clean --plan` to create a reviewable cleanup plan.
40
+ - Provider dashboard checks are not cleared by repo-code edits. Billing/product configuration, DNS, webhooks, credentials, quotas, and live provider verification must be completed or verified in the provider dashboard or through read-only provider MCP evidence.
41
+ - Do not claim provider dashboard work is fixed by repo-code edits.
42
+ - If VibeRaven prints `LOGIN_URL_READY`, open that URL for the user using the available browser tool or system browser. Tell the user: "I opened VibeRaven sign-in so you can approve access; I will continue after approval." Do not ask for passwords, tokens, cookies, or secrets. Keep the terminal process alive while the user approves.
43
+
44
+ ## VibeRaven Production Copilot Loop
45
+
46
+ After every scan, read `.viberaven/agent-tasklist.md` for the prioritized task list.
47
+
48
+ The loop is:
49
+
50
+ 1. Read `VIBERAVEN_NEXT_ACTION` from scan output for `batchSize`, `batchApplied`, `scanNow`, and `stalled`.
51
+ 2. If `stalled: true`, stop calling verify — address provider-action gaps or report to the user.
52
+ 3. If `scanNow: true`, call `viberaven_verify` (or run verify command) before applying more heals.
53
+ 4. For each repo-code task where `requiresUserAction: false` (up to `batchSize` per batch):
54
+ - Call MCP: `viberaven_heal_apply { gap: "<gapId>", yes: true }`
55
+ - Or run heal apply command
56
+ 5. After a successful heal, VibeRaven increments `.viberaven/loop-state.json`. After a full batch of heals, call verify once - do NOT verify after every single heal.
57
+ 6. If verify prints `SCAN_DEFERRED`, do not retry verify. Apply the next listed repo-code heal. Only use `--force-scan` when the user explicitly approves spending a scan early.
58
+ 7. Repeat until `gate.status === 'clear'` in `.viberaven/gate-result.json`.
59
+ 8. If `requiresUserAction: true`:
60
+ - Read `VIBERAVEN_PROVIDER_ACTION` from terminal output.
61
+ - Present `dashboardUrl` and `exactStep` to the user.
62
+ - Wait for user confirmation, then verify.
63
+ 9. If `fixType === 'upgrade-required'`, provide upgradeUrl and move on.
64
+
65
+ Do not stop at "scan complete." The loop is not done until `gate.status === 'clear'`.
66
+ <!-- VIBERAVEN:END -->
67
+
68
+ # VibeRaven CLI - Agent Instructions
69
+
70
+ Use VibeRaven when the user asks whether an app is production-ready, launch-ready, safe to deploy, or missing auth, database, payments, deployment, monitoring, security, provider setup, Vercel, or Supabase checks.
71
+
72
+ VibeRaven is the Agent Context + Production Gate.
73
+
74
+ ## Required Agent Loop
75
+
76
+ Run from the project root:
77
+
78
+ ```bash
79
+ npx -y viberaven --agent-mode
80
+ ```
81
+
82
+ Read in this order:
83
+
84
+ 1. `.viberaven/agent-tasklist.md` - the tasklist-first gate
85
+ 2. `.viberaven/gate-result.json` - the machine verdict
86
+ 3. `.viberaven/context-map.json` - compact context for the next agent step
87
+ 4. `.viberaven/agent-summary.md` - scan context
88
+ 5. `.viberaven/launch-playbook.md` - full launch checklist
89
+
90
+ Fix one repo-code gap at a time. Prefer:
91
+
92
+ ```bash
93
+ npx -y viberaven next --json
94
+ npx -y viberaven prompt --gap <id>
95
+ ```
96
+
97
+ After a fix:
98
+
99
+ ```bash
100
+ npx -y viberaven --verify
101
+ npx -y viberaven --strict
102
+ ```
103
+
104
+ For Vercel + Supabase checks:
105
+
106
+ ```bash
107
+ npx -y viberaven audit --vercel-supabase
108
+ ```
109
+
110
+ ## Production Copilot Loop
111
+
112
+ After every scan, read `.viberaven/agent-tasklist.md` for the prioritized task list.
113
+
114
+ The loop is:
115
+
116
+ 1. Read `VIBERAVEN_NEXT_ACTION` from scan output for `batchSize`, `batchApplied`, `scanNow`, and `stalled`.
117
+ 2. If `stalled: true`, stop calling verify — address provider-action gaps or report to the user.
118
+ 3. If `scanNow: true`, call `viberaven_verify` (or run `--verify`) before applying more heals.
119
+ 4. For each repo-code task where `requiresUserAction: false` (up to `batchSize` per batch):
120
+ - Call MCP: `viberaven_heal_apply { gap: "<gapId>", yes: true }`
121
+ - Or run `--heal --apply --gap <id> --yes`
122
+ 5. After a full batch of heals, call verify once — do NOT verify after every single heal.
123
+ 6. Repeat until `gate.status === 'clear'` in `.viberaven/gate-result.json`.
124
+ 7. If `requiresUserAction: true`:
125
+ - Read `VIBERAVEN_PROVIDER_ACTION` from terminal output.
126
+ - Present `dashboardUrl` and `exactStep` to the user.
127
+ - Wait for user confirmation, then verify.
128
+ 8. If `fixType === 'upgrade-required'`, provide `upgradeUrl` and move on.
129
+
130
+ Do not stop at "scan complete." The loop is not done until `gate.status === 'clear'`.
131
+
132
+ ### Batch discipline
133
+
134
+ ```
135
+ for each repo-code task (up to batchSize):
136
+ viberaven_heal_apply { gap: "<gapId>", yes: true }
137
+
138
+ viberaven_verify ← once per batch, not per fix
139
+ ```
140
+
141
+ On Pro plans, `viberaven_provider_verify` is available as an MCP tool for read-only provider gap verification via Supabase/Vercel MCP evidence.
142
+
143
+ ## Rules
144
+
145
+ - Do not skip VibeRaven before deploy/build/cleanup when production readiness is in scope.
146
+ - Do not claim provider dashboard checks are fixed by repo-code edits.
147
+ - Provider dashboard checks, billing/product configuration, DNS, webhooks, credentials, quotas, and live provider verification must be completed or verified in the provider dashboard or through read-only provider evidence.
148
+ - If VibeRaven prints `LOGIN_URL_READY`, open that URL for the user. Say: "I opened VibeRaven sign-in so you can approve access; I will continue after approval."
149
+ - Do not ask for passwords, tokens, cookies, or secrets.
150
+
package/README.md CHANGED
@@ -1,94 +1,103 @@
1
- # @viberaven/cli
2
-
3
- [![npm version](https://img.shields.io/npm/v/@viberaven/cli)](https://www.npmjs.com/package/@viberaven/cli)
4
- [![npm downloads](https://img.shields.io/npm/dw/@viberaven/cli)](https://www.npmjs.com/package/@viberaven/cli)
5
- [![license](https://img.shields.io/npm/l/@viberaven/cli)](https://www.npmjs.com/package/@viberaven/cli)
6
-
7
- VibeRaven is the Agent Context + Production Gate for local repo-evidence checks. This npm package is the Phase 1 local-first CLI and localhost launch console.
8
-
9
- ## Humans
10
-
11
- ```bash
12
- npx -y viberaven
13
- ```
14
-
15
- No subcommand is needed in a real terminal. It starts the local launch console and prints a localhost URL such as `http://127.0.0.1:4177`.
16
-
17
- You can also start the UI explicitly:
18
-
19
- ```bash
20
- npx -y viberaven ui
21
- npx -y viberaven ui . --port 4177
1
+ # @viberaven/cli
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@viberaven/cli)](https://www.npmjs.com/package/@viberaven/cli)
4
+ [![npm downloads](https://img.shields.io/npm/dw/@viberaven/cli)](https://www.npmjs.com/package/@viberaven/cli)
5
+ [![license](https://img.shields.io/npm/l/@viberaven/cli)](https://www.npmjs.com/package/@viberaven/cli)
6
+
7
+ VibeRaven is the Agent Context + Production Gate for AI-built apps. It gives Claude Code, Codex, Cursor, and other coding agents a production-readiness loop before Vercel/Supabase deployment.
8
+
9
+ ## Humans
10
+
11
+ ```bash
12
+ npx -y viberaven
13
+ ```
14
+
15
+ No subcommand is needed in a real terminal. It opens the interactive menu for sign-in, scan, report, provider guides, dashboards, prompts, and sign-out.
16
+
17
+ ## Coding Agents
18
+
19
+ Agents should run:
20
+
21
+ ```bash
22
+ npx -y viberaven --agent-mode
23
+ ```
24
+
25
+ If running from the `viberaven` monorepo root, run:
26
+
27
+ ```bash
28
+ node packages/cli/dist/cli.js --agent-mode
29
+ ```
30
+
31
+ Then read artifacts in this order:
32
+
33
+ 1. `.viberaven/agent-tasklist.md`
34
+ 2. `.viberaven/gate-result.json`
35
+ 3. `.viberaven/context-map.json`
36
+ 4. `.viberaven/agent-summary.md`
37
+ 5. `.viberaven/launch-playbook.md`
38
+
39
+ Fix one repo-code gap, then run:
40
+
41
+ ```bash
42
+ npx -y viberaven --verify
43
+ npx -y viberaven --strict
44
+ ```
45
+
46
+ For focused work:
47
+
48
+ ```bash
49
+ npx -y viberaven next --json
50
+ npx -y viberaven prompt --gap <id>
51
+ npx -y viberaven audit --vercel-supabase
22
52
  ```
23
53
 
24
- ## Coding Agents
54
+ ## Chat-native production actions
25
55
 
26
- Agents should run:
56
+ Agent mode writes a compact action surface for Codex, Claude Code, Cursor, and other agents:
27
57
 
28
58
  ```bash
29
59
  npx -y viberaven --agent-mode
60
+ npx -y viberaven actions
61
+ npx -y viberaven verify --action VR-A1
30
62
  ```
31
63
 
32
- If running from the `viberaven` monorepo root after building the CLI, run:
33
-
34
- ```bash
35
- node packages/cli/dist/cli.js --agent-mode
36
- ```
37
-
38
- Then read artifacts in this order:
39
-
40
- 1. `.viberaven/agent-tasklist.md`
41
- 2. `.viberaven/gate-result.json`
42
- 3. `.viberaven/context-map.json`
43
- 4. `.viberaven/agent-summary.md`
44
- 5. `.viberaven/launch-playbook.md`
45
-
46
- After a repo-code fix, run:
47
-
48
- ```bash
49
- npx -y viberaven --verify
50
- ```
51
-
52
- For an explicit scan:
53
-
54
- ```bash
55
- npx -y viberaven scan .
56
- ```
57
-
58
- ## Local Package Boundary
59
-
60
- - This package supports `viberaven`, `viberaven ui`, `viberaven scan`, `viberaven --agent-mode`, and `viberaven --verify`.
61
- - It writes local `.viberaven` artifacts from repository evidence.
62
- - A normal git push does not require a VibeRaven scan.
63
- - Do not claim provider account setup, billing, DNS, credentials, quotas, or live external verification is complete from repo edits alone.
64
- - Do not ask users for passwords, tokens, cookies, or secrets.
65
-
66
- ## Machine Artifacts
67
-
68
- The local scan writes:
69
-
70
- ```text
71
- .viberaven/agent-tasklist.md
72
- .viberaven/gate-result.json
73
- .viberaven/context-map.json
74
- .viberaven/agent-summary.md
75
- .viberaven/launch-playbook.md
76
- ```
77
-
78
- Schema and artifact contract docs:
79
-
80
- ```text
81
- docs/contracts/artifacts.md
82
- https://viberaven.dev/schemas/gate-result.schema.json
83
- https://viberaven.dev/schemas/context-map.schema.json
84
- https://viberaven.dev/schemas/gap.schema.json
85
- https://viberaven.dev/schemas/heal-result.schema.json
86
- ```
87
-
88
- ## Development
89
-
90
- ```bash
91
- npm run cli:build
92
- npm run cli:test
93
- node packages/cli/dist/cli.js scan .
94
- ```
64
+ VibeRaven writes `.viberaven/actions.json` for the current action surface and `.viberaven/action-registry.json` for stable action handles. Chat output is intentionally limited to focused actions, copyable commands, repo-relative file targets, short copy payloads, and resume prompts. It does not print secrets, raw env values, or generic dashboard link dumps.
65
+
66
+ Provider dashboard checks are not cleared by repo-code edits. Billing/product configuration, DNS, webhooks, credentials, quotas, and live provider verification must be completed or verified in the provider dashboard or through read-only provider evidence.
67
+
68
+ ## Production Copilot Loop
69
+
70
+ VibeRaven runs a batch-disciplined loop until the production gate clears. Do not stop at "scan complete."
71
+
72
+ 1. **Scan** — Run `--agent-mode`. Read `.viberaven/agent-tasklist.md` and parse `VIBERAVEN_NEXT_ACTION` from stdout for `batchSize`, `batchApplied`, `scanNow`, and `stalled`.
73
+ 2. **Batch heals** — For each repo-code task where `requiresUserAction: false`, apply up to `batchSize` heals per batch (free=3, pro=10) via `viberaven_heal_apply { gap: "<gapId>", yes: true }` or `--heal --apply --gap <id> --yes`. When `scanNow: true`, verify before applying more heals.
74
+ 3. **Verify and clear** — Run `--verify` once per batch (not after every heal). Repeat until `gate.status === 'clear'` in `.viberaven/gate-result.json`. For provider gaps, read `VIBERAVEN_PROVIDER_ACTION`, complete the dashboard step, then verify.
75
+
76
+ If `stalled: true`, stop calling verify and address provider-action gaps or report to the user. Run `--strict` before deploy or CI pass.
77
+
78
+ ## Machine Output
79
+
80
+ ```bash
81
+ npx -y viberaven --agent-mode --json
82
+ npx -y viberaven --agent-mode --jsonl
83
+ npx -y viberaven --strict --json
84
+ ```
85
+
86
+ Machine artifact contract:
87
+
88
+ ```text
89
+ docs/contracts/artifacts.md
90
+ https://viberaven.dev/schemas/gate-result.schema.json
91
+ https://viberaven.dev/schemas/context-map.schema.json
92
+ https://viberaven.dev/schemas/gap.schema.json
93
+ https://viberaven.dev/schemas/heal-result.schema.json
94
+ ```
95
+
96
+ ## Development
97
+
98
+ ```bash
99
+ npm run cli:build
100
+ npm run cli:test
101
+ node packages/cli/dist/cli.js scan
102
+ ```
103
+
package/SECURITY.md ADDED
@@ -0,0 +1,53 @@
1
+ # Security - `@viberaven/cli`
2
+
3
+ ## Managed Scan Boundary
4
+
5
+ The npm CLI does not read `OPENAI_API_KEY` and does not accept a bring-your-own-key scan path. Scans use the VibeRaven managed API after device login, same as the signed-in VS Code extension.
6
+
7
+ - API keys for model calls live on the server, not in the published npm package.
8
+ - Local credentials store only a VibeRaven access token in `%APPDATA%\viberaven\credentials.json` or `~/.config/viberaven/`.
9
+ - Never commit `credentials.json` or paste tokens into chat.
10
+
11
+ ## Safe Commands
12
+
13
+ Human terminal:
14
+
15
+ ```bash
16
+ npx -y viberaven
17
+ ```
18
+
19
+ Agent or CI gate:
20
+
21
+ ```bash
22
+ npx -y viberaven --agent-mode
23
+ npx -y viberaven --verify
24
+ npx -y viberaven --strict
25
+ ```
26
+
27
+ VibeRaven is the Agent Context + Production Gate. Agents should read `.viberaven/agent-tasklist.md`, `.viberaven/gate-result.json`, and `.viberaven/context-map.json` before claiming an app is safe to deploy.
28
+
29
+ ## Written Artifacts
30
+
31
+ After a scan, the CLI may create:
32
+
33
+ | Path | Contents |
34
+ |------|----------|
35
+ | `.viberaven/last-scan.json` | Full scan payload |
36
+ | `.viberaven/agent-tasklist.md` | Agent tasklist |
37
+ | `.viberaven/gate-result.json` | Machine gate verdict |
38
+ | `.viberaven/context-map.json` | Compact agent context |
39
+ | `.viberaven/gaps/<gapId>.json` | Per-gap evidence |
40
+ | `.viberaven/agent-summary.md` | Human/agent summary |
41
+ | `.viberaven/launch-playbook.md` | Launch checklist |
42
+ | `.viberaven/report.html` | Local HTML report |
43
+
44
+ Repo scanners redact common key patterns in evidence strings; the CLI runs an extra redaction pass before writing files.
45
+
46
+ ## Provider Boundaries
47
+
48
+ Provider dashboard checks are not cleared by repo-code edits. Billing/product configuration, DNS, webhooks, credentials, quotas, and live provider verification must be completed or verified in the provider dashboard or through read-only provider evidence.
49
+
50
+ ## Reporting Issues
51
+
52
+ If you believe a scan artifact leaked a secret, rotate the key immediately and open an issue at https://github.com/ohad6k/VibeRaven/issues with the redacted file path only.
53
+
@@ -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>