@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawcard/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "The ClawCard CLI — manage your agent keys, billing, and setup from the terminal",
5
5
  "bin": {
6
6
  "clawcard": "./bin/clawcard.mjs"
@@ -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 clawcard/skill${globalFlag} -y`, {
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 clawcard/skill${scope === "global" ? " -g" : ""}`
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.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(` ${d("on-demand credit cards, email and phone for your agents")}`);
9
+ console.log(` ${o("on-demand credit cards, email and phone for your agents")}`);
10
10
  console.log();
11
11
  }