@sellable/install 0.1.118 → 0.1.119
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/bin/sellable-install.mjs +0 -8
- package/package.json +1 -1
package/bin/sellable-install.mjs
CHANGED
|
@@ -179,15 +179,11 @@ function printCreateCommandHint() {
|
|
|
179
179
|
console.log("");
|
|
180
180
|
printAgentBox("Using Claude Code?", "claude", [
|
|
181
181
|
{ label: "Campaign", command: "/sellable:create-campaign" },
|
|
182
|
-
{ label: "Identity", command: "/sellable:interview" },
|
|
183
|
-
{ label: "Voice", command: "/sellable:load-voice" },
|
|
184
182
|
]);
|
|
185
183
|
console.log("");
|
|
186
184
|
console.log("");
|
|
187
185
|
printAgentBox("Using Codex?", "codex", [
|
|
188
186
|
{ label: "Campaign", command: "$sellable:create-campaign" },
|
|
189
|
-
{ label: "Identity", command: "$sellable:interview" },
|
|
190
|
-
{ label: "Voice", command: "$sellable:load-voice" },
|
|
191
187
|
]);
|
|
192
188
|
console.log("");
|
|
193
189
|
console.log(` ${"─".repeat(63)}`);
|
|
@@ -2221,8 +2217,6 @@ function printNextSteps(installedHosts, authReused) {
|
|
|
2221
2217
|
if (hasClaude) {
|
|
2222
2218
|
printAgentBox("Using Claude Code?", "claude", [
|
|
2223
2219
|
{ label: "Campaign", command: "/sellable:create-campaign" },
|
|
2224
|
-
{ label: "Identity", command: "/sellable:interview" },
|
|
2225
|
-
{ label: "Voice", command: "/sellable:load-voice" },
|
|
2226
2220
|
]);
|
|
2227
2221
|
console.log("");
|
|
2228
2222
|
console.log("");
|
|
@@ -2230,8 +2224,6 @@ function printNextSteps(installedHosts, authReused) {
|
|
|
2230
2224
|
if (hasCodex) {
|
|
2231
2225
|
printAgentBox("Using Codex?", "codex", [
|
|
2232
2226
|
{ label: "Campaign", command: "$sellable:create-campaign" },
|
|
2233
|
-
{ label: "Identity", command: "$sellable:interview" },
|
|
2234
|
-
{ label: "Voice", command: "$sellable:load-voice" },
|
|
2235
2227
|
]);
|
|
2236
2228
|
console.log("");
|
|
2237
2229
|
}
|