@clawcard/cli 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/bin/setup.mjs +2 -2
  2. package/package.json +1 -1
package/bin/setup.mjs CHANGED
@@ -8,7 +8,7 @@ const OPENCLAW_DIR = join(homedir(), ".openclaw");
8
8
  const SKILLS_DIR = join(OPENCLAW_DIR, "skills", "clawcard");
9
9
  const SKILL_PATH = join(SKILLS_DIR, "SKILL.md");
10
10
 
11
- const DEFAULT_BASE_URL = "https://clawcard.sh";
11
+ const DEFAULT_BASE_URL = "https://www.clawcard.sh";
12
12
 
13
13
  const SKILL_MD = `---
14
14
  name: clawcard
@@ -22,7 +22,7 @@ You have access to ClawCard — a platform that gives you a real email address,
22
22
 
23
23
  ## Getting Started
24
24
 
25
- Base URL: $CLAWCARD_BASE_URL (default: https://clawcard.sh)
25
+ Base URL: $CLAWCARD_BASE_URL (default: https://www.clawcard.sh)
26
26
  Auth header: Authorization: Bearer $CLAWCARD_API_KEY
27
27
 
28
28
  **Step 1: Discover your identity.** Call GET /api/me first — it returns your keyId, email, phone, and budget. Use the keyId for all other endpoints.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawcard/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Set up ClawCard for your OpenClaw agent in one command",
5
5
  "bin": {
6
6
  "clawcard": "./bin/setup.mjs"