@gamaze/hicortex 0.3.10 → 0.3.11

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/dist/init.js CHANGED
@@ -331,7 +331,7 @@ async function persistLlmConfig() {
331
331
  console.log(" How should Hicortex access an LLM?\n");
332
332
  console.log(" 1. Use Claude subscription via CLI (Haiku model, no API key needed)");
333
333
  console.log(" 2. Enter an API key manually (Anthropic, OpenAI, or other)");
334
- console.log(" 3. Skip for now (can configure later in ~/.hicortex/config.json)\n");
334
+ console.log(" 3. Cancel installation\n");
335
335
  const choice = await ask(" Choice [1]: ");
336
336
  const selected = choice === "2" ? 2 : choice === "3" ? 3 : 1;
337
337
  if (selected === 1) {
@@ -353,8 +353,8 @@ async function persistLlmConfig() {
353
353
  console.log(` ✓ API key saved`);
354
354
  }
355
355
  else {
356
- console.log(" Skipped. Nightly learning won't work until LLM is configured.");
357
- return;
356
+ console.log("\n Hicortex requires an LLM to function. Installation cancelled.");
357
+ process.exit(0);
358
358
  }
359
359
  }
360
360
  function saveConfig(configPath, config) {
@@ -2,7 +2,7 @@
2
2
  "id": "hicortex",
3
3
  "name": "Hicortex — Long-term Memory That Learns",
4
4
  "description": "Your agents remember past decisions, avoid repeated mistakes, and get smarter every day. Nightly reflection generates actionable lessons that automatically update agent behavior.",
5
- "version": "0.3.10",
5
+ "version": "0.3.11",
6
6
  "kind": "lifecycle",
7
7
  "skills": ["./skills/hicortex-memory", "./skills/hicortex-learn", "./skills/hicortex-activate"],
8
8
  "configSchema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gamaze/hicortex",
3
- "version": "0.3.10",
3
+ "version": "0.3.11",
4
4
  "description": "Human-like memory for self-improving AI agents. Automatic capturing, nightly reflection, and cross-agent learning. Works with Claude Code and OpenClaw.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {