twentythree-skills 1.3.3 → 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 +1 -1
- package/skills/SKILL.md +5 -4
- package/skills/reference/video.md +23 -0
- package/skills/reference/webinar.md +3 -0
package/package.json
CHANGED
package/skills/SKILL.md
CHANGED
|
@@ -4,8 +4,8 @@ description: |
|
|
|
4
4
|
Full TwentyThree video platform CLI. Use when the user asks to upload or manage
|
|
5
5
|
videos, run webinars, query analytics, manage audiences, configure players,
|
|
6
6
|
create categories, manage tags, spots, thumbnails, webhooks, collectors, polls,
|
|
7
|
-
presentations, or any TwentyThree platform operation. Covers
|
|
8
|
-
across
|
|
7
|
+
presentations, or any TwentyThree platform operation. Covers 241+ API commands
|
|
8
|
+
across 23 resource groups plus meta commands (auth, workspace, autocomplete, doctor).
|
|
9
9
|
Every command supports --json for machine-readable output and --agent for
|
|
10
10
|
self-describing metadata (api_endpoint, auth_scope, output_shape, side_effects).
|
|
11
11
|
triggers:
|
|
@@ -28,7 +28,7 @@ compatibility: Requires twentythree-cli installed globally (npm install -g twent
|
|
|
28
28
|
|
|
29
29
|
# TwentyThree CLI
|
|
30
30
|
|
|
31
|
-
> Terminal access to the full TwentyThree video platform API — videos, webinars, analytics, audiences, and every related resource.
|
|
31
|
+
> Terminal access to the full TwentyThree video platform API — videos, webinars, analytics, audiences, and every related resource. 241+ commands across 23 resource groups.
|
|
32
32
|
>
|
|
33
33
|
> Always use `--json` in agentic contexts for structured output. Always run `twentythree <command> --agent` before calling an unfamiliar command to discover its flags, API endpoint, auth scope, and side effects.
|
|
34
34
|
|
|
@@ -136,7 +136,7 @@ The guide covers two categories:
|
|
|
136
136
|
|
|
137
137
|
## Resource Index
|
|
138
138
|
|
|
139
|
-
All
|
|
139
|
+
All 23 resource groups. Every topic supports `--agent`, `--json`, and `--workspace`.
|
|
140
140
|
|
|
141
141
|
| Topic | Representative verbs | Use for |
|
|
142
142
|
|-------|---------------------|---------|
|
|
@@ -163,6 +163,7 @@ All 22 resource groups. Every topic supports `--agent`, `--json`, and `--workspa
|
|
|
163
163
|
| `site` | `list`, `search` | Site-level operations |
|
|
164
164
|
| `openupload` | `list`, `create`, `delete` | Open upload tokens |
|
|
165
165
|
| `user` | `list`, `create`, `get`, `update`, `delete` | User management |
|
|
166
|
+
| `seo` | `get`, `status`, `update` | SEO metadata management |
|
|
166
167
|
|
|
167
168
|
## Meta Commands
|
|
168
169
|
|
|
@@ -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
|