screenci 0.0.63 → 0.0.64
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 +25 -17
- package/dist/cli.d.ts +17 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +172 -54
- package/dist/cli.js.map +1 -1
- package/dist/docs/manifest.d.ts +92 -61
- package/dist/docs/manifest.d.ts.map +1 -1
- package/dist/docs/manifest.js +32 -21
- package/dist/docs/manifest.js.map +1 -1
- package/dist/docs/videos.d.ts +1 -1
- package/dist/docs/videos.js +1 -1
- package/dist/docs/videos.js.map +1 -1
- package/dist/src/init.d.ts +9 -0
- package/dist/src/init.d.ts.map +1 -1
- package/dist/src/init.js +292 -109
- package/dist/src/init.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/skills/screenci/SKILL.md +5 -3
- package/skills/screenci/references/record.md +2 -1
package/dist/docs/manifest.d.ts
CHANGED
|
@@ -3,40 +3,50 @@
|
|
|
3
3
|
* Slugs are web-facing and stable even if source filenames change.
|
|
4
4
|
*/
|
|
5
5
|
export declare const docsManifest: readonly [{
|
|
6
|
-
readonly source: "
|
|
6
|
+
readonly source: "overview.mdx";
|
|
7
7
|
readonly slug: "docs";
|
|
8
8
|
readonly section: "Getting Started";
|
|
9
9
|
readonly order: 1;
|
|
10
|
-
readonly navLabel: "
|
|
11
|
-
readonly title: "
|
|
12
|
-
readonly description: "
|
|
10
|
+
readonly navLabel: "Overview";
|
|
11
|
+
readonly title: "Overview";
|
|
12
|
+
readonly description: "How ScreenCI works: record locally, render in the service, and serve from a CDN. The service never sees your source code, and the CLI is open source.";
|
|
13
13
|
readonly prev: null;
|
|
14
|
-
readonly next: "docs/
|
|
14
|
+
readonly next: "docs/agent-integration";
|
|
15
15
|
}, {
|
|
16
|
-
readonly source: "
|
|
17
|
-
readonly slug: "docs/
|
|
16
|
+
readonly source: "agent-integration.mdx";
|
|
17
|
+
readonly slug: "docs/agent-integration";
|
|
18
18
|
readonly section: "Getting Started";
|
|
19
19
|
readonly order: 2;
|
|
20
|
-
readonly navLabel: "
|
|
21
|
-
readonly title: "
|
|
22
|
-
readonly description: "
|
|
20
|
+
readonly navLabel: "Agent integration";
|
|
21
|
+
readonly title: "Agent Integration";
|
|
22
|
+
readonly description: "The recommended path: point a coding agent at the integration brief so it scaffolds ScreenCI, authors a video for your flow, and records it.";
|
|
23
23
|
readonly prev: "docs";
|
|
24
|
+
readonly next: "docs/installation";
|
|
25
|
+
}, {
|
|
26
|
+
readonly source: "installation.mdx";
|
|
27
|
+
readonly slug: "docs/installation";
|
|
28
|
+
readonly section: "Getting Started";
|
|
29
|
+
readonly order: 3;
|
|
30
|
+
readonly navLabel: "Manual setup & first video";
|
|
31
|
+
readonly title: "Manual Setup & First Video";
|
|
32
|
+
readonly description: "Wire ScreenCI up by hand: initialize a project, run the starter video locally, and record your first final video.";
|
|
33
|
+
readonly prev: "docs/agent-integration";
|
|
24
34
|
readonly next: "docs/write-video-scripts";
|
|
25
35
|
}, {
|
|
26
36
|
readonly source: "write-video-scripts.md";
|
|
27
37
|
readonly slug: "docs/write-video-scripts";
|
|
28
38
|
readonly section: "Getting Started";
|
|
29
|
-
readonly order:
|
|
39
|
+
readonly order: 4;
|
|
30
40
|
readonly navLabel: "Video script basics";
|
|
31
41
|
readonly title: "Video Script Basics";
|
|
32
42
|
readonly description: "Author .video.ts files with Playwright-like APIs, ScreenCI narration and camera helpers, and workflow-aware pacing.";
|
|
33
|
-
readonly prev: "docs/
|
|
43
|
+
readonly prev: "docs/installation";
|
|
34
44
|
readonly next: "docs/ci-setup";
|
|
35
45
|
}, {
|
|
36
46
|
readonly source: "ci-setup.md";
|
|
37
47
|
readonly slug: "docs/ci-setup";
|
|
38
48
|
readonly section: "Getting Started";
|
|
39
|
-
readonly order:
|
|
49
|
+
readonly order: 5;
|
|
40
50
|
readonly navLabel: "CI setup";
|
|
41
51
|
readonly title: "CI Setup";
|
|
42
52
|
readonly description: "Understand the generated GitHub Actions workflow, required secrets, and how to keep CI recordings deterministic.";
|
|
@@ -115,8 +125,8 @@ export declare const docsManifest: readonly [{
|
|
|
115
125
|
}, {
|
|
116
126
|
readonly source: "cli.mdx";
|
|
117
127
|
readonly slug: "docs/reference/cli";
|
|
118
|
-
readonly section: "
|
|
119
|
-
readonly order:
|
|
128
|
+
readonly section: "Reference";
|
|
129
|
+
readonly order: 1;
|
|
120
130
|
readonly navLabel: "CLI";
|
|
121
131
|
readonly title: "CLI";
|
|
122
132
|
readonly description: "Command reference for screenci init, test, record, project info, and public delivery commands.";
|
|
@@ -125,8 +135,8 @@ export declare const docsManifest: readonly [{
|
|
|
125
135
|
}, {
|
|
126
136
|
readonly source: "configuration.md";
|
|
127
137
|
readonly slug: "docs/reference/configuration";
|
|
128
|
-
readonly section: "
|
|
129
|
-
readonly order:
|
|
138
|
+
readonly section: "Reference";
|
|
139
|
+
readonly order: 2;
|
|
130
140
|
readonly navLabel: "Configuration";
|
|
131
141
|
readonly title: "Configuration";
|
|
132
142
|
readonly description: "Configure project identity, file locations, rendering defaults, upload behavior, and Playwright integration in screenci.config.ts.";
|
|
@@ -135,50 +145,60 @@ export declare const docsManifest: readonly [{
|
|
|
135
145
|
}, {
|
|
136
146
|
readonly source: "public-delivery-api.md";
|
|
137
147
|
readonly slug: "docs/reference/public-delivery-api";
|
|
138
|
-
readonly section: "
|
|
139
|
-
readonly order:
|
|
148
|
+
readonly section: "Reference";
|
|
149
|
+
readonly order: 3;
|
|
140
150
|
readonly navLabel: "Public delivery API";
|
|
141
151
|
readonly title: "Public Delivery API";
|
|
142
152
|
readonly description: "Technical reference for the unauthenticated endpoints that serve published videos, thumbnails, subtitles, and metadata.";
|
|
143
153
|
readonly prev: "docs/reference/configuration";
|
|
144
154
|
readonly next: "docs/reference/api";
|
|
145
155
|
}];
|
|
146
|
-
export declare const docsSections: readonly ["Getting Started", "Guides"];
|
|
156
|
+
export declare const docsSections: readonly ["Getting Started", "Guides", "Reference"];
|
|
147
157
|
export declare function getDocBySlug(slug: string): {
|
|
148
|
-
readonly source: "
|
|
158
|
+
readonly source: "overview.mdx";
|
|
149
159
|
readonly slug: "docs";
|
|
150
160
|
readonly section: "Getting Started";
|
|
151
161
|
readonly order: 1;
|
|
152
|
-
readonly navLabel: "
|
|
153
|
-
readonly title: "
|
|
154
|
-
readonly description: "
|
|
162
|
+
readonly navLabel: "Overview";
|
|
163
|
+
readonly title: "Overview";
|
|
164
|
+
readonly description: "How ScreenCI works: record locally, render in the service, and serve from a CDN. The service never sees your source code, and the CLI is open source.";
|
|
155
165
|
readonly prev: null;
|
|
156
|
-
readonly next: "docs/
|
|
166
|
+
readonly next: "docs/agent-integration";
|
|
157
167
|
} | {
|
|
158
|
-
readonly source: "
|
|
159
|
-
readonly slug: "docs/
|
|
168
|
+
readonly source: "agent-integration.mdx";
|
|
169
|
+
readonly slug: "docs/agent-integration";
|
|
160
170
|
readonly section: "Getting Started";
|
|
161
171
|
readonly order: 2;
|
|
162
|
-
readonly navLabel: "
|
|
163
|
-
readonly title: "
|
|
164
|
-
readonly description: "
|
|
172
|
+
readonly navLabel: "Agent integration";
|
|
173
|
+
readonly title: "Agent Integration";
|
|
174
|
+
readonly description: "The recommended path: point a coding agent at the integration brief so it scaffolds ScreenCI, authors a video for your flow, and records it.";
|
|
165
175
|
readonly prev: "docs";
|
|
176
|
+
readonly next: "docs/installation";
|
|
177
|
+
} | {
|
|
178
|
+
readonly source: "installation.mdx";
|
|
179
|
+
readonly slug: "docs/installation";
|
|
180
|
+
readonly section: "Getting Started";
|
|
181
|
+
readonly order: 3;
|
|
182
|
+
readonly navLabel: "Manual setup & first video";
|
|
183
|
+
readonly title: "Manual Setup & First Video";
|
|
184
|
+
readonly description: "Wire ScreenCI up by hand: initialize a project, run the starter video locally, and record your first final video.";
|
|
185
|
+
readonly prev: "docs/agent-integration";
|
|
166
186
|
readonly next: "docs/write-video-scripts";
|
|
167
187
|
} | {
|
|
168
188
|
readonly source: "write-video-scripts.md";
|
|
169
189
|
readonly slug: "docs/write-video-scripts";
|
|
170
190
|
readonly section: "Getting Started";
|
|
171
|
-
readonly order:
|
|
191
|
+
readonly order: 4;
|
|
172
192
|
readonly navLabel: "Video script basics";
|
|
173
193
|
readonly title: "Video Script Basics";
|
|
174
194
|
readonly description: "Author .video.ts files with Playwright-like APIs, ScreenCI narration and camera helpers, and workflow-aware pacing.";
|
|
175
|
-
readonly prev: "docs/
|
|
195
|
+
readonly prev: "docs/installation";
|
|
176
196
|
readonly next: "docs/ci-setup";
|
|
177
197
|
} | {
|
|
178
198
|
readonly source: "ci-setup.md";
|
|
179
199
|
readonly slug: "docs/ci-setup";
|
|
180
200
|
readonly section: "Getting Started";
|
|
181
|
-
readonly order:
|
|
201
|
+
readonly order: 5;
|
|
182
202
|
readonly navLabel: "CI setup";
|
|
183
203
|
readonly title: "CI Setup";
|
|
184
204
|
readonly description: "Understand the generated GitHub Actions workflow, required secrets, and how to keep CI recordings deterministic.";
|
|
@@ -257,8 +277,8 @@ export declare function getDocBySlug(slug: string): {
|
|
|
257
277
|
} | {
|
|
258
278
|
readonly source: "cli.mdx";
|
|
259
279
|
readonly slug: "docs/reference/cli";
|
|
260
|
-
readonly section: "
|
|
261
|
-
readonly order:
|
|
280
|
+
readonly section: "Reference";
|
|
281
|
+
readonly order: 1;
|
|
262
282
|
readonly navLabel: "CLI";
|
|
263
283
|
readonly title: "CLI";
|
|
264
284
|
readonly description: "Command reference for screenci init, test, record, project info, and public delivery commands.";
|
|
@@ -267,8 +287,8 @@ export declare function getDocBySlug(slug: string): {
|
|
|
267
287
|
} | {
|
|
268
288
|
readonly source: "configuration.md";
|
|
269
289
|
readonly slug: "docs/reference/configuration";
|
|
270
|
-
readonly section: "
|
|
271
|
-
readonly order:
|
|
290
|
+
readonly section: "Reference";
|
|
291
|
+
readonly order: 2;
|
|
272
292
|
readonly navLabel: "Configuration";
|
|
273
293
|
readonly title: "Configuration";
|
|
274
294
|
readonly description: "Configure project identity, file locations, rendering defaults, upload behavior, and Playwright integration in screenci.config.ts.";
|
|
@@ -277,8 +297,8 @@ export declare function getDocBySlug(slug: string): {
|
|
|
277
297
|
} | {
|
|
278
298
|
readonly source: "public-delivery-api.md";
|
|
279
299
|
readonly slug: "docs/reference/public-delivery-api";
|
|
280
|
-
readonly section: "
|
|
281
|
-
readonly order:
|
|
300
|
+
readonly section: "Reference";
|
|
301
|
+
readonly order: 3;
|
|
282
302
|
readonly navLabel: "Public delivery API";
|
|
283
303
|
readonly title: "Public Delivery API";
|
|
284
304
|
readonly description: "Technical reference for the unauthenticated endpoints that serve published videos, thumbnails, subtitles, and metadata.";
|
|
@@ -288,43 +308,54 @@ export declare function getDocBySlug(slug: string): {
|
|
|
288
308
|
export declare function getOutputPathFromSlug(slug: string): string;
|
|
289
309
|
export declare function getGeneratedDocsManifest(): ({
|
|
290
310
|
outputPath: string;
|
|
291
|
-
source: "
|
|
311
|
+
source: "overview.mdx";
|
|
292
312
|
slug: "docs";
|
|
293
313
|
section: "Getting Started";
|
|
294
314
|
order: 1;
|
|
295
|
-
navLabel: "
|
|
296
|
-
title: "
|
|
297
|
-
description: "
|
|
315
|
+
navLabel: "Overview";
|
|
316
|
+
title: "Overview";
|
|
317
|
+
description: "How ScreenCI works: record locally, render in the service, and serve from a CDN. The service never sees your source code, and the CLI is open source.";
|
|
298
318
|
prev: null;
|
|
299
|
-
next: "docs/
|
|
319
|
+
next: "docs/agent-integration";
|
|
300
320
|
} | {
|
|
301
321
|
outputPath: string;
|
|
302
|
-
source: "
|
|
303
|
-
slug: "docs/
|
|
322
|
+
source: "agent-integration.mdx";
|
|
323
|
+
slug: "docs/agent-integration";
|
|
304
324
|
section: "Getting Started";
|
|
305
325
|
order: 2;
|
|
306
|
-
navLabel: "
|
|
307
|
-
title: "
|
|
308
|
-
description: "
|
|
326
|
+
navLabel: "Agent integration";
|
|
327
|
+
title: "Agent Integration";
|
|
328
|
+
description: "The recommended path: point a coding agent at the integration brief so it scaffolds ScreenCI, authors a video for your flow, and records it.";
|
|
309
329
|
prev: "docs";
|
|
330
|
+
next: "docs/installation";
|
|
331
|
+
} | {
|
|
332
|
+
outputPath: string;
|
|
333
|
+
source: "installation.mdx";
|
|
334
|
+
slug: "docs/installation";
|
|
335
|
+
section: "Getting Started";
|
|
336
|
+
order: 3;
|
|
337
|
+
navLabel: "Manual setup & first video";
|
|
338
|
+
title: "Manual Setup & First Video";
|
|
339
|
+
description: "Wire ScreenCI up by hand: initialize a project, run the starter video locally, and record your first final video.";
|
|
340
|
+
prev: "docs/agent-integration";
|
|
310
341
|
next: "docs/write-video-scripts";
|
|
311
342
|
} | {
|
|
312
343
|
outputPath: string;
|
|
313
344
|
source: "write-video-scripts.md";
|
|
314
345
|
slug: "docs/write-video-scripts";
|
|
315
346
|
section: "Getting Started";
|
|
316
|
-
order:
|
|
347
|
+
order: 4;
|
|
317
348
|
navLabel: "Video script basics";
|
|
318
349
|
title: "Video Script Basics";
|
|
319
350
|
description: "Author .video.ts files with Playwright-like APIs, ScreenCI narration and camera helpers, and workflow-aware pacing.";
|
|
320
|
-
prev: "docs/
|
|
351
|
+
prev: "docs/installation";
|
|
321
352
|
next: "docs/ci-setup";
|
|
322
353
|
} | {
|
|
323
354
|
outputPath: string;
|
|
324
355
|
source: "ci-setup.md";
|
|
325
356
|
slug: "docs/ci-setup";
|
|
326
357
|
section: "Getting Started";
|
|
327
|
-
order:
|
|
358
|
+
order: 5;
|
|
328
359
|
navLabel: "CI setup";
|
|
329
360
|
title: "CI Setup";
|
|
330
361
|
description: "Understand the generated GitHub Actions workflow, required secrets, and how to keep CI recordings deterministic.";
|
|
@@ -411,8 +442,8 @@ export declare function getGeneratedDocsManifest(): ({
|
|
|
411
442
|
outputPath: string;
|
|
412
443
|
source: "cli.mdx";
|
|
413
444
|
slug: "docs/reference/cli";
|
|
414
|
-
section: "
|
|
415
|
-
order:
|
|
445
|
+
section: "Reference";
|
|
446
|
+
order: 1;
|
|
416
447
|
navLabel: "CLI";
|
|
417
448
|
title: "CLI";
|
|
418
449
|
description: "Command reference for screenci init, test, record, project info, and public delivery commands.";
|
|
@@ -422,8 +453,8 @@ export declare function getGeneratedDocsManifest(): ({
|
|
|
422
453
|
outputPath: string;
|
|
423
454
|
source: "configuration.md";
|
|
424
455
|
slug: "docs/reference/configuration";
|
|
425
|
-
section: "
|
|
426
|
-
order:
|
|
456
|
+
section: "Reference";
|
|
457
|
+
order: 2;
|
|
427
458
|
navLabel: "Configuration";
|
|
428
459
|
title: "Configuration";
|
|
429
460
|
description: "Configure project identity, file locations, rendering defaults, upload behavior, and Playwright integration in screenci.config.ts.";
|
|
@@ -433,8 +464,8 @@ export declare function getGeneratedDocsManifest(): ({
|
|
|
433
464
|
outputPath: string;
|
|
434
465
|
source: "public-delivery-api.md";
|
|
435
466
|
slug: "docs/reference/public-delivery-api";
|
|
436
|
-
section: "
|
|
437
|
-
order:
|
|
467
|
+
section: "Reference";
|
|
468
|
+
order: 3;
|
|
438
469
|
navLabel: "Public delivery API";
|
|
439
470
|
title: "Public Delivery API";
|
|
440
471
|
description: "Technical reference for the unauthenticated endpoints that serve published videos, thumbnails, subtitles, and metadata.";
|
|
@@ -449,12 +480,12 @@ type TypedocSidebarItem = {
|
|
|
449
480
|
attrs?: Record<string, unknown>;
|
|
450
481
|
};
|
|
451
482
|
export declare function getDocsSidebarConfig(typedocSidebarGroup?: TypedocSidebarItem | null): {
|
|
452
|
-
label: "Getting Started" | "Guides";
|
|
483
|
+
label: "Getting Started" | "Guides" | "Reference";
|
|
453
484
|
translations: {};
|
|
454
485
|
collapsed: boolean;
|
|
455
486
|
items: ({
|
|
456
|
-
label: "
|
|
457
|
-
slug: "docs" | "docs/
|
|
487
|
+
label: "Overview" | "Agent integration" | "Manual setup & first video" | "Video script basics" | "CI setup" | "Page instrumentation" | "Narration and localization" | "Camera and zooming" | "Assets and overlays" | "Studio" | "Public URLs and embeds" | "Update ScreenCI" | "CLI" | "Configuration" | "Public delivery API";
|
|
488
|
+
slug: "docs" | "docs/agent-integration" | "docs/installation" | "docs/write-video-scripts" | "docs/ci-setup" | "docs/guides/page-instrumentation" | "docs/guides/narration-and-localization" | "docs/guides/camera-and-zooming" | "docs/guides/assets-and-overlays" | "docs/guides/studio" | "docs/guides/public-urls-and-embeds" | "docs/guides/update-screenci" | "docs/reference/cli" | "docs/reference/configuration" | "docs/reference/public-delivery-api";
|
|
458
489
|
translations: {};
|
|
459
490
|
attrs: {};
|
|
460
491
|
} | TypedocSidebarItem)[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../docs/manifest.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../docs/manifest.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqLf,CAAA;AAEV,eAAO,MAAM,YAAY,qDAAsD,CAAA;AAE/E,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAExC;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,UAMjD;AAED,wBAAgB,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAKvC;AAYD,KAAK,kBAAkB,GAAG;IACxB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,OAAO,EAAE,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CAChC,CAAA;AAED,wBAAgB,oBAAoB,CAClC,mBAAmB,CAAC,EAAE,kBAAkB,GAAG,IAAI;;;;;;;;;;IAmBhD;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;;;EAkBxD"}
|
package/dist/docs/manifest.js
CHANGED
|
@@ -4,43 +4,54 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export const docsManifest = [
|
|
6
6
|
{
|
|
7
|
-
source: '
|
|
7
|
+
source: 'overview.mdx',
|
|
8
8
|
slug: 'docs',
|
|
9
9
|
section: 'Getting Started',
|
|
10
10
|
order: 1,
|
|
11
|
-
navLabel: '
|
|
12
|
-
title: '
|
|
13
|
-
description: '
|
|
11
|
+
navLabel: 'Overview',
|
|
12
|
+
title: 'Overview',
|
|
13
|
+
description: 'How ScreenCI works: record locally, render in the service, and serve from a CDN. The service never sees your source code, and the CLI is open source.',
|
|
14
14
|
prev: null,
|
|
15
|
-
next: 'docs/
|
|
15
|
+
next: 'docs/agent-integration',
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
|
-
source: '
|
|
19
|
-
slug: 'docs/
|
|
18
|
+
source: 'agent-integration.mdx',
|
|
19
|
+
slug: 'docs/agent-integration',
|
|
20
20
|
section: 'Getting Started',
|
|
21
21
|
order: 2,
|
|
22
|
-
navLabel: '
|
|
23
|
-
title: '
|
|
24
|
-
description: '
|
|
22
|
+
navLabel: 'Agent integration',
|
|
23
|
+
title: 'Agent Integration',
|
|
24
|
+
description: 'The recommended path: point a coding agent at the integration brief so it scaffolds ScreenCI, authors a video for your flow, and records it.',
|
|
25
25
|
prev: 'docs',
|
|
26
|
+
next: 'docs/installation',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
source: 'installation.mdx',
|
|
30
|
+
slug: 'docs/installation',
|
|
31
|
+
section: 'Getting Started',
|
|
32
|
+
order: 3,
|
|
33
|
+
navLabel: 'Manual setup & first video',
|
|
34
|
+
title: 'Manual Setup & First Video',
|
|
35
|
+
description: 'Wire ScreenCI up by hand: initialize a project, run the starter video locally, and record your first final video.',
|
|
36
|
+
prev: 'docs/agent-integration',
|
|
26
37
|
next: 'docs/write-video-scripts',
|
|
27
38
|
},
|
|
28
39
|
{
|
|
29
40
|
source: 'write-video-scripts.md',
|
|
30
41
|
slug: 'docs/write-video-scripts',
|
|
31
42
|
section: 'Getting Started',
|
|
32
|
-
order:
|
|
43
|
+
order: 4,
|
|
33
44
|
navLabel: 'Video script basics',
|
|
34
45
|
title: 'Video Script Basics',
|
|
35
46
|
description: 'Author .video.ts files with Playwright-like APIs, ScreenCI narration and camera helpers, and workflow-aware pacing.',
|
|
36
|
-
prev: 'docs/
|
|
47
|
+
prev: 'docs/installation',
|
|
37
48
|
next: 'docs/ci-setup',
|
|
38
49
|
},
|
|
39
50
|
{
|
|
40
51
|
source: 'ci-setup.md',
|
|
41
52
|
slug: 'docs/ci-setup',
|
|
42
53
|
section: 'Getting Started',
|
|
43
|
-
order:
|
|
54
|
+
order: 5,
|
|
44
55
|
navLabel: 'CI setup',
|
|
45
56
|
title: 'CI Setup',
|
|
46
57
|
description: 'Understand the generated GitHub Actions workflow, required secrets, and how to keep CI recordings deterministic.',
|
|
@@ -127,8 +138,8 @@ export const docsManifest = [
|
|
|
127
138
|
{
|
|
128
139
|
source: 'cli.mdx',
|
|
129
140
|
slug: 'docs/reference/cli',
|
|
130
|
-
section: '
|
|
131
|
-
order:
|
|
141
|
+
section: 'Reference',
|
|
142
|
+
order: 1,
|
|
132
143
|
navLabel: 'CLI',
|
|
133
144
|
title: 'CLI',
|
|
134
145
|
description: 'Command reference for screenci init, test, record, project info, and public delivery commands.',
|
|
@@ -138,8 +149,8 @@ export const docsManifest = [
|
|
|
138
149
|
{
|
|
139
150
|
source: 'configuration.md',
|
|
140
151
|
slug: 'docs/reference/configuration',
|
|
141
|
-
section: '
|
|
142
|
-
order:
|
|
152
|
+
section: 'Reference',
|
|
153
|
+
order: 2,
|
|
143
154
|
navLabel: 'Configuration',
|
|
144
155
|
title: 'Configuration',
|
|
145
156
|
description: 'Configure project identity, file locations, rendering defaults, upload behavior, and Playwright integration in screenci.config.ts.',
|
|
@@ -149,8 +160,8 @@ export const docsManifest = [
|
|
|
149
160
|
{
|
|
150
161
|
source: 'public-delivery-api.md',
|
|
151
162
|
slug: 'docs/reference/public-delivery-api',
|
|
152
|
-
section: '
|
|
153
|
-
order:
|
|
163
|
+
section: 'Reference',
|
|
164
|
+
order: 3,
|
|
154
165
|
navLabel: 'Public delivery API',
|
|
155
166
|
title: 'Public Delivery API',
|
|
156
167
|
description: 'Technical reference for the unauthenticated endpoints that serve published videos, thumbnails, subtitles, and metadata.',
|
|
@@ -158,7 +169,7 @@ export const docsManifest = [
|
|
|
158
169
|
next: 'docs/reference/api',
|
|
159
170
|
},
|
|
160
171
|
];
|
|
161
|
-
export const docsSections = ['Getting Started', 'Guides'];
|
|
172
|
+
export const docsSections = ['Getting Started', 'Guides', 'Reference'];
|
|
162
173
|
export function getDocBySlug(slug) {
|
|
163
174
|
return docsManifest.find((entry) => entry.slug === slug);
|
|
164
175
|
}
|
|
@@ -189,7 +200,7 @@ export function getDocsSidebarConfig(typedocSidebarGroup) {
|
|
|
189
200
|
.filter((entry) => entry.section === section)
|
|
190
201
|
.sort((a, b) => a.order - b.order)
|
|
191
202
|
.map(toSidebarItem);
|
|
192
|
-
if (section === '
|
|
203
|
+
if (section === 'Reference' && typedocSidebarGroup) {
|
|
193
204
|
items.push(typedocSidebarGroup);
|
|
194
205
|
}
|
|
195
206
|
return {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest.js","sourceRoot":"","sources":["../../docs/manifest.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B;QACE,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"manifest.js","sourceRoot":"","sources":["../../docs/manifest.ts"],"names":[],"mappings":"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"}
|
package/dist/docs/videos.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type UnpublishedDocVideo = {
|
|
|
9
9
|
};
|
|
10
10
|
export type DocVideo = PublishedDocVideo | UnpublishedDocVideo;
|
|
11
11
|
export declare const docsVideoRegistry: {
|
|
12
|
-
readonly docs: {
|
|
12
|
+
readonly 'docs/installation': {
|
|
13
13
|
readonly publicId: "kh7ccy03njvxjm0daef5g50zv587hrbd";
|
|
14
14
|
readonly sourcePath: "screenci/docs/video-sources/installation.video.ts";
|
|
15
15
|
readonly showSource: false;
|
package/dist/docs/videos.js
CHANGED
package/dist/docs/videos.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"videos.js","sourceRoot":"","sources":["../../docs/videos.ts"],"names":[],"mappings":"AAaA,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,
|
|
1
|
+
{"version":3,"file":"videos.js","sourceRoot":"","sources":["../../docs/videos.ts"],"names":[],"mappings":"AAaA,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,mBAAmB,EAAE;QACnB,QAAQ,EAAE,kCAAkC;QAC5C,UAAU,EAAE,mDAAmD;QAC/D,UAAU,EAAE,KAAK;KAClB;IACD,oBAAoB,EAAE;QACpB,QAAQ,EAAE,kCAAkC;QAC5C,UAAU,EAAE,0CAA0C;KACvD;CAC0C,CAAA;AAE7C,MAAM,UAAU,WAAW,CAAC,IAAY;IACtC,OAAO,iBAAiB,CAAC,IAAsC,CAAC,IAAI,IAAI,CAAA;AAC1E,CAAC;AAED,MAAM,UAAU,WAAW,CAAC,KAAe;IACzC,OAAO,UAAU,IAAI,KAAK,CAAA;AAC5B,CAAC"}
|
package/dist/src/init.d.ts
CHANGED
|
@@ -20,6 +20,15 @@ export declare function detectPackageManagerFromPackageJson(dir: string): Packag
|
|
|
20
20
|
export declare function determinePackageManager(cwd?: string): PackageManager;
|
|
21
21
|
export declare function detectPnpmWorkspace(cwd: string): boolean;
|
|
22
22
|
export declare function parsePackageManager(value: string | undefined, cwd?: string): PackageManager;
|
|
23
|
+
/**
|
|
24
|
+
* Turn a human project name into a valid npm package name for the island's own
|
|
25
|
+
* package.json. We use the project name (the repository root directory name by
|
|
26
|
+
* default) directly. The name must NOT be `screenci` (a package cannot depend
|
|
27
|
+
* on a package with its own name), so we fall back to `screenci-videos` only
|
|
28
|
+
* when the slug is empty or would collide with `screenci`.
|
|
29
|
+
*/
|
|
30
|
+
export declare function toIslandPackageName(projectName: string): string;
|
|
31
|
+
export declare function generateIslandReadme(projectName: string, packageManager: PackageManager): string;
|
|
23
32
|
export declare function parsePnpmVersionSupport(versionOutput: string): PnpmVersionSupport;
|
|
24
33
|
export declare function parseYarnVersionSupport(versionOutput: string): YarnVersionSupport;
|
|
25
34
|
export declare function generateExampleVideo(): string;
|
package/dist/src/init.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/init.ts"],"names":[],"mappings":"AAeA,MAAM,MAAM,cAAc,GAAG,KAAK,GAAG,MAAM,GAAG,MAAM,CAAA;AAEpD,MAAM,MAAM,WAAW,GAAG;IACxB,OAAO,EAAE,OAAO,CAAA;IAChB,GAAG,EAAE,OAAO,CAAA;IACZ,cAAc,EAAE,cAAc,CAAA;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAA;AAKD,MAAM,MAAM,kBAAkB,GAAG;IAC/B,SAAS,EAAE,OAAO,CAAA;IAClB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,MAAM,EACF,WAAW,GACX,gBAAgB,GAChB,mBAAmB,GACnB,iBAAiB,CAAA;CACtB,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG;IAC/B,SAAS,EAAE,OAAO,CAAA;IAClB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,MAAM,EACF,WAAW,GACX,gBAAgB,GAChB,mBAAmB,GACnB,iBAAiB,CAAA;CACtB,CAAA;AAED,wBAAgB,gCAAgC,CAC9C,GAAG,EAAE,MAAM,GACV,cAAc,GAAG,IAAI,CAUvB;AAED,wBAAgB,mCAAmC,CACjD,GAAG,EAAE,MAAM,GACV,cAAc,GAAG,IAAI,CAavB;AAED,wBAAgB,uBAAuB,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,cAAc,
|
|
1
|
+
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/init.ts"],"names":[],"mappings":"AAeA,MAAM,MAAM,cAAc,GAAG,KAAK,GAAG,MAAM,GAAG,MAAM,CAAA;AAEpD,MAAM,MAAM,WAAW,GAAG;IACxB,OAAO,EAAE,OAAO,CAAA;IAChB,GAAG,EAAE,OAAO,CAAA;IACZ,cAAc,EAAE,cAAc,CAAA;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAA;AAKD,MAAM,MAAM,kBAAkB,GAAG;IAC/B,SAAS,EAAE,OAAO,CAAA;IAClB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,MAAM,EACF,WAAW,GACX,gBAAgB,GAChB,mBAAmB,GACnB,iBAAiB,CAAA;CACtB,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG;IAC/B,SAAS,EAAE,OAAO,CAAA;IAClB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,MAAM,EACF,WAAW,GACX,gBAAgB,GAChB,mBAAmB,GACnB,iBAAiB,CAAA;CACtB,CAAA;AAED,wBAAgB,gCAAgC,CAC9C,GAAG,EAAE,MAAM,GACV,cAAc,GAAG,IAAI,CAUvB;AAED,wBAAgB,mCAAmC,CACjD,GAAG,EAAE,MAAM,GACV,cAAc,GAAG,IAAI,CAavB;AAED,wBAAgB,uBAAuB,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,cAAc,CAwBpE;AAED,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CASxD;AAmSD,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,MAAM,GAAG,SAAS,EACzB,GAAG,CAAC,EAAE,MAAM,GACX,cAAc,CAUhB;AAoID;;;;;;GAMG;AACH,wBAAgB,mBAAmB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,CAS/D;AAuED,wBAAgB,oBAAoB,CAClC,WAAW,EAAE,MAAM,EACnB,cAAc,EAAE,cAAc,GAC7B,MAAM,CAiBR;AA4DD,wBAAgB,uBAAuB,CACrC,aAAa,EAAE,MAAM,GACpB,kBAAkB,CA6BpB;AA0ED,wBAAgB,uBAAuB,CACrC,aAAa,EAAE,MAAM,GACpB,kBAAkB,CAapB;AA0SD,wBAAgB,oBAAoB,IAAI,MAAM,CA+B7C;AAkGD,wBAAsB,OAAO,CAC3B,cAAc,EAAE,MAAM,GAAG,SAAS,EAClC,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC,IAAI,CAAC,CAwOf;AAeD,wBAAsB,oBAAoB,CACxC,IAAI,GAAE,MAAM,EAAiB,GAC5B,OAAO,CAAC,IAAI,CAAC,CAqCf"}
|