hyperframes 0.8.3 → 0.8.4
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/README.md +23 -1
- package/dist/cli.js +2791 -1501
- package/dist/hyperframe-runtime.js +25 -25
- package/dist/hyperframe.manifest.json +1 -1
- package/dist/hyperframe.runtime.iife.js +25 -25
- package/dist/hyperframes-player.global.js +1 -1
- package/dist/skills/hyperframes-cli/SKILL.md +2 -2
- package/dist/skills/hyperframes-cli/references/preview-render.md +8 -6
- package/dist/studio/assets/{hyperframes-player-C-CeZlk1.js → hyperframes-player-70BfjZRz.js} +1 -1
- package/dist/studio/assets/{index-BU-aDh5r.js → index-DEnjB744.js} +1 -1
- package/dist/studio/assets/{index-B4X3myFN.js → index-KH4Y5JCd.js} +202 -202
- package/dist/studio/assets/{index-BSDQyOWB.js → index-RQ7S6nvA.js} +1 -1
- package/dist/studio/{chunk-AZYHQC6V.js → chunk-ZALQ3CW7.js} +2 -2
- package/dist/studio/chunk-ZALQ3CW7.js.map +1 -0
- package/dist/studio/{domEditingLayers-7AMZ7GFI.js → domEditingLayers-XRVXRTNX.js} +2 -2
- package/dist/studio/index.html +1 -1
- package/dist/studio/index.js +228 -157
- package/dist/studio/index.js.map +1 -1
- package/dist/templates/_shared/AGENTS.md +9 -4
- package/dist/templates/_shared/CLAUDE.md +9 -4
- package/package.json +1 -1
- package/dist/studio/chunk-AZYHQC6V.js.map +0 -1
- /package/dist/studio/{domEditingLayers-7AMZ7GFI.js.map → domEditingLayers-XRVXRTNX.js.map} +0 -0
package/README.md
CHANGED
|
@@ -33,11 +33,33 @@ Start the live preview studio in your browser:
|
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
npx hyperframes preview
|
|
36
|
-
# Studio
|
|
36
|
+
# Studio: http://localhost:3002/#project/my-video
|
|
37
|
+
# Server: http://localhost:3002
|
|
37
38
|
|
|
38
39
|
npx hyperframes preview --port 4567
|
|
39
40
|
```
|
|
40
41
|
|
|
42
|
+
In an interactive terminal, the preview stays attached until you press
|
|
43
|
+
Ctrl+C. In a non-interactive shell such as a coding-agent session, the same
|
|
44
|
+
command starts a managed preview that survives after the command returns. Use
|
|
45
|
+
`--background` or `--foreground` to choose explicitly, and manage persistent
|
|
46
|
+
previews with `--status`, `--stop`, `--list`, and `--kill-all`. Add `--json` to
|
|
47
|
+
managed lifecycle commands for machine-readable output. `--foreground --json`
|
|
48
|
+
prints the ready-session envelope once, then remains attached until stopped.
|
|
49
|
+
|
|
50
|
+
### `normalize-audio`
|
|
51
|
+
|
|
52
|
+
Measure two local authored audio clips with integrated LUFS and match the target
|
|
53
|
+
to the unchanged reference. The command is a dry run unless `--write` is passed:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
npx hyperframes normalize-audio --reference target-audio --target user-audio
|
|
57
|
+
npx hyperframes normalize-audio --reference target-audio --target user-audio --write
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
It updates only the target element's `data-volume` and refuses unsafe boosts
|
|
61
|
+
that exceed Studio's +12 dB ceiling or would clip.
|
|
62
|
+
|
|
41
63
|
### `render`
|
|
42
64
|
|
|
43
65
|
Render a composition to MP4. Run from the project directory; the positional
|