@clawcard/cli 1.0.0 → 1.0.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/package.json +1 -1
- package/src/commands/setup.js +2 -2
- package/src/index.js +1 -1
- package/src/splash.js +1 -1
package/package.json
CHANGED
package/src/commands/setup.js
CHANGED
|
@@ -228,7 +228,7 @@ export async function setupCommand() {
|
|
|
228
228
|
|
|
229
229
|
try {
|
|
230
230
|
const globalFlag = scope === "global" ? " -g" : "";
|
|
231
|
-
execSync(`npx -y skills add
|
|
231
|
+
execSync(`npx -y skills add latchagent/skill${globalFlag} -y`, {
|
|
232
232
|
stdio: "pipe",
|
|
233
233
|
timeout: 60_000,
|
|
234
234
|
});
|
|
@@ -239,7 +239,7 @@ export async function setupCommand() {
|
|
|
239
239
|
"Failed to install skill via skills.sh. You can install it manually:"
|
|
240
240
|
);
|
|
241
241
|
p.log.info(
|
|
242
|
-
`Run: npx skills add
|
|
242
|
+
`Run: npx skills add latchagent/skill${scope === "global" ? " -g" : ""}`
|
|
243
243
|
);
|
|
244
244
|
}
|
|
245
245
|
|
package/src/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { isLoggedIn } from "./config.js";
|
|
|
7
7
|
showSplash();
|
|
8
8
|
|
|
9
9
|
const program = new Command();
|
|
10
|
-
program.name("clawcard").description("The ClawCard CLI").version("1.0.
|
|
10
|
+
program.name("clawcard").description("The ClawCard CLI").version("1.0.1");
|
|
11
11
|
|
|
12
12
|
// Auth commands
|
|
13
13
|
program
|
package/src/splash.js
CHANGED
|
@@ -6,6 +6,6 @@ const d = chalk.dim;
|
|
|
6
6
|
export function showSplash() {
|
|
7
7
|
console.log();
|
|
8
8
|
console.log(` 🦞 ${o.bold("clawcard.sh")}`);
|
|
9
|
-
console.log(` ${
|
|
9
|
+
console.log(` ${o("on-demand credit cards, email and phone for your agents")}`);
|
|
10
10
|
console.log();
|
|
11
11
|
}
|