vibe-coding-master 0.4.18 → 0.4.19
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/dist-frontend/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>VibeCodingMaster</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-BrY-xd6U.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/assets/index-D1LTJ-sY.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
package/docs/product-design.md
CHANGED
|
@@ -319,14 +319,12 @@ The old `Dirty: yes/no` label is not used. The UI uses `Working tree: clean` or
|
|
|
319
319
|
|
|
320
320
|
- `Theme` button, cycling through `System`, `Light`, and `Dark`.
|
|
321
321
|
- `Pause alert sound` button, on by default, controlling only the audible pause reminder.
|
|
322
|
-
- `Try alert` button, firing the fixed pause alert dialog and, when sound is enabled, the alert sound for local verification.
|
|
323
322
|
- `Messages` button, opening a modal list of role messages.
|
|
324
323
|
- `Events` button, opening a modal list of runtime UI events for the current task.
|
|
325
324
|
|
|
326
325
|
The default theme mode is `System`, which follows the OS/browser color-scheme preference. The entire application chrome, sidebar, forms, modals, status badges, and workspace panels must support both light and dark rendering. Embedded terminals keep their terminal-native dark styling.
|
|
327
326
|
|
|
328
327
|
When a role flow stops advancing, VCM always shows the fixed in-app pause alert dialog. When `Pause alert sound` is on, VCM also plays a short, soft, two-note local chime. If the flow lasted less than 2 minutes, the chime plays 3 times, 1.4 seconds apart, and stops. If the flow lasted 2 minutes or longer, the chime repeats until the user confirms the dialog. The alert sound must reuse one browser audio context after user activation instead of creating a fresh context for each repeat, because Safari can block repeated timer-driven playback when every repeat looks like a new autoplay attempt.
|
|
329
|
-
`Try alert` must work even when no flow has just stopped advancing so the user can verify browser dialog and sound behavior.
|
|
330
328
|
Safari may still require the user to manually set `Safari > Website Settings > Auto-Play > Allow All Auto-Play`; Chrome is the recommended browser for reliable repeated alert sound.
|
|
331
329
|
|
|
332
330
|
There is no separate `Pause orchestration` or `Resume orchestration` control in the GUI. The current product model is one on/off toggle in the role console toolbar.
|