@adkit/cli 1.13.17 → 1.13.19
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/dist/cli.js +6 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -876,7 +876,7 @@ function printNextSteps(scope) {
|
|
|
876
876
|
lines.push(" adkit --help See all commands");
|
|
877
877
|
lines.push("");
|
|
878
878
|
lines.push("New to ads? Install the strategy skill for your AI agent:");
|
|
879
|
-
lines.push(" npx skills add adkit/skills");
|
|
879
|
+
lines.push(" npx skills add adkit/ads-skills --skill '*'");
|
|
880
880
|
lines.push("");
|
|
881
881
|
const nextStepsText = lines.join("\n");
|
|
882
882
|
console.log(nextStepsText);
|
|
@@ -6635,7 +6635,11 @@ Flags (list/get):
|
|
|
6635
6635
|
|
|
6636
6636
|
Flags (create/update):
|
|
6637
6637
|
--title <text> Ad title
|
|
6638
|
-
--specs <json> JSON object
|
|
6638
|
+
--specs <json> JSON specs object
|
|
6639
|
+
format: image|video|carousel
|
|
6640
|
+
platforms: meta|google|linkedin|tiktok|youtube|twitter
|
|
6641
|
+
funnel: top|middle|bottom
|
|
6642
|
+
aspectRatios: 1:1|16:9|9:16|4:5|3:2|2:3|3:4
|
|
6639
6643
|
--content <json> JSON object with creative content
|
|
6640
6644
|
--notes <text> Internal notes
|
|
6641
6645
|
--status <status> Ad status
|
package/package.json
CHANGED