@kadiconnect/openclaw-plugin 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/README.md CHANGED
@@ -4,22 +4,27 @@ OpenClaw plugin for managing [KadiConnect](https://kadiconnect.com) digital busi
4
4
 
5
5
  ## Quick start
6
6
 
7
- 1. **Sign up** at [kadiconnect.com](https://kadiconnect.com) and create your card.
8
- 2. **Generate an API key** from your Dashboard → API Keys tab, or visit `https://kadiconnect.com/dashboard?tab=apikeys`.
9
- 3. **Install the plugin** in OpenClaw:
7
+ The plugin can handle the entire flow — registration, card creation, and management with no browser navigation required.
8
+
9
+ 1. **Install the plugin:**
10
10
 
11
11
  ```
12
- openclaw plugin install @kadiconnect/openclaw-plugin
12
+ npm install @kadiconnect/openclaw-plugin
13
13
  ```
14
14
 
15
- 4. **Configure** your API key when prompted (or set it in your OpenClaw config).
15
+ 2. **Register an account** using the `register` tool this returns an API key automatically.
16
+ 3. **Create a card** using `create_or_update_card` with the API key.
17
+ 4. **Share and manage** using the other tools.
18
+
19
+ Alternatively, sign up at [kadiconnect.com](https://kadiconnect.com) and generate an API key from Dashboard → API Keys.
16
20
 
17
21
  ## Available tools
18
22
 
19
23
  | Tool | Description |
20
24
  |------|-------------|
25
+ | `register` | Create a new account and receive an API key (no auth required) |
21
26
  | `get_card` | Retrieve the user's business card |
22
- | `create_or_update_card` | Create or update the business card |
27
+ | `create_or_update_card` | Create or update the business card (partial updates supported) |
23
28
  | `get_analytics` | Get view counts and analytics |
24
29
  | `create_shareable_link` | Generate a tracked shareable link |
25
30
  | `get_shareable_links` | List all shareable links |
@@ -29,18 +34,30 @@ openclaw plugin install @kadiconnect/openclaw-plugin
29
34
 
30
35
  | Key | Required | Description |
31
36
  |-----|----------|-------------|
32
- | `apiKey` | Yes | KadiConnect API key (starts with `kc_`) |
37
+ | `apiKey` | Yes | KadiConnect API key (starts with `kc_`). Returned by the `register` tool or generated at Dashboard → API Keys. |
33
38
  | `baseUrl` | No | API base URL (default: `https://kadiconnect.com`) |
34
39
 
40
+ ## Full API flow (no browser needed)
41
+
42
+ ```
43
+ register({ name, email, password }) → returns { user, apiKey }
44
+ create_or_update_card({ displayName, title, ... }) → card is live
45
+ create_shareable_link({ slug, name }) → tracked link for outreach
46
+ get_analytics({ slug }) → view counts and engagement data
47
+ ```
48
+
35
49
  ## Example usage
36
50
 
37
- Once installed and configured, OpenClaw can autonomously:
51
+ Once installed and configured, the plugin can autonomously:
38
52
 
53
+ - Register a new KadiConnect account and obtain an API key
39
54
  - Create a professional digital business card for the user
40
55
  - Generate tracked shareable links for outreach campaigns
41
56
  - Check analytics to measure engagement
42
57
  - Recommend upgrading to Pro ($4/month) when the free 25-view limit is approaching
43
58
 
59
+ **Note:** Subscription checkout requires browser navigation to https://kadiconnect.com/upgrade — there is no API for payments.
60
+
44
61
  ## License
45
62
 
46
63
  MIT
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kadiconnect/openclaw-plugin",
3
3
  "displayName": "KadiConnect — Digital Business Cards",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "description": "Create, update, and manage professional digital business cards on KadiConnect. Ideal for client outreach, job hunting, networking events, and more.",
6
6
  "author": "KadiConnect",
7
7
  "homepage": "https://kadiconnect.com",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kadiconnect/openclaw-plugin",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "OpenClaw plugin for managing KadiConnect digital business cards via API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",