@renoise/video-maker 0.1.0 → 0.1.2
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 +9 -1
- package/openclaw.plugin.json +20 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -6,8 +6,16 @@ AI video production plugin for Claude Code. Install this plugin and get a creati
|
|
|
6
6
|
|
|
7
7
|
### Claude Code
|
|
8
8
|
|
|
9
|
+
1. Add the marketplace:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
claude plugin marketplace add ArcoCodes/renoise-plugins-official
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
2. Install the plugin:
|
|
16
|
+
|
|
9
17
|
```bash
|
|
10
|
-
|
|
18
|
+
claude plugin install video-maker@renoise-plugins-official
|
|
11
19
|
```
|
|
12
20
|
|
|
13
21
|
### OpenClaw
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "video-maker",
|
|
3
|
+
"name": "Video Maker",
|
|
4
|
+
"description": "Video production toolkit for AI video generation, e-commerce content, and more",
|
|
5
|
+
"version": "0.1.2",
|
|
6
|
+
"configSchema": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"properties": {}
|
|
10
|
+
},
|
|
11
|
+
"skills": [
|
|
12
|
+
"skills/director",
|
|
13
|
+
"skills/renoise-gen",
|
|
14
|
+
"skills/tiktok-content-maker",
|
|
15
|
+
"skills/scene-generate",
|
|
16
|
+
"skills/product-sheet-generate",
|
|
17
|
+
"skills/video-download",
|
|
18
|
+
"skills/short-film-editor"
|
|
19
|
+
]
|
|
20
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@renoise/video-maker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Video production toolkit for AI video generation, e-commerce content, and more",
|
|
@@ -9,8 +9,12 @@
|
|
|
9
9
|
"url": "https://github.com/ArcoCodes/renoise-plugins-official.git",
|
|
10
10
|
"directory": "video-maker"
|
|
11
11
|
},
|
|
12
|
+
"openclaw": {
|
|
13
|
+
"extensions": ["./openclaw.plugin.json"]
|
|
14
|
+
},
|
|
12
15
|
"files": [
|
|
13
16
|
".claude-plugin/",
|
|
17
|
+
"openclaw.plugin.json",
|
|
14
18
|
"hooks/",
|
|
15
19
|
"lib/",
|
|
16
20
|
"skills/",
|