@onmark/cli 0.1.4 → 0.2.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/README.md CHANGED
@@ -17,10 +17,10 @@
17
17
  Onmark is a screenplay-first video compiler for people and agents. Write one
18
18
  HTML document with semantic film elements, ordinary CSS, and optional seekable
19
19
  motion. Onmark compiles the authored intent into an exact timeline, renders it
20
- through Chromium, mixes media with FFmpeg, and writes an MP4.
20
+ through Chromium, mixes media with FFmpeg, and writes a delivery-ready video.
21
21
 
22
22
  ```text
23
- screenplay → Timeline IR → Render Units → browser frames + audio → MP4
23
+ screenplay → Timeline IR → Render Units → browser frames + audio → video
24
24
  ```
25
25
 
26
26
  ## One timeline. Three visual languages.
@@ -79,6 +79,22 @@ onmark render film.html
79
79
  ```
80
80
 
81
81
  The command writes `renders/film.mp4` without overwriting an existing file.
82
+ Validate or inspect the same production plan without launching Chromium:
83
+
84
+ ```bash
85
+ onmark check film.html
86
+ onmark inspect film.html --json
87
+ onmark doctor
88
+ onmark benchmark film.html --runs 3 --json
89
+ ```
90
+
91
+ Use the default H.264/AAC MP4 for delivery, or select the edit-friendly
92
+ ProRes/PCM MOV profile by filename:
93
+
94
+ ```bash
95
+ onmark render film.html --output film.mov
96
+ ```
97
+
82
98
  Resolution, exact rational frame rates, and imported subtitles stay explicit:
83
99
 
84
100
  ```bash
@@ -90,6 +106,13 @@ onmark render film.html \
90
106
  --subtitle captions.vtt
91
107
  ```
92
108
 
109
+ Install the optional agent skill for a product-owned create/check/inspect/render
110
+ loop:
111
+
112
+ ```bash
113
+ npx skills add varo-yang/onmark --skill onmark-video
114
+ ```
115
+
93
116
  ## Why screenplay-first
94
117
 
95
118
  - **Intent before coordinates.** Source describes scenes, shots, content, cues,
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "packageName": "@onmark/cli",
4
- "version": "0.1.4",
5
- "sourceRevision": "faaf3134890c979f082912e6882d99750452031d",
4
+ "version": "0.2.1",
5
+ "sourceRevision": "16c647302c4e84f51c2f7089ed2066929d1aab33",
6
6
  "files": [
7
7
  {
8
8
  "path": "LICENSE",
@@ -11,13 +11,13 @@
11
11
  },
12
12
  {
13
13
  "path": "README.md",
14
- "bytes": 5791,
15
- "sha256": "d2da7345c7e5a623ca47e26296994f1c4a0febf26415b698397dca44e01e0c8a"
14
+ "bytes": 6326,
15
+ "sha256": "161bb00ebee6bbb7a6f6f15dbe0c00a36ae6c0943b1b3547d45424bb6132820d"
16
16
  },
17
17
  {
18
18
  "path": "package.json",
19
19
  "bytes": 1406,
20
- "sha256": "9527406d0676f0d8ff7bd545075a4f66f55072ac71082349400c3ce74ae65321"
20
+ "sha256": "07eb4e64c54265581dc0b17ac5ca03b7bf1e6182dfaf15226bbfbaca9c758ef3"
21
21
  },
22
22
  {
23
23
  "path": "packages/authoring/dist/src/frame-motion.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onmark/cli",
3
- "version": "0.1.4",
3
+ "version": "0.2.1",
4
4
  "description": "Screenplay-first deterministic browser video compiler",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -45,8 +45,8 @@
45
45
  "yauzl": "3.4.0"
46
46
  },
47
47
  "optionalDependencies": {
48
- "@onmark/cli-darwin-arm64": "0.1.4",
49
- "@onmark/cli-linux-x64": "0.1.4",
50
- "@onmark/cli-win32-x64": "0.1.4"
48
+ "@onmark/cli-darwin-arm64": "0.2.1",
49
+ "@onmark/cli-linux-x64": "0.2.1",
50
+ "@onmark/cli-win32-x64": "0.2.1"
51
51
  }
52
52
  }