twentythree-skills 1.3.4 → 1.3.5
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/package.json
CHANGED
|
@@ -291,6 +291,29 @@ twentythree video section generate 12345 --json
|
|
|
291
291
|
|
|
292
292
|
---
|
|
293
293
|
|
|
294
|
+
### video section check-generate-available
|
|
295
|
+
|
|
296
|
+
**Auth scope:** write **Side effects:** none **Output:** key-value
|
|
297
|
+
|
|
298
|
+
Checks whether AI chapter generation is available for a given video. Returns `section_generation_available_p` (boolean). Requires both the workspace feature to be enabled and the video to have a transcript. Use this before calling `video section generate` to avoid errors.
|
|
299
|
+
|
|
300
|
+
No required flags beyond the video ID positional argument.
|
|
301
|
+
|
|
302
|
+
| Flag | Required | Default | Description |
|
|
303
|
+
|------|----------|---------|-------------|
|
|
304
|
+
| `--fields` | no | — | Comma-separated list of fields to return |
|
|
305
|
+
|
|
306
|
+
```bash
|
|
307
|
+
# Check if AI chapter generation is available
|
|
308
|
+
twentythree video section check-generate-available <id> --json
|
|
309
|
+
|
|
310
|
+
# Example with a real ID
|
|
311
|
+
twentythree video section check-generate-available 12345 --json
|
|
312
|
+
# => { "data": { "section_generation_available_p": true } }
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
---
|
|
316
|
+
|
|
294
317
|
### video section set-thumbnail
|
|
295
318
|
|
|
296
319
|
**Auth scope:** write **Side effects:** updates **Output:** key-value
|
|
@@ -38,6 +38,7 @@ After create, the CLI prints the new webinar ID and its admin URL. Capture `data
|
|
|
38
38
|
| `--live-date` | no | — | Schedule date/time (ISO 8601) |
|
|
39
39
|
| `--draft` | no | false | Set as draft |
|
|
40
40
|
| `--publish` | no | false | Publish the webinar |
|
|
41
|
+
| `--webinar-design-id` | no | — | Assign a webinar design by ID |
|
|
41
42
|
|
|
42
43
|
```bash
|
|
43
44
|
# Create a basic upcoming webinar
|
|
@@ -86,6 +87,7 @@ twentythree webinar list --search "Q2 Town Hall" --include-private --json
|
|
|
86
87
|
| `--live-date` | no | — | Schedule date/time (ISO 8601) |
|
|
87
88
|
| `--draft` | no | — | Set as draft |
|
|
88
89
|
| `--publish` | no | — | Publish or unpublish the webinar |
|
|
90
|
+
| `--webinar-design-id` | no | — | Assign a webinar design by ID |
|
|
89
91
|
|
|
90
92
|
```bash
|
|
91
93
|
# Update title and description
|
|
@@ -124,6 +126,7 @@ Duplicates a webinar and schedules the copy at a new date/time. After repeat, th
|
|
|
124
126
|
| Flag | Required | Default | Description |
|
|
125
127
|
|------|----------|---------|-------------|
|
|
126
128
|
| `--date` | yes | — | Schedule date/time for the new webinar (ISO 8601) |
|
|
129
|
+
| `--webinar-design-id` | no | — | Assign a webinar design by ID to the new webinar |
|
|
127
130
|
|
|
128
131
|
```bash
|
|
129
132
|
# Schedule a repeat of a webinar
|