@doubledigit/cli 0.8.0 → 0.8.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 +1 -1
- package/dist/lib/remotion-hub-init.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -131,7 +131,7 @@ After init, the CLI attempts to install both Remotion's project skills and the D
|
|
|
131
131
|
|
|
132
132
|
```bash
|
|
133
133
|
npx skills add remotion-dev/skills --all
|
|
134
|
-
npx skills add
|
|
134
|
+
npx skills add crystalphantom/double-digit --skill dd-remotion-hub
|
|
135
135
|
```
|
|
136
136
|
|
|
137
137
|
Pass `--skip-skills` to skip skill installation. If skill installation fails, init still completes the project scaffold and prints exact retry commands. `--non-interactive` is accepted for automation scripts; the command is already prompt-free.
|
|
@@ -15,8 +15,8 @@ const REMOTION_SKILLS_COMMANDS = [
|
|
|
15
15
|
},
|
|
16
16
|
{
|
|
17
17
|
command: 'npx',
|
|
18
|
-
args: ['skills', 'add', '
|
|
19
|
-
display: 'npx skills add
|
|
18
|
+
args: ['skills', 'add', 'crystalphantom/double-digit', '--skill', 'dd-remotion-hub'],
|
|
19
|
+
display: 'npx skills add crystalphantom/double-digit --skill dd-remotion-hub',
|
|
20
20
|
},
|
|
21
21
|
];
|
|
22
22
|
function toJson(value) {
|