infernoflow 0.35.6 → 0.35.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.
@@ -26,9 +26,7 @@ import * as readline from "node:readline";
26
26
  import { execSync } from "node:child_process";
27
27
  import { bold, cyan, gray, green, yellow, red } from "../ui/output.mjs";
28
28
 
29
- // ── Replace this URL with your Formspree form endpoint ───────────────────────
30
- // Get one free at https://formspree.io (50 submissions/mo free, emails you each response)
31
- const FORMSPREE_ENDPOINT = "https://formspree.io/f/infernoflow"; // placeholder
29
+ const FORMSPREE_ENDPOINT = "https://formspree.io/f/maqarynd";
32
30
 
33
31
  const FEEDBACK_FORM_URL = "https://forms.gle/infernoflow-feedback"; // placeholder — replace with real form
34
32
  const FEEDBACK_FILE = path.join(os.homedir(), ".infernoflow", "feedback.json");
@@ -30,10 +30,8 @@ const CONFIG_DIR = path.join(os.homedir(), ".infernoflow");
30
30
  const TELEMETRY_FILE = path.join(CONFIG_DIR, "telemetry.json");
31
31
  const EVENTS_FILE = path.join(CONFIG_DIR, "events.jsonl");
32
32
 
33
- // PostHog free tier — swap to your own project API key when ready
34
- // https://posthog.com → create free project → Settings → Project API Key
35
- const POSTHOG_HOST = "https://app.posthog.com";
36
- const POSTHOG_KEY = "phc_infernoflow_placeholder"; // replace with real key from PostHog dashboard
33
+ const POSTHOG_HOST = "https://eu.i.posthog.com";
34
+ const POSTHOG_KEY = "phc_z6YX7x4zjkuFZigdXTBoFcPTWeGLFAN9NNKVZ5WHQrqk";
37
35
 
38
36
  // ── Config helpers ────────────────────────────────────────────────────────────
39
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infernoflow",
3
- "version": "0.35.6",
3
+ "version": "0.35.8",
4
4
  "description": "Persistent memory for AI coding sessions — captures what agents can't infer from code alone. Works with Copilot, Cursor, Claude, and Windsurf.",
5
5
  "type": "module",
6
6
  "bin": {