zombie-vibe 0.1.7 → 0.1.8

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
@@ -6,7 +6,7 @@ Events live in a private persistent queue at `~/.zombie-vibe/events.jsonl`. Each
6
6
 
7
7
  ## Install
8
8
 
9
- Create an API key after signing in at `https://codersarena.xyz/#account`, then install globally for every supported editor:
9
+ Create an API key after signing in at `https://zombipulse.xyz/#account`, then install globally for every supported editor:
10
10
 
11
11
  ```bash
12
12
  npx zombie-vibe install --api-key zp_live_YOUR_KEY
@@ -1,5 +1,5 @@
1
1
  {
2
- "apiUrl": "https://api.codersarena.xyz/api/v1/events",
2
+ "apiUrl": "https://api.zombipulse.xyz/api/v1/events",
3
3
  "apiKey": "zp_live_REPLACE_WITH_YOUR_KEY",
4
4
  "batchSize": 10
5
5
  }
package/lib/installer.mjs CHANGED
@@ -78,7 +78,7 @@ export async function install(args) {
78
78
  const unknown = editors.filter((editor) => !supported.includes(editor));
79
79
  if (unknown.length) throw new Error(`Unsupported editor: ${unknown.join(", ")}. Use ${supported.join(", ")}, or all.`);
80
80
  const apiKey = option(args, "--api-key") || process.env.ZOMBIE_VIBE_API_KEY;
81
- const apiUrl = (option(args, "--api-url") || "https://api.codersarena.xyz/api/v1/events").replace(/\/$/, "");
81
+ const apiUrl = (option(args, "--api-url") || "https://api.zombipulse.xyz/api/v1/events").replace(/\/$/, "");
82
82
 
83
83
  await mkdir(runtimeDir, { recursive: true });
84
84
  await copyFile(join(packageRoot, "runtime", "hook.mjs"), runtimePath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zombie-vibe",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Install privacy-first prompt timing hooks for Codex, Claude Code, Cursor, Windsurf, and Grok.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,5 +36,5 @@
36
36
  "type": "git",
37
37
  "url": "git+https://github.com/gunjchhetri/zombie-vibe-skills.git"
38
38
  },
39
- "homepage": "https://codersarena.xyz/#integrations"
39
+ "homepage": "https://zombipulse.xyz/#integrations"
40
40
  }
package/runtime/hook.mjs CHANGED
@@ -111,7 +111,7 @@ async function sendBatch(config, events) {
111
111
  if (!config.apiKey || !config.apiUrl) return false;
112
112
  const response = await fetch(config.apiUrl, {
113
113
  method: "POST",
114
- headers: { authorization: `Bearer ${config.apiKey}`, "content-type": "application/json", "user-agent": "zombie-vibe-hook/0.1.7" },
114
+ headers: { authorization: `Bearer ${config.apiKey}`, "content-type": "application/json", "user-agent": "zombie-vibe-hook/0.1.8" },
115
115
  body: JSON.stringify(batchPayload(events)),
116
116
  signal: AbortSignal.timeout(3000),
117
117
  });